Changeset 1164:49ce9743a4d0
- Timestamp:
- 02/22/09 15:33:12 (3 years ago)
- Branch:
- libdodo
- Location:
- trunk/include/libdodo
- Files:
-
- 19 edited
-
cgi.h (modified) (1 diff)
-
cgiDialogue.h (modified) (2 diffs)
-
cgiFastServer.h (modified) (1 diff)
-
dataBaseAccumulator.h (modified) (1 diff)
-
dataBaseConnector.h (modified) (2 diffs)
-
dataFormatXmlNode.h (modified) (1 diff)
-
dataFormatXmlProcessor.h (modified) (2 diffs)
-
graphicsDraw.h (modified) (1 diff)
-
graphicsImage.h (modified) (1 diff)
-
ioChannel.h (modified) (1 diff)
-
ioFileFifo.h (modified) (1 diff)
-
ioFileRegular.h (modified) (1 diff)
-
ioNetworkClient.h (modified) (1 diff)
-
ioNetworkHttp.h (modified) (1 diff)
-
ioNetworkServer.h (modified) (1 diff)
-
ioNetworkSslClient.h (modified) (1 diff)
-
ioNetworkSslServer.h (modified) (1 diff)
-
toolsTime.h (modified) (1 diff)
-
xexec.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/libdodo/cgi.h
r1160 r1164 213 213 * @note defines struct data with user data 214 214 */ 215 __cgiCookie(const dodoString &name, const dodoString &value, const dodoString &exDate, const dodoString &path, const dodoString &domain, bool secure); 215 __cgiCookie(const dodoString &name, 216 const dodoString &value, 217 const dodoString &exDate, 218 const dodoString &path, 219 const dodoString &domain, 220 bool secure); 216 221 217 222 dodoString name; ///< name of the cookie -
trunk/include/libdodo/cgiDialogue.h
r1160 r1164 93 93 * @param postFilesTmpDir defines directory for POST files if on they are saved on the disk 94 94 */ 95 dialogue(exchange &cf, bool silent = false, bool autocleanFiles = true, bool postFilesInMem = true, dodoString postFilesTmpDir = "/tmp/"); 95 dialogue(exchange &cf, 96 bool silent = false, 97 bool autocleanFiles = true, 98 bool postFilesInMem = true, 99 dodoString postFilesTmpDir = "/tmp/"); 96 100 97 101 /** … … 104 108 * @param postFilesTmpDir defines directory for POST files if on they are saved on the disk 105 109 */ 106 dialogue(exchange &cf, dodoMap<short, dodoString> &headers, bool silent = false, bool autocleanFiles = true, bool postFilesInMem = true, dodoString postFilesTmpDir = "/tmp/"); 110 dialogue(exchange &cf, 111 dodoMap<short, dodoString> &headers, 112 bool silent = false, 113 bool autocleanFiles = true, 114 bool postFilesInMem = true, 115 dodoString postFilesTmpDir = "/tmp/"); 107 116 108 117 /** -
trunk/include/libdodo/cgiFastServer.h
r1161 r1164 81 81 * if limit is 0 `listen` never returns 82 82 */ 83 server(unsigned long limit = 0, bool threading = true, unsigned int threadsNum = 10); 83 server(unsigned long limit = 0, 84 bool threading = true, 85 unsigned int threadsNum = 10); 84 86 85 87 #else -
trunk/include/libdodo/dataBaseAccumulator.h
r1160 r1164 65 65 * @param execObject defines type of object that executed a hook[see xexecObjectTypeEnum] 66 66 */ 67 __xexecDataBaseAccumulatorCollectedData(xexec *executor, short execObject); 67 __xexecDataBaseAccumulatorCollectedData(xexec *executor, 68 short execObject); 68 69 69 70 #endif -
trunk/include/libdodo/dataBaseConnector.h
r1160 r1164 81 81 * @param fields defines names of fields 82 82 */ 83 __tuples(dodoArray<dodoStringArray> rows, dodoStringArray fields); 83 __tuples(dodoArray<dodoStringArray> rows, 84 dodoStringArray fields); 84 85 85 86 /** … … 112 113 * @param port defines port 113 114 */ 114 __connectionInfo(const dodoString &db, const dodoString &host, const dodoString &user, const dodoString &password, const dodoString &path=__dodostring__, int port=0); 115 __connectionInfo(const dodoString &db, 116 const dodoString &host, 117 const dodoString &user, 118 const dodoString &password, 119 const dodoString &path = __dodostring__, 120 int port = 0); 115 121 116 122 dodoString db; ///< database name -
trunk/include/libdodo/dataFormatXmlNode.h
r1160 r1164 94 94 * @param ns defines node namespace 95 95 */ 96 node(const dodoString &name, const dodoStringMap &attributes, const dodoString &value, const dodoString &ns = __dodostring__); 96 node(const dodoString &name, 97 const dodoStringMap &attributes, 98 const dodoString &value, 99 const dodoString &ns = __dodostring__); 97 100 98 101 /** -
trunk/include/libdodo/dataFormatXmlProcessor.h
r1160 r1164 67 67 * @param ns defines namespace of the node 68 68 */ 69 __nodeDef(const dodoString &name, const dodoString &ns=__dodostring__); 69 __nodeDef(const dodoString &name, 70 const dodoString &ns = __dodostring__); 70 71 71 72 dodoString name; ///< name of the node [[tag]]; if empty - for first - gets root, for children - all[but if children do not have in definition own children] … … 95 96 * @note initializes with user values 96 97 */ 97 __info(const dodoString &version, const dodoString &encoding, const dodoString &root, int compression); 98 __info(const dodoString &version, 99 const dodoString &encoding, 100 const dodoString &root, 101 int compression); 98 102 99 103 dodoString version; ///< version of XML document -
trunk/include/libdodo/graphicsDraw.h
r1160 r1164 70 70 * @param y defines y position of the point 71 71 */ 72 point(unsigned long x, unsigned long y); 72 point(unsigned long x, 73 unsigned long y); 73 74 74 75 unsigned long x; ///< x position of the point -
trunk/include/libdodo/graphicsImage.h
r1160 r1164 87 87 * @param execObject defines type of object that executed a hook[see xexecObjectTypeEnum] 88 88 */ 89 __xexecImageCollectedData(xexec *executor, short execObject); 89 __xexecImageCollectedData(xexec *executor, 90 short execObject); 90 91 91 92 #endif -
trunk/include/libdodo/ioChannel.h
r1161 r1164 73 73 * @param execObject defines type of object that executed a hook[see xexecObjectTypeEnum] 74 74 */ 75 __xexecIoChannelCollectedData(xexec *executor, short execObject); 75 __xexecIoChannelCollectedData(xexec *executor, 76 short execObject); 76 77 77 78 dodoString buffer; ///< data buffer -
trunk/include/libdodo/ioFileFifo.h
r1160 r1164 91 91 * @param mode defines mode to open file[see fifoOpenmodeEnum] 92 92 */ 93 fifo(const dodoString &path, short mode); 93 fifo(const dodoString &path, 94 short mode); 94 95 95 96 /** -
trunk/include/libdodo/ioFileRegular.h
r1160 r1164 91 91 * @param mode defines mode to open file[see regularOpenmodeEnum] 92 92 */ 93 regular(const dodoString &path, short mode); 93 regular(const dodoString &path, 94 short mode); 94 95 95 96 /** -
trunk/include/libdodo/ioNetworkClient.h
r1160 r1164 124 124 * @param type defines type of the socket[see connectionTransferTypeEnum] 125 125 */ 126 client(short family, short type); 126 client(short family, 127 short type); 127 128 128 129 /** -
trunk/include/libdodo/ioNetworkHttp.h
r1160 r1164 130 130 * @param mime defines mimetype of the file 131 131 */ 132 __httpPostFile(const dodoString path, const dodoString mime); 132 __httpPostFile(const dodoString path, 133 const dodoString mime); 133 134 134 135 /** -
trunk/include/libdodo/ioNetworkServer.h
r1160 r1164 125 125 * @param type defines type of the socket[see connectionTransferTypeEnum] 126 126 */ 127 server(short family, short type); 127 server(short family, 128 short type); 128 129 129 130 /** -
trunk/include/libdodo/ioNetworkSslClient.h
r1160 r1164 88 88 * @param type defines type of the socket[see connectionTransferTypeEnum] 89 89 */ 90 client(short family, short type); 90 client(short family, 91 short type); 91 92 92 93 /** -
trunk/include/libdodo/ioNetworkSslServer.h
r1160 r1164 87 87 * @param type defines type of the socket[see connectionTransferTypeEnum] 88 88 */ 89 server(short family, short type); 89 server(short family, 90 short type); 90 91 91 92 /** -
trunk/include/libdodo/toolsTime.h
r1160 r1164 89 89 * @param daylight defines daylight savings condition 90 90 */ 91 __time(unsigned int sec, unsigned int min, unsigned int hour, unsigned int day, unsigned int month, unsigned int year, bool daylight = true); 91 __time(unsigned int sec, 92 unsigned int min, 93 unsigned int hour, 94 unsigned int day, 95 unsigned int month, 96 unsigned int year, 97 bool daylight = true); 92 98 93 99 unsigned int sec; ///< seconds [0, 60] -
trunk/include/libdodo/xexec.h
r1163 r1164 186 186 * @param execObject defines type of object that executed a hook[see xexecObjectTypeEnum] 187 187 */ 188 __xexecCollectedData(xexec *executor, short execObject); 188 __xexecCollectedData(xexec *executor, 189 short execObject); 189 190 190 191 /**
Note: See TracChangeset
for help on using the changeset viewer.
