Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f3e24e

Browse files
author
Embedthis Development
committed
DEV: regen
1 parent 43f7b41 commit 2f3e24e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3339
-2538
lines changed

doc/api/appweb.tags

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

doc/api/mpr.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9716,7 +9716,7 @@ <h2>Functions</h2>
97169716
By default, error log messages are sent to the standard error output. Applications may redirect output by installing a log handler using <a class="ref" href="#mpr_8h_1a834e7ceec5efa68d0d73eb45c3c69780">mprSetLogHandler</a>. <br/><br/>
97179717
Log messages should be a single text line to facilitate machine processing of log files. Descriptive tag words may be provided to indicate a severity level and to classifiy messages. By convention, tags may include one of the severity levels defined in RFC 5424: &quot;debug&quot;, &quot;info&quot;, &quot;notice&quot;, &quot;warn&quot;, &quot;error&quot;, &quot;critical&quot;. Messages using the &quot;error&quot;, &quot;critical&quot; tags should use a level of zero. Tags should be space separated. By convention, specify the RFC tag name first in a list of tags. <br/><br/>
97189718
The default log handler emits messages in three formats depending on whether MPR_LOG_DETAILED is provided to <a class="ref" href="#mpr_8h_1a8497fae7134238ba1b5f22680b1fd344">mprStartLogging</a> and the value of the tags parameter. If MPR_LOG_DETAILED and tags are supplied, the format is: &quot;MM/DD/YY HH:MM:SS LEVEL TAGS, Message&quot;. Otherwise a a simplified output format is used: &quot;Name: severity:
9719-
message&quot;, where severity is set to &quot;error&quot; for level 0 messages. This is useful for utility programs. If tags are null, the message is output raw, without any any prefixes. <br/><br/>
9719+
message&quot;, where severity is set to &quot;error&quot; for level 0 messages. This is useful for utility programs. If tags are null, the message is output raw, without any any prefixes. <br/><br/>
97209720
Logging typically is enabled in both debug and release builds and may be controlled via the build define ME_MPR_LOGGING which is typically set via the MakeMe setting &quot;logging: true&quot;. <br/><br/>
97219721
The mprDebug API may be used to emit log messages only in debug builds. <br/><br/>
97229722
If level zero is used, the message is also sent to any relevant operating system logging facility such as syslog or the Windows event database. <br/><br/>

doc/api/mpr.tags

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

projects/appweb-freebsd-default-me.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
#define ME_COMPAT 1
1717
#endif
1818
#ifndef ME_COMPATIBLE
19-
#define ME_COMPATIBLE "9.0"
19+
#define ME_COMPATIBLE "9.1"
2020
#endif
2121
#ifndef ME_COMPILER_FORTIFY
22-
#define ME_COMPILER_FORTIFY 1
22+
#define ME_COMPILER_FORTIFY 0
2323
#endif
2424
#ifndef ME_COMPILER_HAS_ATOMIC
2525
#define ME_COMPILER_HAS_ATOMIC 1
@@ -199,7 +199,7 @@
199199
#define ME_TUNE "size"
200200
#endif
201201
#ifndef ME_VERSION
202-
#define ME_VERSION "9.0.5"
202+
#define ME_VERSION "9.1.0"
203203
#endif
204204
#ifndef ME_WATCHDOG_NAME
205205
#define ME_WATCHDOG_NAME "appman"
@@ -228,7 +228,7 @@
228228
#define ME_APP_PREFIX "/usr/local/lib/appweb"
229229
#endif
230230
#ifndef ME_VAPP_PREFIX
231-
#define ME_VAPP_PREFIX "/usr/local/lib/appweb/9.0.5"
231+
#define ME_VAPP_PREFIX "/usr/local/lib/appweb/9.1.0"
232232
#endif
233233
#ifndef ME_BIN_PREFIX
234234
#define ME_BIN_PREFIX "/usr/local/bin"
@@ -264,7 +264,7 @@
264264
#define ME_CACHE_PREFIX "/var/spool/appweb/cache"
265265
#endif
266266
#ifndef ME_SRC_PREFIX
267-
#define ME_SRC_PREFIX "appweb-9.0.5"
267+
#define ME_SRC_PREFIX "appweb-9.1.0"
268268
#endif
269269

270270
/* Suffixes */
@@ -286,7 +286,7 @@
286286

287287
/* Profile */
288288
#ifndef ME_CONFIG_CMD
289-
#define ME_CONFIG_CMD "me -d -q -platform freebsd-arm-default -configure . --with esp --with mdb --with cgi -gen make"
289+
#define ME_CONFIG_CMD "me -d -q -platform freebsd-arm-default -configure . --with esp --with mdb --with cgi --with fast --with proxy -gen make"
290290
#endif
291291
#ifndef ME_APPWEB_PRODUCT
292292
#define ME_APPWEB_PRODUCT 1
@@ -303,13 +303,13 @@
303303
#define ME_MAJOR_VERSION 9
304304
#endif
305305
#ifndef ME_MINOR_VERSION
306-
#define ME_MINOR_VERSION 0
306+
#define ME_MINOR_VERSION 1
307307
#endif
308308
#ifndef ME_PATCH_VERSION
309-
#define ME_PATCH_VERSION 5
309+
#define ME_PATCH_VERSION 0
310310
#endif
311311
#ifndef ME_VNUM
312-
#define ME_VNUM 900000005
312+
#define ME_VNUM 900010000
313313
#endif
314314

315315
/* Components */
@@ -329,7 +329,7 @@
329329
#define ME_COM_ESP 1
330330
#endif
331331
#ifndef ME_COM_FAST
332-
#define ME_COM_FAST 0
332+
#define ME_COM_FAST 1
333333
#endif
334334
#ifndef ME_COM_HTTP
335335
#define ME_COM_HTTP 1
@@ -359,7 +359,7 @@
359359
#define ME_COM_PHP 0
360360
#endif
361361
#ifndef ME_COM_PROXY
362-
#define ME_COM_PROXY 0
362+
#define ME_COM_PROXY 1
363363
#endif
364364
#ifndef ME_COM_SQLITE
365365
#define ME_COM_SQLITE 0

projects/appweb-freebsd-default.mk

Lines changed: 174 additions & 157 deletions
Large diffs are not rendered by default.

projects/appweb-linux-default-me.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
#define ME_COMPAT 1
1717
#endif
1818
#ifndef ME_COMPATIBLE
19-
#define ME_COMPATIBLE "9.0"
19+
#define ME_COMPATIBLE "9.1"
2020
#endif
2121
#ifndef ME_COMPILER_FORTIFY
22-
#define ME_COMPILER_FORTIFY 1
22+
#define ME_COMPILER_FORTIFY 0
2323
#endif
2424
#ifndef ME_COMPILER_HAS_ATOMIC
2525
#define ME_COMPILER_HAS_ATOMIC 1
@@ -199,7 +199,7 @@
199199
#define ME_TUNE "size"
200200
#endif
201201
#ifndef ME_VERSION
202-
#define ME_VERSION "9.0.5"
202+
#define ME_VERSION "9.1.0"
203203
#endif
204204
#ifndef ME_WATCHDOG_NAME
205205
#define ME_WATCHDOG_NAME "appman"
@@ -228,7 +228,7 @@
228228
#define ME_APP_PREFIX "/usr/local/lib/appweb"
229229
#endif
230230
#ifndef ME_VAPP_PREFIX
231-
#define ME_VAPP_PREFIX "/usr/local/lib/appweb/9.0.5"
231+
#define ME_VAPP_PREFIX "/usr/local/lib/appweb/9.1.0"
232232
#endif
233233
#ifndef ME_BIN_PREFIX
234234
#define ME_BIN_PREFIX "/usr/local/bin"
@@ -264,7 +264,7 @@
264264
#define ME_CACHE_PREFIX "/var/spool/appweb/cache"
265265
#endif
266266
#ifndef ME_SRC_PREFIX
267-
#define ME_SRC_PREFIX "appweb-9.0.5"
267+
#define ME_SRC_PREFIX "appweb-9.1.0"
268268
#endif
269269

270270
/* Suffixes */
@@ -286,7 +286,7 @@
286286

287287
/* Profile */
288288
#ifndef ME_CONFIG_CMD
289-
#define ME_CONFIG_CMD "me -d -q -platform linux-x64-default -configure . --with esp --with mdb --with cgi -gen make"
289+
#define ME_CONFIG_CMD "me -d -q -platform linux-x64-default -configure . --with esp --with mdb --with cgi --with fast --with proxy -gen make"
290290
#endif
291291
#ifndef ME_APPWEB_PRODUCT
292292
#define ME_APPWEB_PRODUCT 1
@@ -303,13 +303,13 @@
303303
#define ME_MAJOR_VERSION 9
304304
#endif
305305
#ifndef ME_MINOR_VERSION
306-
#define ME_MINOR_VERSION 0
306+
#define ME_MINOR_VERSION 1
307307
#endif
308308
#ifndef ME_PATCH_VERSION
309-
#define ME_PATCH_VERSION 5
309+
#define ME_PATCH_VERSION 0
310310
#endif
311311
#ifndef ME_VNUM
312-
#define ME_VNUM 900000005
312+
#define ME_VNUM 900010000
313313
#endif
314314

315315
/* Components */
@@ -329,7 +329,7 @@
329329
#define ME_COM_ESP 1
330330
#endif
331331
#ifndef ME_COM_FAST
332-
#define ME_COM_FAST 0
332+
#define ME_COM_FAST 1
333333
#endif
334334
#ifndef ME_COM_HTTP
335335
#define ME_COM_HTTP 1
@@ -359,7 +359,7 @@
359359
#define ME_COM_PHP 0
360360
#endif
361361
#ifndef ME_COM_PROXY
362-
#define ME_COM_PROXY 0
362+
#define ME_COM_PROXY 1
363363
#endif
364364
#ifndef ME_COM_SQLITE
365365
#define ME_COM_SQLITE 0

0 commit comments

Comments
 (0)