changed the way how the request's answer is created,

now winix can return json, xml, csv from out_main_stream or from frames and json from models

removed from Request:
  bool send_bin_stream
  bool return_json
  bool return_info_only
  pt::Space info
  bool page_generated
  bool out_main_stream_use_html_filter
  bool out_streams_use_html_filter

added to Request:
  enum AnswerSource
  enum AnswerContainer
  AnswerSource answer_source
  AnswerContainer answer_container
  bool use_ezc_engine
  std::wstring frame
  bool send_all_frames
  bool use_html_filter

added to Config:
 // the name of the url parameter for returning all frames, e.g. https://domain.tld/mydir/myfunction/allframes
 // default: allframes
 std::wstring request_all_frames_parameter;

 // the name of the root element when serializing request answer to xml
 // default: winix
 std::wstring xml_root;

algorithm (the whole algorithm is described in core/request.h):
at the beginning of a request winix sets
   answer_source to models
   answer_container to text
   use_ezc_engine to true

next answer_container and use_ezc_engine can be changed in the following way:

1. winix will look for 'Accept' http header and depending on the header winix will set:
   (not implemented yet)

             Accept | answer_container | use_ezc_engine
	     ------------------------------------|-----------------
	     application/json | json             | false
	      application/xml | xml              | false
	              text/csv | csv              | false

2. next answer_container is set depending on 'container' url parameter
       container | answer_container
 ---------------------------------------------------------
     not present | don't change the value
            text | text
            json | json
             xml | xml
             csv | csv

use_ezc_engine is set depending on 'answer' url parameter:
          answer | use_ezc_engine
 ---------------------------------
     not present | don't change the value
            html | true
            data | false

if 'answer' is html then we take into account two more parameters:
 frame: frame_name (empty default) - if set then winix returns this specific frame
 allframes: (if present then winix returns all frames)
This commit is contained in:
2021-10-13 01:27:14 +02:00
parent 3e46c5674c
commit d5ebb7ca12
42 changed files with 1085 additions and 599 deletions

View File

@@ -10,15 +10,15 @@ acceptbaseparser.o: ../../../pikotools/src/utf8/utf8.h
acceptbaseparser.o: ../../../pikotools/src/textstream/stream.h
acceptbaseparser.o: ../../../pikotools/src/utf8/utf8_templates.h
acceptbaseparser.o: ../../../pikotools/src/utf8/utf8_private.h
acceptbaseparser.o: ../../../pikotools/src/convert/baseparser.h log.h
acceptbaseparser.o: logmanipulators.h ../../../pikotools/src/log/log.h
acceptbaseparser.o: ../../../pikotools/src/convert/baseparser.h
acceptbaseparser.o: ../../../pikotools/src/textstream/textstream.h
acceptbaseparser.o: ../../../pikotools/src/textstream/stream.h
acceptbaseparser.o: ../../../pikotools/src/space/space.h
acceptbaseparser.o: ../../../pikotools/src/date/date.h
acceptbaseparser.o: ../../../pikotools/src/membuffer/membuffer.h
acceptbaseparser.o: ../../../pikotools/src/textstream/types.h filelog.h
acceptbaseparser.o: ../../../winix/winixd/core/synchro.h
acceptbaseparser.o: ../../../pikotools/src/textstream/types.h log.h
acceptbaseparser.o: logmanipulators.h ../../../pikotools/src/log/log.h
acceptbaseparser.o: filelog.h ../../../winix/winixd/core/synchro.h
acceptbaseparser.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
acceptbaseparser.o: ../../../morm/src/model.h
acceptbaseparser.o: ../../../morm/src/modelconnector.h
@@ -212,14 +212,14 @@ basethread.o: ../../../pikotools/src/utf8/utf8.h
basethread.o: ../../../pikotools/src/textstream/stream.h
basethread.o: ../../../pikotools/src/utf8/utf8_templates.h
basethread.o: ../../../pikotools/src/utf8/utf8_private.h
basethread.o: ../../../pikotools/src/convert/baseparser.h log.h
basethread.o: logmanipulators.h ../../../pikotools/src/log/log.h
basethread.o: ../../../pikotools/src/convert/baseparser.h
basethread.o: ../../../pikotools/src/textstream/textstream.h
basethread.o: ../../../pikotools/src/textstream/stream.h
basethread.o: ../../../pikotools/src/space/space.h
basethread.o: ../../../pikotools/src/date/date.h
basethread.o: ../../../pikotools/src/membuffer/membuffer.h
basethread.o: ../../../pikotools/src/textstream/types.h filelog.h
basethread.o: ../../../pikotools/src/textstream/types.h log.h
basethread.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
basethread.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
basethread.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
basethread.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -352,14 +352,14 @@ crypt.o: ../../../pikotools/src/utf8/utf8.h
crypt.o: ../../../pikotools/src/textstream/stream.h
crypt.o: ../../../pikotools/src/utf8/utf8_templates.h
crypt.o: ../../../pikotools/src/utf8/utf8_private.h
crypt.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
crypt.o: ../../../pikotools/src/log/log.h
crypt.o: ../../../pikotools/src/convert/baseparser.h
crypt.o: ../../../pikotools/src/textstream/textstream.h
crypt.o: ../../../pikotools/src/textstream/stream.h
crypt.o: ../../../pikotools/src/space/space.h
crypt.o: ../../../pikotools/src/date/date.h
crypt.o: ../../../pikotools/src/membuffer/membuffer.h
crypt.o: ../../../pikotools/src/textstream/types.h filelog.h
crypt.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
crypt.o: ../../../pikotools/src/log/log.h filelog.h
crypt.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
crypt.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
crypt.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -412,14 +412,14 @@ dircontainer.o: ../../../pikotools/src/utf8/utf8.h
dircontainer.o: ../../../pikotools/src/textstream/stream.h
dircontainer.o: ../../../pikotools/src/utf8/utf8_templates.h
dircontainer.o: ../../../pikotools/src/utf8/utf8_private.h
dircontainer.o: ../../../pikotools/src/convert/baseparser.h log.h
dircontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h
dircontainer.o: ../../../pikotools/src/convert/baseparser.h
dircontainer.o: ../../../pikotools/src/textstream/textstream.h
dircontainer.o: ../../../pikotools/src/textstream/stream.h
dircontainer.o: ../../../pikotools/src/space/space.h
dircontainer.o: ../../../pikotools/src/date/date.h
dircontainer.o: ../../../pikotools/src/membuffer/membuffer.h
dircontainer.o: ../../../pikotools/src/textstream/types.h filelog.h
dircontainer.o: ../../../pikotools/src/textstream/types.h log.h
dircontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
dircontainer.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
dircontainer.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
dircontainer.o: ../../../morm/src/modelconnector.h
@@ -477,14 +477,14 @@ dirs.o: ../../../pikotools/src/utf8/utf8.h
dirs.o: ../../../pikotools/src/textstream/stream.h
dirs.o: ../../../pikotools/src/utf8/utf8_templates.h
dirs.o: ../../../pikotools/src/utf8/utf8_private.h
dirs.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
dirs.o: ../../../pikotools/src/log/log.h
dirs.o: ../../../pikotools/src/convert/baseparser.h
dirs.o: ../../../pikotools/src/textstream/textstream.h
dirs.o: ../../../pikotools/src/textstream/stream.h
dirs.o: ../../../pikotools/src/space/space.h
dirs.o: ../../../pikotools/src/date/date.h
dirs.o: ../../../pikotools/src/membuffer/membuffer.h
dirs.o: ../../../pikotools/src/textstream/types.h filelog.h
dirs.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
dirs.o: ../../../pikotools/src/log/log.h filelog.h
dirs.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
dirs.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
dirs.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -667,15 +667,15 @@ httpsimpleparser.o: ../../../pikotools/src/utf8/utf8.h
httpsimpleparser.o: ../../../pikotools/src/textstream/stream.h
httpsimpleparser.o: ../../../pikotools/src/utf8/utf8_templates.h
httpsimpleparser.o: ../../../pikotools/src/utf8/utf8_private.h
httpsimpleparser.o: ../../../pikotools/src/convert/baseparser.h log.h
httpsimpleparser.o: logmanipulators.h ../../../pikotools/src/log/log.h
httpsimpleparser.o: ../../../pikotools/src/convert/baseparser.h
httpsimpleparser.o: ../../../pikotools/src/textstream/textstream.h
httpsimpleparser.o: ../../../pikotools/src/textstream/stream.h
httpsimpleparser.o: ../../../pikotools/src/space/space.h
httpsimpleparser.o: ../../../pikotools/src/date/date.h
httpsimpleparser.o: ../../../pikotools/src/membuffer/membuffer.h
httpsimpleparser.o: ../../../pikotools/src/textstream/types.h filelog.h
httpsimpleparser.o: ../../../winix/winixd/core/synchro.h
httpsimpleparser.o: ../../../pikotools/src/textstream/types.h log.h
httpsimpleparser.o: logmanipulators.h ../../../pikotools/src/log/log.h
httpsimpleparser.o: filelog.h ../../../winix/winixd/core/synchro.h
httpsimpleparser.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
httpsimpleparser.o: ../../../morm/src/model.h
httpsimpleparser.o: ../../../morm/src/modelconnector.h
@@ -723,14 +723,14 @@ image.o: ../../../pikotools/src/utf8/utf8.h
image.o: ../../../pikotools/src/textstream/stream.h
image.o: ../../../pikotools/src/utf8/utf8_templates.h
image.o: ../../../pikotools/src/utf8/utf8_private.h
image.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
image.o: ../../../pikotools/src/log/log.h
image.o: ../../../pikotools/src/convert/baseparser.h
image.o: ../../../pikotools/src/textstream/textstream.h
image.o: ../../../pikotools/src/textstream/stream.h
image.o: ../../../pikotools/src/space/space.h
image.o: ../../../pikotools/src/date/date.h
image.o: ../../../pikotools/src/membuffer/membuffer.h
image.o: ../../../pikotools/src/textstream/types.h filelog.h
image.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
image.o: ../../../pikotools/src/log/log.h filelog.h
image.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
image.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
image.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -810,15 +810,15 @@ ipbancontainer.o: ../../../pikotools/src/utf8/utf8.h
ipbancontainer.o: ../../../pikotools/src/textstream/stream.h
ipbancontainer.o: ../../../pikotools/src/utf8/utf8_templates.h
ipbancontainer.o: ../../../pikotools/src/utf8/utf8_private.h
ipbancontainer.o: ../../../pikotools/src/convert/baseparser.h log.h
ipbancontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h
ipbancontainer.o: ../../../pikotools/src/convert/baseparser.h
ipbancontainer.o: ../../../pikotools/src/textstream/textstream.h
ipbancontainer.o: ../../../pikotools/src/textstream/stream.h
ipbancontainer.o: ../../../pikotools/src/space/space.h
ipbancontainer.o: ../../../pikotools/src/date/date.h
ipbancontainer.o: ../../../pikotools/src/membuffer/membuffer.h
ipbancontainer.o: ../../../pikotools/src/textstream/types.h filelog.h
ipbancontainer.o: ../../../winix/winixd/core/synchro.h
ipbancontainer.o: ../../../pikotools/src/textstream/types.h log.h
ipbancontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h
ipbancontainer.o: filelog.h ../../../winix/winixd/core/synchro.h
ipbancontainer.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
ipbancontainer.o: ../../../morm/src/model.h
ipbancontainer.o: ../../../morm/src/modelconnector.h
@@ -857,14 +857,14 @@ job.o: ../../../pikotools/src/utf8/utf8.h
job.o: ../../../pikotools/src/textstream/stream.h
job.o: ../../../pikotools/src/utf8/utf8_templates.h
job.o: ../../../pikotools/src/utf8/utf8_private.h
job.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
job.o: ../../../pikotools/src/log/log.h
job.o: ../../../pikotools/src/convert/baseparser.h
job.o: ../../../pikotools/src/textstream/textstream.h
job.o: ../../../pikotools/src/textstream/stream.h
job.o: ../../../pikotools/src/space/space.h
job.o: ../../../pikotools/src/date/date.h
job.o: ../../../pikotools/src/membuffer/membuffer.h
job.o: ../../../pikotools/src/textstream/types.h filelog.h
job.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
job.o: ../../../pikotools/src/log/log.h filelog.h
job.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
job.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
job.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -895,13 +895,13 @@ lastcontainer.o: ../../../pikotools/src/utf8/utf8.h
lastcontainer.o: ../../../pikotools/src/textstream/stream.h
lastcontainer.o: ../../../pikotools/src/utf8/utf8_templates.h
lastcontainer.o: ../../../pikotools/src/utf8/utf8_private.h
lastcontainer.o: ../../../pikotools/src/convert/baseparser.h log.h
lastcontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h
lastcontainer.o: ../../../pikotools/src/convert/baseparser.h
lastcontainer.o: ../../../pikotools/src/textstream/textstream.h
lastcontainer.o: ../../../pikotools/src/textstream/stream.h
lastcontainer.o: ../../../pikotools/src/space/space.h
lastcontainer.o: ../../../pikotools/src/membuffer/membuffer.h
lastcontainer.o: ../../../pikotools/src/textstream/types.h filelog.h
lastcontainer.o: ../../../pikotools/src/textstream/types.h log.h
lastcontainer.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
lastcontainer.o: ../../../winix/winixd/core/synchro.h
lastcontainer.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
lastcontainer.o: ../../../morm/src/model.h ../../../morm/src/modelconnector.h
@@ -943,14 +943,14 @@ loadavg.o: ../../../pikotools/src/utf8/utf8.h
loadavg.o: ../../../pikotools/src/textstream/stream.h
loadavg.o: ../../../pikotools/src/utf8/utf8_templates.h
loadavg.o: ../../../pikotools/src/utf8/utf8_private.h
loadavg.o: ../../../pikotools/src/convert/baseparser.h log.h
loadavg.o: logmanipulators.h ../../../pikotools/src/log/log.h
loadavg.o: ../../../pikotools/src/convert/baseparser.h
loadavg.o: ../../../pikotools/src/textstream/textstream.h
loadavg.o: ../../../pikotools/src/textstream/stream.h
loadavg.o: ../../../pikotools/src/space/space.h
loadavg.o: ../../../pikotools/src/date/date.h
loadavg.o: ../../../pikotools/src/membuffer/membuffer.h
loadavg.o: ../../../pikotools/src/textstream/types.h filelog.h
loadavg.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
loadavg.o: ../../../pikotools/src/log/log.h filelog.h
loadavg.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
loadavg.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
loadavg.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1138,14 +1138,14 @@ mountparser.o: ../../../pikotools/src/utf8/utf8.h
mountparser.o: ../../../pikotools/src/textstream/stream.h
mountparser.o: ../../../pikotools/src/utf8/utf8_templates.h
mountparser.o: ../../../pikotools/src/utf8/utf8_private.h
mountparser.o: ../../../pikotools/src/convert/baseparser.h log.h
mountparser.o: logmanipulators.h ../../../pikotools/src/log/log.h
mountparser.o: ../../../pikotools/src/convert/baseparser.h
mountparser.o: ../../../pikotools/src/textstream/textstream.h
mountparser.o: ../../../pikotools/src/textstream/stream.h
mountparser.o: ../../../pikotools/src/space/space.h
mountparser.o: ../../../pikotools/src/date/date.h
mountparser.o: ../../../pikotools/src/membuffer/membuffer.h
mountparser.o: ../../../pikotools/src/textstream/types.h filelog.h
mountparser.o: ../../../pikotools/src/textstream/types.h log.h
mountparser.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
mountparser.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
mountparser.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
mountparser.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1217,14 +1217,14 @@ mounts.o: ../../../pikotools/src/utf8/utf8.h
mounts.o: ../../../pikotools/src/textstream/stream.h
mounts.o: ../../../pikotools/src/utf8/utf8_templates.h
mounts.o: ../../../pikotools/src/utf8/utf8_private.h
mounts.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
mounts.o: ../../../pikotools/src/log/log.h
mounts.o: ../../../pikotools/src/convert/baseparser.h
mounts.o: ../../../pikotools/src/textstream/textstream.h
mounts.o: ../../../pikotools/src/textstream/stream.h
mounts.o: ../../../pikotools/src/space/space.h
mounts.o: ../../../pikotools/src/date/date.h
mounts.o: ../../../pikotools/src/membuffer/membuffer.h
mounts.o: ../../../pikotools/src/textstream/types.h filelog.h
mounts.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
mounts.o: ../../../pikotools/src/log/log.h filelog.h
mounts.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
mounts.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
mounts.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1291,14 +1291,14 @@ plugin.o: ../../../pikotools/src/utf8/utf8.h
plugin.o: ../../../pikotools/src/textstream/stream.h
plugin.o: ../../../pikotools/src/utf8/utf8_templates.h
plugin.o: ../../../pikotools/src/utf8/utf8_private.h
plugin.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
plugin.o: ../../../pikotools/src/log/log.h
plugin.o: ../../../pikotools/src/convert/baseparser.h
plugin.o: ../../../pikotools/src/textstream/textstream.h
plugin.o: ../../../pikotools/src/textstream/stream.h
plugin.o: ../../../pikotools/src/space/space.h
plugin.o: ../../../pikotools/src/date/date.h
plugin.o: ../../../pikotools/src/membuffer/membuffer.h
plugin.o: ../../../pikotools/src/textstream/types.h filelog.h
plugin.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
plugin.o: ../../../pikotools/src/log/log.h filelog.h
plugin.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
plugin.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
plugin.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1439,14 +1439,14 @@ plugindata.o: ../../../pikotools/src/utf8/utf8.h
plugindata.o: ../../../pikotools/src/textstream/stream.h
plugindata.o: ../../../pikotools/src/utf8/utf8_templates.h
plugindata.o: ../../../pikotools/src/utf8/utf8_private.h
plugindata.o: ../../../pikotools/src/convert/baseparser.h log.h
plugindata.o: logmanipulators.h ../../../pikotools/src/log/log.h
plugindata.o: ../../../pikotools/src/convert/baseparser.h
plugindata.o: ../../../pikotools/src/textstream/textstream.h
plugindata.o: ../../../pikotools/src/textstream/stream.h
plugindata.o: ../../../pikotools/src/space/space.h
plugindata.o: ../../../pikotools/src/date/date.h
plugindata.o: ../../../pikotools/src/membuffer/membuffer.h
plugindata.o: ../../../pikotools/src/textstream/types.h filelog.h
plugindata.o: ../../../pikotools/src/textstream/types.h log.h
plugindata.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
plugindata.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
plugindata.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
plugindata.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1688,14 +1688,14 @@ run.o: ../../../pikotools/src/utf8/utf8.h
run.o: ../../../pikotools/src/textstream/stream.h
run.o: ../../../pikotools/src/utf8/utf8_templates.h
run.o: ../../../pikotools/src/utf8/utf8_private.h
run.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
run.o: ../../../pikotools/src/log/log.h
run.o: ../../../pikotools/src/convert/baseparser.h
run.o: ../../../pikotools/src/textstream/textstream.h
run.o: ../../../pikotools/src/textstream/stream.h
run.o: ../../../pikotools/src/space/space.h
run.o: ../../../pikotools/src/date/date.h
run.o: ../../../pikotools/src/membuffer/membuffer.h
run.o: ../../../pikotools/src/textstream/types.h filelog.h
run.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
run.o: ../../../pikotools/src/log/log.h filelog.h
run.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
run.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
run.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -1867,14 +1867,14 @@ sessionidmanager.o: ../../../pikotools/src/utf8/utf8.h
sessionidmanager.o: ../../../pikotools/src/textstream/stream.h
sessionidmanager.o: ../../../pikotools/src/utf8/utf8_templates.h
sessionidmanager.o: ../../../pikotools/src/utf8/utf8_private.h
sessionidmanager.o: ../../../pikotools/src/convert/baseparser.h log.h
sessionidmanager.o: logmanipulators.h ../../../pikotools/src/log/log.h
sessionidmanager.o: ../../../pikotools/src/convert/baseparser.h
sessionidmanager.o: ../../../pikotools/src/textstream/textstream.h
sessionidmanager.o: ../../../pikotools/src/textstream/stream.h
sessionidmanager.o: ../../../pikotools/src/date/date.h
sessionidmanager.o: ../../../pikotools/src/membuffer/membuffer.h
sessionidmanager.o: ../../../pikotools/src/textstream/types.h filelog.h
sessionidmanager.o: ../../../winix/winixd/core/synchro.h
sessionidmanager.o: ../../../pikotools/src/textstream/types.h log.h
sessionidmanager.o: logmanipulators.h ../../../pikotools/src/log/log.h
sessionidmanager.o: filelog.h ../../../winix/winixd/core/synchro.h
sessionidmanager.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
sessionidmanager.o: ../../../morm/src/model.h
sessionidmanager.o: ../../../morm/src/modelconnector.h
@@ -2176,14 +2176,14 @@ system.o: ../../../pikotools/src/utf8/utf8.h
system.o: ../../../pikotools/src/textstream/stream.h
system.o: ../../../pikotools/src/utf8/utf8_templates.h
system.o: ../../../pikotools/src/utf8/utf8_private.h
system.o: ../../../pikotools/src/convert/baseparser.h log.h logmanipulators.h
system.o: ../../../pikotools/src/log/log.h
system.o: ../../../pikotools/src/convert/baseparser.h
system.o: ../../../pikotools/src/textstream/textstream.h
system.o: ../../../pikotools/src/textstream/stream.h
system.o: ../../../pikotools/src/space/space.h
system.o: ../../../pikotools/src/date/date.h
system.o: ../../../pikotools/src/membuffer/membuffer.h
system.o: ../../../pikotools/src/textstream/types.h filelog.h
system.o: ../../../pikotools/src/textstream/types.h log.h logmanipulators.h
system.o: ../../../pikotools/src/log/log.h filelog.h
system.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
system.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
system.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -2322,14 +2322,14 @@ threadmanager.o: ../../../pikotools/src/utf8/utf8.h
threadmanager.o: ../../../pikotools/src/textstream/stream.h
threadmanager.o: ../../../pikotools/src/utf8/utf8_templates.h
threadmanager.o: ../../../pikotools/src/utf8/utf8_private.h
threadmanager.o: ../../../pikotools/src/convert/baseparser.h log.h
threadmanager.o: logmanipulators.h ../../../pikotools/src/log/log.h
threadmanager.o: ../../../pikotools/src/convert/baseparser.h
threadmanager.o: ../../../pikotools/src/textstream/textstream.h
threadmanager.o: ../../../pikotools/src/textstream/stream.h
threadmanager.o: ../../../pikotools/src/space/space.h
threadmanager.o: ../../../pikotools/src/date/date.h
threadmanager.o: ../../../pikotools/src/membuffer/membuffer.h
threadmanager.o: ../../../pikotools/src/textstream/types.h filelog.h
threadmanager.o: ../../../pikotools/src/textstream/types.h log.h
threadmanager.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
threadmanager.o: ../../../winix/winixd/core/synchro.h
threadmanager.o: ../../../morm/src/morm.h ../../../morm/src/morm_types.h
threadmanager.o: ../../../morm/src/model.h ../../../morm/src/modelconnector.h
@@ -2384,13 +2384,13 @@ timezones.o: ../../../pikotools/src/utf8/utf8.h
timezones.o: ../../../pikotools/src/textstream/stream.h
timezones.o: ../../../pikotools/src/utf8/utf8_templates.h
timezones.o: ../../../pikotools/src/utf8/utf8_private.h
timezones.o: ../../../pikotools/src/convert/baseparser.h winixbase.h
timezones.o: ../../../winix/winixd/core/config.h log.h logmanipulators.h
timezones.o: ../../../pikotools/src/log/log.h
timezones.o: ../../../pikotools/src/convert/baseparser.h
timezones.o: ../../../pikotools/src/textstream/textstream.h
timezones.o: ../../../pikotools/src/textstream/stream.h
timezones.o: ../../../pikotools/src/membuffer/membuffer.h
timezones.o: ../../../pikotools/src/textstream/types.h filelog.h
timezones.o: ../../../pikotools/src/textstream/types.h winixbase.h
timezones.o: ../../../winix/winixd/core/config.h log.h logmanipulators.h
timezones.o: ../../../pikotools/src/log/log.h filelog.h
timezones.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
timezones.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
timezones.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -2518,14 +2518,14 @@ winixbase.o: ../../../pikotools/src/utf8/utf8.h
winixbase.o: ../../../pikotools/src/textstream/stream.h
winixbase.o: ../../../pikotools/src/utf8/utf8_templates.h
winixbase.o: ../../../pikotools/src/utf8/utf8_private.h
winixbase.o: ../../../pikotools/src/convert/baseparser.h log.h
winixbase.o: logmanipulators.h ../../../pikotools/src/log/log.h
winixbase.o: ../../../pikotools/src/convert/baseparser.h
winixbase.o: ../../../pikotools/src/textstream/textstream.h
winixbase.o: ../../../pikotools/src/textstream/stream.h
winixbase.o: ../../../pikotools/src/space/space.h
winixbase.o: ../../../pikotools/src/date/date.h
winixbase.o: ../../../pikotools/src/membuffer/membuffer.h
winixbase.o: ../../../pikotools/src/textstream/types.h filelog.h
winixbase.o: ../../../pikotools/src/textstream/types.h log.h
winixbase.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
winixbase.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
winixbase.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
winixbase.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h
@@ -2559,15 +2559,15 @@ winixmodeldeprecated.o: ../../../pikotools/src/utf8/utf8.h
winixmodeldeprecated.o: ../../../pikotools/src/textstream/stream.h
winixmodeldeprecated.o: ../../../pikotools/src/utf8/utf8_templates.h
winixmodeldeprecated.o: ../../../pikotools/src/utf8/utf8_private.h
winixmodeldeprecated.o: ../../../pikotools/src/convert/baseparser.h log.h
winixmodeldeprecated.o: logmanipulators.h ../../../pikotools/src/log/log.h
winixmodeldeprecated.o: ../../../pikotools/src/convert/baseparser.h
winixmodeldeprecated.o: ../../../pikotools/src/textstream/textstream.h
winixmodeldeprecated.o: ../../../pikotools/src/textstream/stream.h
winixmodeldeprecated.o: ../../../pikotools/src/space/space.h
winixmodeldeprecated.o: ../../../pikotools/src/date/date.h
winixmodeldeprecated.o: ../../../pikotools/src/membuffer/membuffer.h
winixmodeldeprecated.o: ../../../pikotools/src/textstream/types.h filelog.h
winixmodeldeprecated.o: ../../../winix/winixd/core/synchro.h
winixmodeldeprecated.o: ../../../pikotools/src/textstream/types.h log.h
winixmodeldeprecated.o: logmanipulators.h ../../../pikotools/src/log/log.h
winixmodeldeprecated.o: filelog.h ../../../winix/winixd/core/synchro.h
winixmodeldeprecated.o: ../../../morm/src/morm.h
winixmodeldeprecated.o: ../../../morm/src/morm_types.h
winixmodeldeprecated.o: ../../../morm/src/model.h
@@ -2611,14 +2611,14 @@ winixsystem.o: ../../../pikotools/src/utf8/utf8.h
winixsystem.o: ../../../pikotools/src/textstream/stream.h
winixsystem.o: ../../../pikotools/src/utf8/utf8_templates.h
winixsystem.o: ../../../pikotools/src/utf8/utf8_private.h
winixsystem.o: ../../../pikotools/src/convert/baseparser.h log.h
winixsystem.o: logmanipulators.h ../../../pikotools/src/log/log.h
winixsystem.o: ../../../pikotools/src/convert/baseparser.h
winixsystem.o: ../../../pikotools/src/textstream/textstream.h
winixsystem.o: ../../../pikotools/src/textstream/stream.h
winixsystem.o: ../../../pikotools/src/space/space.h
winixsystem.o: ../../../pikotools/src/date/date.h
winixsystem.o: ../../../pikotools/src/membuffer/membuffer.h
winixsystem.o: ../../../pikotools/src/textstream/types.h filelog.h
winixsystem.o: ../../../pikotools/src/textstream/types.h log.h
winixsystem.o: logmanipulators.h ../../../pikotools/src/log/log.h filelog.h
winixsystem.o: ../../../winix/winixd/core/synchro.h ../../../morm/src/morm.h
winixsystem.o: ../../../morm/src/morm_types.h ../../../morm/src/model.h
winixsystem.o: ../../../morm/src/modelconnector.h ../../../morm/src/clearer.h