winix/core
Tomasz Sowa 375604edd6 removed: Request::debug all stream used for debugging info
some environment variables were put there
removed: config variable: debug_info
removed: Request::role (responder, authorizer)
         now we have only one role: responder
added:   new config variables:
         log_env_variables (default false) - when true then fastcgi environment
         variables are logged to the log file
         log_http_answer_headers (default false) - when true all http headers
         created by winix ale logged (note that the www server can add/adjust other headers)
changed: some refactoring in Request struct
changed: CookieTab to std::map<std::wstring, std::wstring>
         beforehand std::string was used
         (changed CookieParser as well)
changed: Request::SetCookie() to AddCookie()
added:   Request::out_headers (a PT::Space struct)
         http headers (without cookies) send back to the client
added:   Request::out_cookies (a PT::Space struct)
         cookies send to the client
changed: App class to use Request::out_headers and Request::out_cookies
         some SendHeaders...() methods were renamed to PrepareHeaders...()
         and they create output in Request::out_headers first (and out_cookies)
         and later it is sent
added:   two plugin messages:
         // http headers (without cookies) were created and are ready to send
         // here you can make some changes to them
         // in p1 you have a pointer to the PT::Space (Request::out_headers)
         #define WINIX_PREPARE_TO_SEND_HTTP_HEADERS		31070

         // http cookies were created and are ready to send
         // here you can make some changes to them
         // in p1 you have a pointer to the PT::Space (Request::out_cookies)
         #define WINIX_PREPARE_TO_SEND_HTTP_COOKIES		31080
added:   config variable:
         // how many output streams do we have in Request class
         // default: 16 (64 maximum)
         size_t ezc_out_streams_size;




git-svn-id: svn://ttmath.org/publicrep/winix/trunk@940 e52654a7-88a9-db11-a3e9-0013d4bc506e
2013-11-29 21:39:23 +00:00
..
Makefile changed: now we are using the C++ 11 language (-std=c++11) and we are using 2013-10-15 21:57:51 +00:00
Makefile.dep changed: now we are using the C++ 11 language (-std=c++11) and we are using 2013-10-15 21:57:51 +00:00
Makefile.o.dep added: IP ban mechanism (not finished yet -- we need a winix function to remove a ban) 2012-10-27 07:44:26 +00:00
acceptbaseparser.cpp fixed: compiling in the clang (new version of c++ std lib) 2013-10-10 11:59:21 +00:00
acceptbaseparser.h added support for gzip compression 2011-04-02 00:10:16 +00:00
acceptencodingparser.h added support for gzip compression 2011-04-02 00:10:16 +00:00
app.cpp removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
app.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
basethread.cpp added: Export plugin (not finished yet) 2011-07-28 22:18:10 +00:00
basethread.h updated: to the new Pikotools API 2012-04-30 22:53:54 +00:00
bbcodeparser.cpp fixed: BBCODEParser incorrectly worked with the latest changes in HTMLFilter 2011-04-16 11:27:54 +00:00
bbcodeparser.h added: "str" "strnc" ezc functions 2011-04-26 17:19:08 +00:00
compress.cpp added: a new way: HEX format to saving/reading from PostgreSQL bytea columns 2012-09-11 05:19:45 +00:00
compress.h added: a new way: HEX format to saving/reading from PostgreSQL bytea columns 2012-09-11 05:19:45 +00:00
config.cpp removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
config.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
cookieparser.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
crypt.cpp changed: in Crypt: 2012-09-19 23:17:10 +00:00
crypt.h changed: in Crypt: 2012-09-19 23:17:10 +00:00
cur.h added: new winix function: mount 2011-06-21 21:24:49 +00:00
dircontainer.cpp we can create links (hard links, symbolic links) now 2011-01-05 21:24:11 +00:00
dircontainer.h added: now we have a fourth part in permissions (guests) 2012-01-24 23:03:36 +00:00
dirs.cpp added: some methods in Dystem::Dirs (takes wchar_t * as an argument, now only std::wstring were) 2012-09-13 23:12:48 +00:00
dirs.h added: some methods in Dystem::Dirs (takes wchar_t * as an argument, now only std::wstring were) 2012-09-13 23:12:48 +00:00
error.h added: Export plugin (not finished yet) 2011-07-28 22:18:10 +00:00
group.h changed: added Cur structure 2011-01-23 14:15:30 +00:00
groups.cpp added: winix function: rmuser 2012-03-09 02:36:25 +00:00
groups.h added: winix function: rmuser 2012-03-09 02:36:25 +00:00
htmlfilter.cpp added: to htmlfilter: html "col" tag is a 'simple' tag 2011-12-04 19:34:39 +00:00
htmlfilter.h fixed: BBCODEParser incorrectly worked with the latest changes in HTMLFilter 2011-04-16 11:27:54 +00:00
httpsimpleparser.cpp removed: Done class (core/done.h, core/done.cpp) 2010-02-28 21:33:06 +00:00
httpsimpleparser.h changed: added Cur structure 2011-01-23 14:15:30 +00:00
image.cpp added: a new winix function: imgcrop 2013-03-29 22:03:28 +00:00
image.h added: a new winix function: imgcrop 2013-03-29 22:03:28 +00:00
ipban.h fixed: compiling in the clang (new version of c++ std lib) 2013-10-10 11:59:21 +00:00
ipbancontainer.cpp added: locales to fun_ipban.html 2012-10-27 10:14:07 +00:00
ipbancontainer.h added: to 'ipban' winix function: 2012-10-27 09:03:49 +00:00
item.cpp added: to Item struct: ameta (PT::Space) 2012-11-04 21:01:02 +00:00
item.h added: to Item struct: ameta (PT::Space) 2012-11-04 21:01:02 +00:00
job.cpp added: a deadlock counter to Synchro class 2012-04-28 20:57:57 +00:00
job.h updated: to the new Pikotools API 2012-04-30 22:53:54 +00:00
lastcontainer.cpp removed: dependencies to 'tz' system structure 2012-05-26 23:04:49 +00:00
lastcontainer.h removed: dependencies to 'tz' system structure 2012-05-26 23:04:49 +00:00
loadavg.cpp added: function adduser 2010-02-28 00:08:10 +00:00
loadavg.h changed: added Cur structure 2011-01-23 14:15:30 +00:00
lock.cpp added: Lock class -- locking resources by using Synchro object 2012-09-11 23:46:00 +00:00
lock.h added: Lock class -- locking resources by using Synchro object 2012-09-11 23:46:00 +00:00
log.cpp added: to config: log_time_zone_id (size_t) identifier 2012-09-06 17:50:14 +00:00
log.h added: IP ban mechanism (not finished yet -- we need a winix function to remove a ban) 2012-10-27 07:44:26 +00:00
logmanipulators.h added: SLog class -- session logger 2011-06-19 20:59:58 +00:00
misc.cpp added: a new winix function: imgcrop 2013-03-29 22:03:28 +00:00
misc.h removed: ezn patterns for rawcontent and ajaxcontent: 2013-11-14 20:59:23 +00:00
mount.cpp added: uptime winix function prints how many sessions there are 2010-11-25 01:34:46 +00:00
mount.h changed: added Cur structure 2011-01-23 14:15:30 +00:00
mountparser.cpp added: new winix function: mount 2011-06-21 21:24:49 +00:00
mountparser.h added: new winix function: mount 2011-06-21 21:24:49 +00:00
mounts.cpp rewritten: sessions management 2012-03-17 05:11:23 +00:00
mounts.h added: now we have a fourth part in permissions (guests) 2012-01-24 23:03:36 +00:00
plugin.cpp added: a deadlock counter to Synchro class 2012-04-28 20:57:57 +00:00
plugin.h added: a deadlock counter to Synchro class 2012-04-28 20:57:57 +00:00
plugindata.cpp rewritten: sessions management 2012-03-17 05:11:23 +00:00
plugindata.h fixed: when there is no option "locale_files" in the config 2012-06-30 18:37:52 +00:00
pluginmsg.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
postmultiparser.cpp fixed: compiling in the clang (new version of c++ std lib) 2013-10-10 11:59:21 +00:00
postmultiparser.h changed: winix 'upload' function is a file manager now 2011-06-24 20:53:21 +00:00
postparser.h added: WINIX_RAW_POST_STRING plugin message 2012-08-19 14:24:24 +00:00
rebus.cpp added: put the rebus answer into the log (when user has entered an incorrect answer) 2012-12-26 23:08:57 +00:00
rebus.h changed: added Cur structure 2011-01-23 14:15:30 +00:00
request.cpp removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
request.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
requesttypes.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
run.cpp added: a new way: HEX format to saving/reading from PostgreSQL bytea columns 2012-09-11 05:19:45 +00:00
run.h fixed: compiling in the clang (new version of c++ std lib) 2013-10-10 11:59:21 +00:00
session.cpp added: locales to fun_ipban.html 2012-10-27 10:14:07 +00:00
session.h added: locales to fun_ipban.html 2012-10-27 10:14:07 +00:00
sessioncontainer.cpp rewritten: sessions management 2012-03-17 05:11:23 +00:00
sessioncontainer.h rewritten: sessions management 2012-03-17 05:11:23 +00:00
sessionmanager.cpp removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
sessionmanager.h removed: Request::debug all stream used for debugging info 2013-11-29 21:39:23 +00:00
sessionparser.cpp changed: in Request: 2012-05-24 21:09:37 +00:00
sessionparser.h rewritten: sessions management 2012-03-17 05:11:23 +00:00
slog.cpp added: IP ban mechanism (not finished yet -- we need a winix function to remove a ban) 2012-10-27 07:44:26 +00:00
slog.h added: IP ban mechanism (not finished yet -- we need a winix function to remove a ban) 2012-10-27 07:44:26 +00:00
synchro.cpp added: a deadlock counter to Synchro class 2012-04-28 20:57:57 +00:00
synchro.h added: a deadlock counter to Synchro class 2012-04-28 20:57:57 +00:00
system.cpp removed: ezn patterns for rawcontent and ajaxcontent: 2013-11-14 20:59:23 +00:00
system.h removed: ezn patterns for rawcontent and ajaxcontent: 2013-11-14 20:59:23 +00:00
textstream.h added: IP ban mechanism (not finished yet -- we need a winix function to remove a ban) 2012-10-27 07:44:26 +00:00
threadmanager.cpp added: to thread manager: names of the threads 2012-05-19 17:04:33 +00:00
threadmanager.h added: to thread manager: names of the threads 2012-05-19 17:04:33 +00:00
timezone.cpp added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
timezone.h added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
timezones.cpp added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
timezones.h added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
ugcontainer.h added: winix function: rmuser 2012-03-09 02:36:25 +00:00
user.cpp added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
user.h added: winix functions: locale, timezone 2012-06-26 23:19:19 +00:00
users.cpp added: TimeZone struct (core) 2012-05-30 19:04:18 +00:00
users.h added: TimeZone struct (core) 2012-05-30 19:04:18 +00:00
version.h removed: ezn patterns for rawcontent and ajaxcontent: 2013-11-14 20:59:23 +00:00