├── test ├── cache │ └── .keep ├── app │ ├── cache │ │ └── .keep │ ├── static │ │ └── images │ │ │ ├── banner.jpg │ │ │ ├── favicon.ico │ │ │ └── splash.jpg │ ├── views │ │ ├── post-list.esp │ │ ├── test-cmd-login.esp │ │ ├── test-cmd-details.esp │ │ └── post-edit.esp │ ├── db │ │ └── test.mdb │ └── layouts │ │ └── default.esp ├── web │ ├── empty.html │ ├── sub │ │ ├── a.html │ │ ├── b.html │ │ └── sub1 │ │ │ └── c.html │ ├── alive.html │ ├── caching │ │ ├── client.html │ │ ├── cache.ejs │ │ ├── cache.php │ │ └── cache.esp │ ├── sleep.ejs │ ├── sleep.esp │ ├── lines.txt │ ├── inner.esp │ ├── test.dat │ ├── listing │ │ ├── test.dat │ │ ├── test_001.jpg │ │ ├── test_002.jpg │ │ └── test_003.jpg │ ├── include.ejs │ ├── index.en.html │ ├── numbers.txt │ ├── redirect.esp │ ├── english │ │ └── eng.html │ ├── index.fr.html │ ├── favicon.ico │ ├── icons │ │ ├── back.gif │ │ ├── blank.gif │ │ ├── space.gif │ │ ├── text.gif │ │ ├── folder.gif │ │ ├── parent.gif │ │ └── compressed.gif │ ├── main.html │ ├── index.html │ ├── session.esp │ ├── sleep.php │ ├── upload │ │ ├── uploadComplete.html │ │ ├── upload-cgi.html │ │ ├── upload-esp.html │ │ ├── upload.html │ │ └── upload.php │ ├── vhost │ │ ├── iphost │ │ │ └── private.html │ │ ├── namehost2 │ │ │ └── vhost2.html │ │ └── namehost1 │ │ │ └── vhost1.html │ ├── compress │ │ └── compressed.txt.gz │ ├── dir │ │ └── index.html │ ├── index.php │ ├── simple.php │ ├── alias │ │ └── atest.html │ ├── auth │ │ ├── basic │ │ │ ├── basic.php │ │ │ ├── basic.html │ │ │ ├── bug.ejs │ │ │ ├── joshua │ │ │ │ └── user.html │ │ │ ├── executive │ │ │ │ └── executive.html │ │ │ └── basic.esp │ │ ├── digest │ │ │ ├── digest.html │ │ │ ├── joshua │ │ │ │ └── user.html │ │ │ └── executive │ │ │ │ └── executive.html │ │ └── post │ │ │ ├── index.html │ │ │ ├── login-service.esp │ │ │ └── login.esp │ ├── notFound.html │ ├── My Documents │ │ └── index.html │ ├── index.ejs │ ├── test.py │ ├── test.html │ ├── dump.esp │ ├── outer.esp │ ├── test.php │ ├── test.xesp │ ├── big.ejs │ ├── big.php │ ├── redirect.php │ ├── session.ejs │ ├── index.esp │ ├── test.es │ ├── exit.esp │ ├── test.cgi │ ├── big.esp │ ├── nap.esp │ ├── outer.ejs │ ├── chinese2.ejs │ ├── nap.ejs │ ├── nph-test.cgi │ ├── test.pl │ ├── test.ejs │ ├── ejsProgram.ejs │ ├── test.xml │ ├── chinese.ejs │ ├── slow.cgi │ ├── spin.php │ ├── form.esp │ ├── test.esp │ ├── dump.php │ ├── upload.ejs │ ├── directives.esp │ ├── numbers.html │ ├── form.php │ ├── form.ejs │ └── bench │ │ └── bench.html ├── cgi-bin │ └── .dummy ├── sslconf │ ├── response.yes │ ├── response.server │ ├── response.client │ ├── ca.key.pem │ ├── server.key.pem │ ├── ca.key │ ├── server.key │ └── ca.crt ├── basic │ ├── test.dat │ ├── misc.tst │ ├── chunk.tst │ ├── reuse.tst │ ├── alias.tst │ ├── stream.tst │ ├── redirect.tst │ ├── post.tst │ ├── query.tst │ ├── header.tst │ ├── upload.tst │ ├── put.tst │ ├── get.tst │ ├── read.tst │ ├── dir.tst │ ├── php.tst │ ├── methods.tst │ └── secure.tst ├── cmd │ └── test.dat ├── ejs │ ├── test.setup │ ├── single.tst │ ├── session.tst │ └── multiple.tst ├── esp │ ├── test.setup │ ├── xname.tst │ ├── include.tst │ ├── big.tst │ ├── get.tst │ ├── redirect.tst │ ├── reload.tst │ ├── directives.tst │ ├── mvc.tst │ └── alias.tst ├── ipv6 │ ├── test.setup │ └── getv6.tst ├── regress │ ├── 01000-chunk.dat │ └── 01000-chunk.tst ├── stress │ ├── test.setup │ ├── badUrl.tst │ ├── bigForm.tst │ ├── bigUrl.tst │ ├── whitespace.tst │ └── upload.tst ├── benchmark │ └── test.setup ├── caching │ ├── test.setup │ ├── client.tst │ ├── limits.tst │ ├── types.tst │ ├── big.tst │ ├── handlers.tst │ ├── ext.tst │ ├── methods.tst │ ├── api.tst │ └── combined.tst ├── route │ ├── auth.tst │ ├── condition.tst │ ├── token.tst │ ├── var.tst │ ├── missing.tst │ ├── fullpat.tst │ ├── cmd.tst │ ├── optional.tst │ └── param.tst ├── api │ ├── c.tst │ ├── thread.tst │ └── load.tst ├── listing │ └── dirlist.tst ├── compress │ └── gzip.tst ├── lang │ ├── suffix.tst │ ├── target.tst │ ├── default.tst │ └── root.tst ├── auth.conf ├── start.es ├── vxrun ├── redirect │ └── redirect.tst ├── error │ └── errordoc.tst ├── security │ ├── dos.tst │ └── huge-uri.tst ├── limits │ └── get.t ├── ssl │ ├── repeat.tst │ └── matrixssl.tst ├── auth │ └── digest.tst └── range │ └── ranges.tst ├── package ├── linux │ ├── deb.bin │ │ ├── conffiles │ │ ├── control │ │ └── prerm │ ├── appweb.upstart │ └── appweb.openwrt ├── macosx │ ├── background.png │ ├── com.embedthis.appweb.plist │ ├── scripts │ │ └── preflight │ └── appweb.pmdoc │ │ └── 01contents.xml ├── windows │ └── unattended.ans ├── package.bit └── Makefile-flat ├── doc ├── iehacks.css ├── favicon.ico ├── images │ ├── form.png │ ├── mvc.jpg │ ├── tray.jpg │ ├── appweb.bmp │ ├── appweb.ico │ ├── banner.gif │ ├── banner.jpg │ ├── banner.psd │ ├── board.jpg │ ├── jquery.gif │ ├── nslu2.jpg │ ├── pixel.gif │ ├── shadow.jpg │ ├── shadow.png │ ├── modules.jpg │ ├── pipeline.jpg │ ├── proxied.jpg │ ├── routing.jpg │ ├── scalable.jpg │ ├── services.jpg │ ├── ejsWebView.jpg │ ├── routeSteps.jpg │ ├── bannerClouds.jpg │ ├── bottomShadow.jpg │ ├── bottomShadow.png │ ├── esp │ │ ├── tour │ │ │ ├── error.png │ │ │ ├── hello.png │ │ │ ├── home.png │ │ │ ├── tabs.png │ │ │ ├── count10.png │ │ │ ├── create.png │ │ │ ├── home-link.png │ │ │ ├── post-list.png │ │ │ ├── validate.png │ │ │ ├── hello-layout.png │ │ │ └── hello-dynamic.png │ │ └── template │ │ │ ├── compile.jpeg │ │ │ └── layout.jpeg │ ├── ejsArchitecture.jpg │ ├── espArchitecture.jpg │ ├── appwebArchitecture.gif │ └── caching │ │ └── caching-steps.jpg ├── masters │ ├── modules.pptx │ ├── monitor.pptx │ ├── proxied.pptx │ ├── pipeline.pptx │ ├── scalable.pptx │ ├── old │ │ ├── routing.pxm │ │ └── appwebArchitecture.ppt │ ├── routing │ │ ├── routing.pptx │ │ └── routeSteps.pptx │ ├── template │ │ ├── compile.pptx │ │ └── layout.pptx │ ├── esp │ │ └── espArchitecture.pptx │ └── caching │ │ └── caching-steps.pptx ├── api │ ├── esp.dtags │ ├── espBare.html │ └── apiFooter.tem ├── product │ ├── changelog │ └── version.html ├── dsi │ ├── see.html │ ├── espSeeAlso.html │ ├── bottom.html │ ├── genSeeAlso.html │ ├── progGuideSeeAlso.html │ ├── sourceSeeAlso.html │ ├── head.html │ ├── gettingSeeAlso.html │ ├── usersGuideSeeAlso.html │ ├── progRefSeeAlso.html │ └── installSeeAlso.html ├── tidy.conf ├── print.css └── man │ ├── authpass.1 │ ├── authpass.txt │ ├── appwebMonitor.1 │ ├── authpass.html │ ├── appwebMonitor.txt │ └── appwebMonitor.html ├── src ├── server │ ├── web │ │ ├── iehacks.css │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── back.gif │ │ │ ├── text.gif │ │ │ ├── blank.gif │ │ │ ├── folder.gif │ │ │ ├── parent.gif │ │ │ ├── space.gif │ │ │ └── compressed.gif │ │ ├── images │ │ │ ├── banner.jpg │ │ │ ├── shadow.jpg │ │ │ └── bottomShadow.jpg │ │ ├── test │ │ │ ├── test.esp │ │ │ ├── test.php │ │ │ ├── test.html │ │ │ ├── test.py │ │ │ ├── test.ejs │ │ │ ├── test.cgi │ │ │ ├── test.pl │ │ │ └── bench.html │ │ ├── min-index.html │ │ └── print.css │ ├── appweb.ico │ ├── windows │ │ ├── go.bmp │ │ ├── go.png │ │ ├── mon.ico │ │ ├── two.ico │ │ ├── admin.png │ │ ├── appweb.bmp │ │ ├── appweb.png │ │ ├── stop.bmp │ │ ├── stop.png │ │ ├── appwebMonitor.ico │ │ ├── appwebMonitor.psd │ │ ├── Makefile │ │ └── appweb.rc │ ├── groups.db │ ├── users.db │ ├── rom.files │ └── server.bit ├── samples │ ├── ejs │ │ └── languageFeatures │ │ │ ├── inc.ejs │ │ │ ├── inc.js │ │ │ ├── autoinc.js │ │ │ ├── trace.js │ │ │ ├── for.js │ │ │ ├── comment.js │ │ │ ├── null.js │ │ │ ├── constructor.js │ │ │ ├── toString.js │ │ │ ├── if.js │ │ │ ├── float.js │ │ │ ├── foreach.js │ │ │ ├── printVar.js │ │ │ ├── refCount.js │ │ │ ├── array.js │ │ │ ├── function.js │ │ │ ├── object.js │ │ │ ├── method.js │ │ │ └── var.js │ ├── cpp │ │ ├── cppModule │ │ │ ├── cppModule.def │ │ │ ├── README.md │ │ │ └── start.bit │ │ └── cppHandler │ │ │ ├── cppModule.def │ │ │ ├── appweb.conf │ │ │ └── start.bit │ └── c │ │ ├── simpleHandler │ │ ├── appweb.conf │ │ └── start.bit │ │ ├── simpleServer │ │ ├── index.html │ │ ├── simpleServer.conf │ │ └── start.bit │ │ ├── simpleEjs │ │ ├── simpleEjs.conf │ │ └── start.bit │ │ ├── simpleModule │ │ ├── README.md │ │ └── start.bit │ │ ├── simpleEsp │ │ ├── simpleEsp.conf │ │ ├── start.bit │ │ └── index.html │ │ ├── spyFilter │ │ └── README.md │ │ └── simpleClient │ │ └── start.bit ├── esp │ ├── www │ │ └── files │ │ │ ├── static │ │ │ └── images │ │ │ │ ├── banner.jpg │ │ │ │ ├── favicon.ico │ │ │ │ └── splash.jpg │ │ │ └── layouts │ │ │ └── default.esp │ ├── www-future │ │ └── files │ │ │ └── static │ │ │ ├── images │ │ │ ├── banner.jpg │ │ │ ├── splash.jpg │ │ │ └── favicon.ico │ │ │ └── js │ │ │ └── tree-images │ │ │ ├── file.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── folder.gif │ │ │ ├── folder-closed.gif │ │ │ ├── treeview-gray.gif │ │ │ ├── treeview-red.gif │ │ │ ├── treeview-black.gif │ │ │ ├── treeview-default.gif │ │ │ ├── treeview-famfamfam.gif │ │ │ ├── treeview-gray-line.gif │ │ │ ├── treeview-red-line.gif │ │ │ ├── treeview-black-line.gif │ │ │ ├── treeview-default-line.gif │ │ │ └── treeview-famfamfam-line.gif │ └── esp-app.h ├── libappweb.bit ├── modules │ ├── README.md │ └── modules.bit ├── deps │ ├── pcre │ │ └── pcre.bit │ ├── http │ │ └── http.bit │ ├── sqlite │ │ └── sqlite.bit │ └── mpr │ │ └── mpr.bit ├── utils │ └── utils.bit └── customize.h ├── projects ├── appweb-windows │ ├── mod_ssl.def │ ├── mod_php.def │ ├── mod_cgi.def │ ├── libmprssl.def │ ├── php5ts.dll.def │ ├── libpcre.def │ ├── product.props │ ├── release.props │ ├── libappweb.def │ ├── debug.props │ ├── x64.props │ └── x86.props ├── windows.bat └── idebuild ├── bits └── packs │ ├── dir.pak │ ├── cgi.pak │ └── esp.pak ├── configure └── README.md /test/cache/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/app/cache/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web/sub/a.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web/sub/b.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cgi-bin/.dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/web/sub/sub1/c.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/linux/deb.bin/conffiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/web/alive.html: -------------------------------------------------------------------------------- 1 | ALIVE 2 | -------------------------------------------------------------------------------- /test/sslconf/response.yes: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /test/web/caching/client.html: -------------------------------------------------------------------------------- 1 | client 2 | -------------------------------------------------------------------------------- /test/web/sleep.ejs: -------------------------------------------------------------------------------- 1 | <% App.sleep(300000) %> 2 | -------------------------------------------------------------------------------- /test/web/sleep.esp: -------------------------------------------------------------------------------- 1 | <% mprSleep(20000); %> 2 | -------------------------------------------------------------------------------- /test/web/lines.txt: -------------------------------------------------------------------------------- 1 | LINE 1 2 | LINE 2 3 | LINE 3 4 | -------------------------------------------------------------------------------- /test/basic/test.dat: -------------------------------------------------------------------------------- 1 | Test data: Thu Sep 17 20:17:22 PDT 2009 2 | -------------------------------------------------------------------------------- /test/cmd/test.dat: -------------------------------------------------------------------------------- 1 | Test data: Thu Sep 17 20:17:22 PDT 2009 2 | -------------------------------------------------------------------------------- /test/web/inner.esp: -------------------------------------------------------------------------------- 1 | <% render("Hello from inner text"); -%> 2 | -------------------------------------------------------------------------------- /test/web/test.dat: -------------------------------------------------------------------------------- 1 | Test data: Thu Sep 17 20:17:22 PDT 2009 2 | -------------------------------------------------------------------------------- /doc/iehacks.css: -------------------------------------------------------------------------------- 1 | *div.contentLeft { 2 | float: left; 3 | } 4 | -------------------------------------------------------------------------------- /test/web/listing/test.dat: -------------------------------------------------------------------------------- 1 | Test data: Thu Sep 17 20:17:22 PDT 2009 2 | -------------------------------------------------------------------------------- /src/server/web/iehacks.css: -------------------------------------------------------------------------------- 1 | *div.contentLeft { 2 | float: left; 3 | } 4 | -------------------------------------------------------------------------------- /test/web/caching/cache.ejs: -------------------------------------------------------------------------------- 1 | <% write("{ number: " + Date.ticks + "}"); %> 2 | -------------------------------------------------------------------------------- /test/web/include.ejs: -------------------------------------------------------------------------------- 1 | <% 2 | write("Hello from included text") 3 | %> 4 | -------------------------------------------------------------------------------- /test/web/index.en.html: -------------------------------------------------------------------------------- 1 | 2 |
English Suffix 3 | 4 | -------------------------------------------------------------------------------- /test/web/numbers.txt: -------------------------------------------------------------------------------- 1 | 01234567890123456789012345678901234567890123456789END 2 | -------------------------------------------------------------------------------- /test/web/redirect.esp: -------------------------------------------------------------------------------- 1 | 2 | <% redirect("/index.esp"); %> 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/samples/ejs/languageFeatures/inc.ejs: -------------------------------------------------------------------------------- 1 | <% 2 | i = 4; 3 | i = 5; 4 | %> 5 | -------------------------------------------------------------------------------- /test/web/english/eng.html: -------------------------------------------------------------------------------- 1 | 2 | Hello English 3 | 4 | -------------------------------------------------------------------------------- /doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/favicon.ico -------------------------------------------------------------------------------- /projects/appweb-windows/mod_ssl.def: -------------------------------------------------------------------------------- 1 | LIBRARY mod_ssl.dll 2 | EXPORTS 3 | maSslModuleInit -------------------------------------------------------------------------------- /src/samples/ejs/languageFeatures/inc.js: -------------------------------------------------------------------------------- 1 | // 2 | // Assign 3 to i. 3 | // 4 | i=3; 5 | -------------------------------------------------------------------------------- /test/web/index.fr.html: -------------------------------------------------------------------------------- 1 | 2 | Bonjour tout le monde 3 | 4 | -------------------------------------------------------------------------------- /doc/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/form.png -------------------------------------------------------------------------------- /doc/images/mvc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/mvc.jpg -------------------------------------------------------------------------------- /doc/images/tray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/tray.jpg -------------------------------------------------------------------------------- /projects/appweb-windows/mod_php.def: -------------------------------------------------------------------------------- 1 | LIBRARY mod_php.dll 2 | EXPORTS 3 | maPhpHandlerInit -------------------------------------------------------------------------------- /doc/images/appweb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/appweb.bmp -------------------------------------------------------------------------------- /doc/images/appweb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/appweb.ico -------------------------------------------------------------------------------- /doc/images/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/banner.gif -------------------------------------------------------------------------------- /doc/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/banner.jpg -------------------------------------------------------------------------------- /doc/images/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/banner.psd -------------------------------------------------------------------------------- /doc/images/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/board.jpg -------------------------------------------------------------------------------- /doc/images/jquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/jquery.gif -------------------------------------------------------------------------------- /doc/images/nslu2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/nslu2.jpg -------------------------------------------------------------------------------- /doc/images/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/pixel.gif -------------------------------------------------------------------------------- /doc/images/shadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/shadow.jpg -------------------------------------------------------------------------------- /doc/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/shadow.png -------------------------------------------------------------------------------- /projects/appweb-windows/mod_cgi.def: -------------------------------------------------------------------------------- 1 | LIBRARY mod_cgi.dll 2 | EXPORTS 3 | maCgiHandlerInit 4 | -------------------------------------------------------------------------------- /src/samples/cpp/cppModule/cppModule.def: -------------------------------------------------------------------------------- 1 | LIBRARY cppModule.dll 2 | EXPORTS 3 | maSimpleModuleInit -------------------------------------------------------------------------------- /src/server/appweb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/appweb.ico -------------------------------------------------------------------------------- /test/web/caching/cache.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/favicon.ico -------------------------------------------------------------------------------- /doc/images/modules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/modules.jpg -------------------------------------------------------------------------------- /doc/images/pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/pipeline.jpg -------------------------------------------------------------------------------- /doc/images/proxied.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/proxied.jpg -------------------------------------------------------------------------------- /doc/images/routing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/routing.jpg -------------------------------------------------------------------------------- /doc/images/scalable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/scalable.jpg -------------------------------------------------------------------------------- /doc/images/services.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/services.jpg -------------------------------------------------------------------------------- /doc/masters/modules.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/masters/modules.pptx -------------------------------------------------------------------------------- /doc/masters/monitor.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/masters/monitor.pptx -------------------------------------------------------------------------------- /doc/masters/proxied.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/masters/proxied.pptx -------------------------------------------------------------------------------- /src/samples/cpp/cppHandler/cppModule.def: -------------------------------------------------------------------------------- 1 | LIBRARY cppModule.dll 2 | EXPORTS 3 | maSimpleHandlerInit -------------------------------------------------------------------------------- /test/ejs/test.setup: -------------------------------------------------------------------------------- 1 | if (!App.config.bit_ejscript) { 2 | test.skip("Ejscript not enabled") 3 | } 4 | -------------------------------------------------------------------------------- /test/esp/test.setup: -------------------------------------------------------------------------------- 1 | if (!App.config.bit_esp) { 2 | test.skip("Run only if ESP enabled") 3 | } 4 | -------------------------------------------------------------------------------- /test/web/icons/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/back.gif -------------------------------------------------------------------------------- /test/web/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/blank.gif -------------------------------------------------------------------------------- /test/web/icons/space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/space.gif -------------------------------------------------------------------------------- /test/web/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/text.gif -------------------------------------------------------------------------------- /doc/images/ejsWebView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/ejsWebView.jpg -------------------------------------------------------------------------------- /doc/images/routeSteps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/images/routeSteps.jpg -------------------------------------------------------------------------------- /doc/masters/pipeline.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/masters/pipeline.pptx -------------------------------------------------------------------------------- /doc/masters/scalable.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/doc/masters/scalable.pptx -------------------------------------------------------------------------------- /src/server/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/web/favicon.ico -------------------------------------------------------------------------------- /src/server/windows/go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/windows/go.bmp -------------------------------------------------------------------------------- /src/server/windows/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/windows/go.png -------------------------------------------------------------------------------- /src/server/windows/mon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/windows/mon.ico -------------------------------------------------------------------------------- /src/server/windows/two.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/src/server/windows/two.ico -------------------------------------------------------------------------------- /test/ipv6/test.setup: -------------------------------------------------------------------------------- 1 | if (!App.config.uris.ipv6) { 2 | test.skip("Run only if IPv6 supported") 3 | } 4 | -------------------------------------------------------------------------------- /test/web/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/folder.gif -------------------------------------------------------------------------------- /test/web/icons/parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/web/icons/parent.gif -------------------------------------------------------------------------------- /test/web/main.html: -------------------------------------------------------------------------------- 1 |<% render("Hello ESP World"); %>
4 | 5 | 6 | -------------------------------------------------------------------------------- /test/app/static/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/app/static/images/banner.jpg -------------------------------------------------------------------------------- /test/app/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/app/static/images/favicon.ico -------------------------------------------------------------------------------- /test/app/static/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni-webtech/appweb-4/HEAD/test/app/static/images/splash.jpg -------------------------------------------------------------------------------- /test/web/vhost/iphost/private.html: -------------------------------------------------------------------------------- 1 | 2 |