├── CMakeLists.txt ├── ChangeLog ├── INSTALL ├── Makefile ├── Makefile.example ├── README.md ├── example.conf ├── example.cpp ├── example.tmpl ├── help.chm ├── help.pdf ├── string_hash.js ├── string_hash.pl ├── waCgi.cpp ├── waCgi.h ├── waConfigFile.cpp ├── waConfigFile.h ├── waDateTime.cpp ├── waDateTime.h ├── waEncode.cpp ├── waEncode.h ├── waFileSystem.cpp ├── waFileSystem.h ├── waHttpClient.cpp ├── waHttpClient.h ├── waMysqlClient.cpp ├── waMysqlClient.h ├── waString.cpp ├── waString.h ├── waTemplate.cpp ├── waTemplate.h ├── waTextFile.cpp ├── waTextFile.h ├── waUtility.cpp ├── waUtility.h └── webapplib.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/Makefile.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/README.md -------------------------------------------------------------------------------- /example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/example.conf -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/example.cpp -------------------------------------------------------------------------------- /example.tmpl: -------------------------------------------------------------------------------- 1 | welcome {{$username}}! 2 | you query result is here: 3 | {{$value}} -------------------------------------------------------------------------------- /help.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/help.chm -------------------------------------------------------------------------------- /help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/help.pdf -------------------------------------------------------------------------------- /string_hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/string_hash.js -------------------------------------------------------------------------------- /string_hash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/string_hash.pl -------------------------------------------------------------------------------- /waCgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waCgi.cpp -------------------------------------------------------------------------------- /waCgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waCgi.h -------------------------------------------------------------------------------- /waConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waConfigFile.cpp -------------------------------------------------------------------------------- /waConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waConfigFile.h -------------------------------------------------------------------------------- /waDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waDateTime.cpp -------------------------------------------------------------------------------- /waDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waDateTime.h -------------------------------------------------------------------------------- /waEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waEncode.cpp -------------------------------------------------------------------------------- /waEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waEncode.h -------------------------------------------------------------------------------- /waFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waFileSystem.cpp -------------------------------------------------------------------------------- /waFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waFileSystem.h -------------------------------------------------------------------------------- /waHttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waHttpClient.cpp -------------------------------------------------------------------------------- /waHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waHttpClient.h -------------------------------------------------------------------------------- /waMysqlClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waMysqlClient.cpp -------------------------------------------------------------------------------- /waMysqlClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waMysqlClient.h -------------------------------------------------------------------------------- /waString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waString.cpp -------------------------------------------------------------------------------- /waString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waString.h -------------------------------------------------------------------------------- /waTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waTemplate.cpp -------------------------------------------------------------------------------- /waTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waTemplate.h -------------------------------------------------------------------------------- /waTextFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waTextFile.cpp -------------------------------------------------------------------------------- /waTextFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waTextFile.h -------------------------------------------------------------------------------- /waUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waUtility.cpp -------------------------------------------------------------------------------- /waUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/waUtility.h -------------------------------------------------------------------------------- /webapplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pi1ot/webapplib/HEAD/webapplib.h --------------------------------------------------------------------------------