From 973d804db2178b5ed67d00f8380009682e0ea415 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Sun, 8 Jan 2012 03:59:51 +0000 Subject: [PATCH] added: TextStream<> DbTextStream<> and HtmlTextStream<> have operator<<(Space&) now added: to db: bool DbBase::AssertValueSpace(PGresult * r, int row, int col, Space & space, bool split_single) added: environment variables for users User::env (of type Space) and User::aenv (of type Space) for admin variables (can be changed only by a super user) added: winix function 'env' for changing User::env and User::aenv ('env' winix function with a 'a' parameter) git-svn-id: svn://ttmath.org/publicrep/winix/trunk@790 e52654a7-88a9-db11-a3e9-0013d4bc506e --- Makefile | 19 +- core/Makefile.dep | 149 ++++---- core/confparser.h | 5 +- core/textstream.h | 28 +- core/user.h | 15 +- core/users.cpp | 2 + db/Makefile.dep | 26 +- db/db.cpp | 60 +++- db/db.h | 14 +- db/dbbase.cpp | 34 +- db/dbbase.h | 8 +- db/dbitemcolumns.cpp | 29 +- db/dbitemcolumns.h | 18 +- db/dbtextstream.cpp | 23 +- db/dbtextstream.h | 7 +- functions/Makefile.dep | 657 ++++++++++++++++++----------------- functions/Makefile.o.dep | 2 +- functions/adduser.cpp | 4 +- functions/env.cpp | 183 ++++++++++ functions/env.h | 53 +++ functions/functions.cpp | 3 +- functions/functions.h | 4 +- html/fun_env.html | 43 +++ locale/en | 7 + locale/pl | 7 + main/Makefile.dep | 14 +- notify/Makefile.dep | 86 ++--- plugins/export/Makefile.dep | 77 ++-- plugins/gallery/Makefile.dep | 20 +- plugins/group/Makefile.dep | 13 +- plugins/menu/Makefile.dep | 13 +- plugins/stats/Makefile.dep | 39 +-- plugins/thread/Makefile.dep | 66 ++-- plugins/ticket/Makefile.dep | 268 +++++++------- templates/Makefile.dep | 245 +++++++------ templates/Makefile.o.dep | 2 +- templates/env.cpp | 110 ++++++ templates/htmltextstream.cpp | 18 +- templates/htmltextstream.h | 8 +- templates/templates.cpp | 50 ++- templates/templates.h | 22 +- templates/user.cpp | 37 ++ 42 files changed, 1587 insertions(+), 901 deletions(-) create mode 100755 functions/env.cpp create mode 100755 functions/env.h create mode 100755 html/fun_env.html create mode 100755 templates/env.cpp diff --git a/Makefile b/Makefile index fba6ece..366cfb8 100755 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CXX = g++ endif ifndef CXXFLAGS -CXXFLAGS = -fPIC -Wall -pedantic -O2 -I/usr/local/include -I/home/tomek/roboczy/winix -I/home/tomek/roboczy/ezc/src -L/usr/local/lib -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM +CXXFLAGS = -fPIC -Wall -pedantic -O2 -I/usr/local/include -I/home/tomek/roboczy/winix -I/home/tomek/roboczy/ezc/src -I/home/tomek/roboczy/tito/src -L/usr/local/lib -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM endif export CXX @@ -18,13 +18,14 @@ all: winix.so plugins winix winix.so: FORCE - @cd core ; $(MAKE) -e - @cd db ; $(MAKE) -e - @cd functions ; $(MAKE) -e - @cd notify ; $(MAKE) -e - @cd templates ; $(MAKE) -e - @cd ../ezc/src ; $(MAKE) -e - $(CXX) -shared -o winix.so $(CXXFLAGS) core/*.o db/*.o functions/*.o templates/*.o notify/*.o ../ezc/src/ezc.a -lfcgi -lpq -lz -lpthread -lfetch + @cd core ; $(MAKE) -e + @cd db ; $(MAKE) -e + @cd functions ; $(MAKE) -e + @cd notify ; $(MAKE) -e + @cd templates ; $(MAKE) -e + @cd ../ezc/src ; $(MAKE) -e + @cd ../tito/src ; $(MAKE) -e + $(CXX) -shared -rdynamic -Wl,-whole-archive -o winix.so $(CXXFLAGS) core/*.o db/*.o functions/*.o templates/*.o notify/*.o ../ezc/src/ezc.a ../tito/src/tito.a -lfcgi -lpq -lz -lpthread -lfetch -Wl,-no-whole-archive winix: FORCE @@ -61,6 +62,7 @@ clean: @cd plugins/menu ; $(MAKE) -e clean @cd plugins/export ; $(MAKE) -e clean @cd ../ezc/src ; $(MAKE) -e clean + @cd ../tito/src ; $(MAKE) -e clean @cd main ; $(MAKE) -e clean rm -f winix.so rm -f winix @@ -83,6 +85,7 @@ depend: @cd plugins/menu ; $(MAKE) -e depend @cd plugins/export ; $(MAKE) -e depend @cd ../ezc/src ; $(MAKE) -e depend + @cd ../tito/src ; $(MAKE) -e depend @cd main ; $(MAKE) -e depend diff --git a/core/Makefile.dep b/core/Makefile.dep index 8b6d3b8..30946f8 100755 --- a/core/Makefile.dep +++ b/core/Makefile.dep @@ -4,10 +4,10 @@ acceptbaseparser.o: acceptbaseparser.h app.o: app.h config.h confparser.h htmlfilter.h system.h dirs.h item.h app.o: dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h app.o: ../db/dbtextstream.h ../core/textstream.h misc.h requesttypes.h -app.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -app.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h -app.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h log.h -app.o: textstream.h logmanipulators.h slog.h cur.h request.h error.h +app.o: ../core/error.h ../core/confparser.h ../db/dbitemquery.h +app.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h ../core/group.h +app.o: ../core/dircontainer.h ../core/ugcontainer.h log.h textstream.h +app.o: logmanipulators.h slog.h cur.h request.h error.h app.o: ../templates/htmltextstream.h session.h user.h plugindata.h rebus.h app.o: mount.h ../templates/locale.h ../notify/notify.h app.o: ../notify/notifypool.h ../templates/patterns.h ../templates/locale.h @@ -25,13 +25,13 @@ app.o: ../core/system.h ../core/synchro.h ../functions/functionparser.h app.o: ../core/cur.h ../functions/adduser.h ../functions/cat.h app.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h app.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -app.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -app.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -app.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -app.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -app.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -app.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -app.o: ../functions/specialdefault.h ../functions/stat.h +app.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +app.o: ../functions/last.h ../functions/login.h ../functions/logout.h +app.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +app.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +app.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +app.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +app.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h app.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h app.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h app.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h @@ -73,12 +73,12 @@ config.o: ../functions/functionparser.h ../core/cur.h ../functions/adduser.h config.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h config.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h config.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -config.o: ../functions/last.h ../functions/login.h ../functions/logout.h -config.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -config.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -config.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -config.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -config.o: ../functions/sort.h ../functions/specialdefault.h +config.o: ../functions/env.h ../functions/last.h ../functions/login.h +config.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +config.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +config.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +config.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +config.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h config.o: ../functions/stat.h ../functions/subject.h ../functions/template.h config.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h config.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h @@ -100,12 +100,13 @@ dircontainer.o: ../core/textstream.h misc.h session.h user.h plugindata.h dircontainer.o: rebus.h mount.h ../templates/locale.h ../core/confparser.h dirs.o: dirs.h item.h confparser.h dircontainer.h ../db/db.h ../db/dbbase.h dirs.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h -dirs.o: requesttypes.h ../core/error.h ../db/dbitemquery.h ../core/item.h -dirs.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h -dirs.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h log.h -dirs.o: textstream.h logmanipulators.h slog.h cur.h request.h error.h -dirs.o: config.h htmlfilter.h ../templates/htmltextstream.h session.h user.h -dirs.o: plugindata.h rebus.h mount.h ../templates/locale.h ../notify/notify.h +dirs.o: requesttypes.h ../core/error.h ../core/confparser.h +dirs.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h +dirs.o: ../core/user.h ../core/group.h ../core/dircontainer.h +dirs.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h slog.h +dirs.o: cur.h request.h error.h config.h htmlfilter.h +dirs.o: ../templates/htmltextstream.h session.h user.h plugindata.h rebus.h +dirs.o: mount.h ../templates/locale.h ../notify/notify.h dirs.o: ../notify/notifypool.h ../templates/patterns.h ../templates/locale.h dirs.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h dirs.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h @@ -117,8 +118,8 @@ dirs.o: ../templates/misc.h ../templates/htmltextstream.h groups.o: groups.h group.h ugcontainer.h ../db/db.h ../db/dbbase.h groups.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h groups.o: item.h confparser.h requesttypes.h ../core/error.h -groups.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -groups.o: ../core/confparser.h ../core/user.h ../core/group.h +groups.o: ../core/confparser.h ../db/dbitemquery.h ../core/item.h +groups.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h groups.o: ../core/dircontainer.h ../core/ugcontainer.h log.h textstream.h groups.o: logmanipulators.h slog.h cur.h request.h error.h config.h groups.o: htmlfilter.h ../templates/htmltextstream.h session.h user.h @@ -128,8 +129,8 @@ httpsimpleparser.o: httpsimpleparser.h image.o: image.h basethread.h textstream.h ../db/db.h ../db/dbbase.h image.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h image.o: item.h confparser.h requesttypes.h ../core/error.h -image.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -image.o: ../core/confparser.h ../core/user.h ../core/group.h +image.o: ../core/confparser.h ../db/dbitemquery.h ../core/item.h +image.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h image.o: ../core/dircontainer.h ../core/ugcontainer.h log.h logmanipulators.h image.o: slog.h cur.h request.h error.h config.h htmlfilter.h image.o: ../templates/htmltextstream.h session.h user.h plugindata.h rebus.h @@ -151,12 +152,12 @@ image.o: ../functions/functionparser.h ../core/cur.h ../functions/adduser.h image.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h image.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h image.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -image.o: ../functions/last.h ../functions/login.h ../functions/logout.h -image.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -image.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -image.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -image.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -image.o: ../functions/sort.h ../functions/specialdefault.h +image.o: ../functions/env.h ../functions/last.h ../functions/login.h +image.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +image.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +image.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +image.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +image.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h image.o: ../functions/stat.h ../functions/subject.h ../functions/template.h image.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h image.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h @@ -202,8 +203,8 @@ mount.o: mount.h misc.h item.h confparser.h requesttypes.h mountparser.o: mountparser.h mount.h item.h confparser.h dirs.h mountparser.o: dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h mountparser.o: ../db/dbtextstream.h ../core/textstream.h misc.h -mountparser.o: requesttypes.h ../core/error.h ../db/dbitemquery.h -mountparser.o: ../core/item.h ../db/dbitemcolumns.h ../core/confparser.h +mountparser.o: requesttypes.h ../core/error.h ../core/confparser.h +mountparser.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h mountparser.o: ../core/user.h ../core/group.h ../core/dircontainer.h mountparser.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h mountparser.o: slog.h cur.h request.h error.h config.h htmlfilter.h @@ -221,8 +222,8 @@ mountparser.o: ../templates/misc.h ../templates/htmltextstream.h mounts.o: mounts.h mount.h error.h dirs.h item.h confparser.h dircontainer.h mounts.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h mounts.o: ../core/textstream.h misc.h requesttypes.h ../core/error.h -mounts.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -mounts.o: ../core/confparser.h ../core/user.h ../core/group.h +mounts.o: ../core/confparser.h ../db/dbitemquery.h ../core/item.h +mounts.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h mounts.o: ../core/dircontainer.h ../core/ugcontainer.h log.h textstream.h mounts.o: logmanipulators.h slog.h cur.h request.h config.h htmlfilter.h mounts.o: ../templates/htmltextstream.h session.h user.h plugindata.h rebus.h @@ -244,12 +245,12 @@ mounts.o: ../functions/functionparser.h ../core/cur.h ../functions/adduser.h mounts.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h mounts.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h mounts.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -mounts.o: ../functions/last.h ../functions/login.h ../functions/logout.h -mounts.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -mounts.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -mounts.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -mounts.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -mounts.o: ../functions/sort.h ../functions/specialdefault.h +mounts.o: ../functions/env.h ../functions/last.h ../functions/login.h +mounts.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +mounts.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +mounts.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +mounts.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +mounts.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h mounts.o: ../functions/stat.h ../functions/subject.h ../functions/template.h mounts.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h mounts.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h @@ -283,12 +284,12 @@ plugin.o: ../functions/functionparser.h ../core/cur.h ../functions/adduser.h plugin.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h plugin.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h plugin.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -plugin.o: ../functions/last.h ../functions/login.h ../functions/logout.h -plugin.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -plugin.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -plugin.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -plugin.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -plugin.o: ../functions/sort.h ../functions/specialdefault.h +plugin.o: ../functions/env.h ../functions/last.h ../functions/login.h +plugin.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +plugin.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +plugin.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +plugin.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +plugin.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h plugin.o: ../functions/stat.h ../functions/subject.h ../functions/template.h plugin.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h plugin.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h @@ -324,12 +325,12 @@ plugindata.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h plugindata.o: ../functions/privchanger.h ../functions/chown.h plugindata.o: ../functions/ckeditor.h ../functions/cp.h plugindata.o: ../functions/default.h ../functions/download.h -plugindata.o: ../functions/emacs.h ../functions/last.h ../functions/login.h -plugindata.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -plugindata.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -plugindata.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -plugindata.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h -plugindata.o: ../functions/rm.h ../functions/sort.h +plugindata.o: ../functions/emacs.h ../functions/env.h ../functions/last.h +plugindata.o: ../functions/login.h ../functions/logout.h ../functions/ln.h +plugindata.o: ../functions/ls.h ../functions/man.h ../functions/meta.h +plugindata.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h +plugindata.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h +plugindata.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h plugindata.o: ../functions/specialdefault.h ../functions/stat.h plugindata.o: ../functions/subject.h ../functions/template.h plugindata.o: ../functions/tinymce.h ../functions/uname.h @@ -377,12 +378,12 @@ request.o: ../functions/functionparser.h ../core/cur.h ../functions/adduser.h request.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h request.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h request.o: ../functions/default.h ../functions/download.h -request.o: ../functions/emacs.h ../functions/last.h ../functions/login.h -request.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -request.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -request.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -request.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h -request.o: ../functions/rm.h ../functions/sort.h +request.o: ../functions/emacs.h ../functions/env.h ../functions/last.h +request.o: ../functions/login.h ../functions/logout.h ../functions/ln.h +request.o: ../functions/ls.h ../functions/man.h ../functions/meta.h +request.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h +request.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h +request.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h request.o: ../functions/specialdefault.h ../functions/stat.h request.o: ../functions/subject.h ../functions/template.h request.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h @@ -411,8 +412,8 @@ sessionmanager.o: htmlfilter.h ../templates/htmltextstream.h sessionmanager.o: ../core/textstream.h misc.h mount.h lastcontainer.h sessionmanager.o: system.h dirs.h dircontainer.h ../db/db.h ../db/dbbase.h sessionmanager.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -sessionmanager.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -sessionmanager.o: ../core/confparser.h ../core/user.h ../core/group.h +sessionmanager.o: ../core/confparser.h ../db/dbitemquery.h ../core/item.h +sessionmanager.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h sessionmanager.o: ../core/dircontainer.h ../core/ugcontainer.h log.h sessionmanager.o: logmanipulators.h slog.h ../templates/locale.h sessionmanager.o: ../notify/notify.h ../notify/notifypool.h @@ -436,7 +437,7 @@ sessionmanager.o: ../functions/chmod.h ../functions/privchanger.h sessionmanager.o: ../functions/chown.h ../functions/ckeditor.h sessionmanager.o: ../functions/cp.h ../functions/default.h sessionmanager.o: ../functions/download.h ../functions/emacs.h -sessionmanager.o: ../functions/last.h ../functions/login.h +sessionmanager.o: ../functions/env.h ../functions/last.h ../functions/login.h sessionmanager.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h sessionmanager.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h sessionmanager.o: ../functions/mv.h ../functions/nicedit.h @@ -465,8 +466,8 @@ synchro.o: synchro.h system.o: system.h dirs.h item.h confparser.h dircontainer.h ../db/db.h system.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h system.o: ../core/textstream.h misc.h requesttypes.h ../core/error.h -system.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -system.o: ../core/confparser.h ../core/user.h ../core/group.h +system.o: ../core/confparser.h ../db/dbitemquery.h ../core/item.h +system.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h system.o: ../core/dircontainer.h ../core/ugcontainer.h log.h textstream.h system.o: logmanipulators.h slog.h cur.h request.h error.h config.h system.o: htmlfilter.h ../templates/htmltextstream.h session.h user.h @@ -490,14 +491,14 @@ system.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h system.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h system.o: ../functions/privchanger.h ../functions/chown.h system.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -system.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -system.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -system.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -system.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -system.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -system.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -system.o: ../functions/specialdefault.h ../functions/stat.h -system.o: ../functions/subject.h ../functions/template.h +system.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +system.o: ../functions/last.h ../functions/login.h ../functions/logout.h +system.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +system.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +system.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +system.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +system.o: ../functions/sort.h ../functions/specialdefault.h +system.o: ../functions/stat.h ../functions/subject.h ../functions/template.h system.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h system.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h system.o: plugin.h pluginmsg.h sessionmanager.h sessioncontainer.h diff --git a/core/confparser.h b/core/confparser.h index f471551..3ad33a1 100755 --- a/core/confparser.h +++ b/core/confparser.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -233,8 +233,7 @@ public: /* - printing the content - (for debug purposes) + serialize the content */ template void Serialize(Stream & out, bool use_indents = false, bool use_comments = false, int level = 0) const; diff --git a/core/textstream.h b/core/textstream.h index ee8f4c6..f0465d2 100755 --- a/core/textstream.h +++ b/core/textstream.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -12,6 +12,7 @@ #include #include "misc.h" +#include "confparser.h" /* @@ -55,6 +56,9 @@ public: TextStream & operator<<(unsigned long); TextStream & operator<<(double); TextStream & operator<<(const void *);// printing a pointer + TextStream & operator<<(const Space * space); + TextStream & operator<<(const Space & space); + TextStream & Write(const char * buf, size_t len); TextStream & Write(const wchar_t * buf, size_t len); @@ -64,7 +68,7 @@ public: protected: StringType buffer; - + std::wstring space_str; // for using with spaces }; @@ -301,5 +305,25 @@ TextStream & TextStream::write(const wchar_t * buf, size return Write(buf, len); } + +template +TextStream & TextStream::operator<<(const Space * space) +{ + // !! check me pls + space->Serialize(*this, true, false); + + return *this; +} + + +template +TextStream & TextStream::operator<<(const Space & space) +{ + return operator<<(&space); +} + + + + #endif diff --git a/core/user.h b/core/user.h index 3ac470a..91735f4 100755 --- a/core/user.h +++ b/core/user.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -12,6 +12,7 @@ #include #include +#include "confparser.h" @@ -41,7 +42,15 @@ struct User // !! currently all users have the same offset // option in config: time_zone_offset int time_zone_offset; - + + // environment variables which can be set by this user + // use 'env' winix function + Space env; + + // environment variables set only by an administrator + // an administrator can use 'env' winix function with 'a' parameter + Space aenv; + User() @@ -59,6 +68,8 @@ struct User email.clear(); notify = 0; time_zone_offset = 0; + env.Clear(); + aenv.Clear(); } diff --git a/core/users.cpp b/core/users.cpp index 1965490..81959b3 100755 --- a/core/users.cpp +++ b/core/users.cpp @@ -122,6 +122,8 @@ Users::SizeType Users::Size() User & Users::operator[](Users::SizeType pos) { + // !! IMPROVE ME + // add checking the range and returning an empty User struct if out of range return table[pos]; } diff --git a/db/Makefile.dep b/db/Makefile.dep index 5fc1cc9..dd337fe 100755 --- a/db/Makefile.dep +++ b/db/Makefile.dep @@ -2,25 +2,25 @@ db.o: db.h dbbase.h dbconn.h dbtextstream.h ../core/textstream.h db.o: ../core/misc.h ../core/item.h ../core/confparser.h -db.o: ../core/requesttypes.h ../core/error.h dbitemquery.h ../core/item.h -db.o: dbitemcolumns.h ../core/confparser.h ../core/user.h ../core/group.h -db.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -db.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -db.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -db.o: ../core/htmlfilter.h ../templates/htmltextstream.h ../core/session.h -db.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ../core/mount.h -db.o: ../templates/locale.h ../core/log.h ../core/misc.h +db.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +db.o: dbitemquery.h ../core/item.h dbitemcolumns.h ../core/user.h +db.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h +db.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h +db.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h +db.o: ../core/config.h ../core/htmlfilter.h ../templates/htmltextstream.h +db.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h +db.o: ../core/mount.h ../templates/locale.h ../core/log.h ../core/misc.h dbbase.o: dbbase.h dbconn.h dbtextstream.h ../core/textstream.h dbbase.o: ../core/misc.h ../core/item.h ../core/confparser.h -dbbase.o: ../core/requesttypes.h ../core/error.h ../core/log.h ../core/misc.h -dbbase.o: ../../ezc/src/utf8.h +dbbase.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +dbbase.o: ../core/log.h ../core/misc.h ../../ezc/src/utf8.h dbconn.o: dbconn.h dbtextstream.h ../core/textstream.h ../core/misc.h dbconn.o: ../core/item.h ../core/confparser.h ../core/requesttypes.h dbconn.o: ../core/log.h ../core/error.h -dbitemcolumns.o: dbitemcolumns.h ../core/item.h ../core/confparser.h dbbase.h -dbitemcolumns.o: dbconn.h dbtextstream.h ../core/textstream.h ../core/misc.h +dbitemcolumns.o: dbitemcolumns.h ../core/item.h dbbase.h dbconn.h +dbitemcolumns.o: dbtextstream.h ../core/textstream.h ../core/misc.h dbitemcolumns.o: ../core/item.h ../core/confparser.h ../core/requesttypes.h -dbitemcolumns.o: ../core/error.h ../core/log.h +dbitemcolumns.o: ../core/error.h ../core/confparser.h ../core/log.h dbitemquery.o: dbitemquery.h ../core/item.h dbtextstream.o: dbtextstream.h ../core/textstream.h ../core/misc.h dbtextstream.o: ../core/item.h ../core/confparser.h ../core/requesttypes.h diff --git a/db/db.cpp b/db/db.cpp index 9fad2da..7dc2fe0 100755 --- a/db/db.cpp +++ b/db/db.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -68,8 +68,7 @@ return user_ok; -Error Db::AddUser(User & user, const std::wstring & password, const std::string & password_encrypted, - int pass_type, bool pass_hash_salted) +Error Db::AddUser(User & user, const UserPass & up) { PGresult * r = 0; Error status = WINIX_ERR_OK; @@ -78,22 +77,25 @@ Error Db::AddUser(User & user, const std::wstring & password, const std::string { query.Clear(); query << R("insert into core.user (login, password, pass_encrypted, super_user, email," - "notify, pass_type, pass_hash_salted) values (") + "notify, pass_type, pass_hash_salted, env, aenv) values (") << user.name; - // for safety - if( password_encrypted.empty() ) - query << password; + // for safety we put up.pass only if there is not an encrypted version + // someone could have forgotten to clear up.pass + if( up.pass_encrypted.empty() ) + query << up.pass; else query << ""; - query.EPutBin(password_encrypted); + query.EPutBin(up.pass_encrypted); query << user.super_user << user.email << user.notify - << pass_type - << pass_hash_salted + << up.pass_type + << up.pass_hash_salted + << user.env + << user.aenv << R(");"); r = AssertQuery(query); @@ -140,8 +142,31 @@ return DoCommand(query); } +Error Db::ChangeUserEnv(long user_id, const Space & space) +{ + query.Clear(); + query << R("update core.user set(env) = (") + << space + << R(") where id = ") + << user_id + << R(";"); + +return DoCommand(query); +} +Error Db::ChangeUserAdminEnv(long user_id, const Space & space) +{ + query.Clear(); + query << R("update core.user set(aenv) = (") + << space + << R(") where id = ") + << user_id + << R(";"); + +return DoCommand(query); +} + //!! wywalic z nazwy 'Subject' nic nie jest robione z tytulem // ta metoda uzywana tez jest w EditParentUrlById() @@ -1239,18 +1264,13 @@ return EndTrans(result); Error Db::EditMetaById(const Space & meta, long id) { - meta_stream.Clear(); - meta.Serialize(meta_stream); - query.Clear(); query << R("update core.item set (meta) = (") - << meta_stream.Str() + << meta << R(") where id=") << id << R(";"); - meta_stream.Clear(); - return DoCommand(query); } @@ -1506,7 +1526,7 @@ void Db::GetUsers(UGContainer & user_tab) try { query.Clear(); - query << R("select id, login, super_user, group_id, email, notify" + query << R("select id, login, super_user, group_id, email, notify, env, aenv" " from core.user left outer join core.group_mem on" " core.user.id = core.group_mem.user_id order by id asc;"); @@ -1521,12 +1541,14 @@ void Db::GetUsers(UGContainer & user_tab) int cgroup_id = AssertColumn(r, "group_id"); int cemail = AssertColumn(r, "email"); int cnotify = AssertColumn(r, "notify"); + int cenv = AssertColumn(r, "env"); + int caenv = AssertColumn(r, "aenv"); User u; long last_id = -1; UGContainer::Iterator iter = user_tab.End(); - for(int i = 0 ; i & user_tab) u.super_user = AssertValueBool(r, i, csuper_user); u.email = AssertValueWide(r, i, cemail); u.notify = AssertValueInt(r, i, cnotify); + AssertValueSpace(r, i, cenv, u.env); + AssertValueSpace(r, i, caenv, u.aenv); log << log2 << "Db: user: id: " << u.id << ", name: " << u.name << ", super_user: " << u.super_user << logend; diff --git a/db/db.h b/db/db.h index e562223..9b61db4 100755 --- a/db/db.h +++ b/db/db.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -39,11 +39,18 @@ public: // !! GetDir tylko dla katalogow // !! GetFile i GetDir beda uzywac GetItem - + Db() : item_cols(*this) + { + } + bool GetUserPass(const std::wstring & login, long & user_id, UserPass & up); - Error AddUser(User & user, const std::wstring & password, const std::string & password_encrypted, int pass_type, bool pass_hash_salted); + Error AddUser(User & user, const UserPass & up); + + // !! change name to: ChangeUserPass ? Error ChangePass(const std::wstring & login, const std::wstring & password, const std::string & password_encrypted, int pass_type, bool pass_hash_salted); + Error ChangeUserEnv(long user_id, const Space & space); + Error ChangeUserAdminEnv(long user_id, const Space & space); Error AddItem(Item & item); Error EditItemById(Item & item, bool with_url = true); @@ -100,7 +107,6 @@ protected: Item get_item_temp; std::wstring iq_id_list; DbItemColumns item_cols; - TextStream meta_stream; bool AddItemCreateUrlSubject(Item & item); diff --git a/db/dbbase.cpp b/db/dbbase.cpp index 816ae4e..fe9a79d 100755 --- a/db/dbbase.cpp +++ b/db/dbbase.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -143,7 +143,7 @@ return res; const std::wstring & DbBase::AssertValueWide(PGresult * r, int row, int col) { const char * res = AssertValue(r, row, col); - static std::wstring temp_wide_value; + static std::wstring temp_wide_value; // !! dac jako skladowa klasy (niestatyczna) Ezc::UTF8ToWide(res, temp_wide_value); @@ -210,6 +210,36 @@ tm DbBase::AssertValueTm(PGresult * r, int row, int col) } +bool DbBase::AssertValueSpace(PGresult * r, int row, int col, Space & space, bool split_single) +{ + const char * res = AssertValue(r, row, col); + + conf_parser.UTF8(true); + conf_parser.SplitSingle(split_single); + conf_parser.SetSpace(space); + space.Clear(); + + ConfParser::Status status = conf_parser.ParseString(res); + + if( status != ConfParser::ok ) + { + log << log1 << "Db: a problem with parsing a Space"; + + if( status == ConfParser::syntax_error ) + log << ", syntax error at line: " << conf_parser.line; + + log << logend; + + space.Clear(); + return false; + } + +return true; +} + + + + void DbBase::ClearResult(PGresult * r) { diff --git a/db/dbbase.h b/db/dbbase.h index 48c86b3..16f6ac0 100755 --- a/db/dbbase.h +++ b/db/dbbase.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -16,6 +16,7 @@ #include #include #include "core/error.h" +#include "core/confparser.h" class DbBase @@ -36,6 +37,7 @@ public: void AssertResult(PGresult * r, ExecStatusType t); static int AssertColumn(PGresult * r, const char * column_name); + // static assignments static const char * AssertValue(PGresult * r, int row, int col); static const std::wstring & AssertValueWide(PGresult * r, int row, int col); // warning: this method uses a static buffer static void AssertValueWide(PGresult * r, int row, int col, std::wstring & result); @@ -46,6 +48,9 @@ public: static unsigned long AssertValueULong(PGresult * r, int row, int col); static unsigned int AssertValueUInt(PGresult * r, int row, int col); static tm AssertValueTm(PGresult * r, int row, int col); + + // non static assignments + bool AssertValueSpace(PGresult * r, int row, int col, Space & space, bool split_single = true); void ClearResult(PGresult * r); long AssertCurrval(const char * table); @@ -89,6 +94,7 @@ private: static int UnescapeBin(const char * str, size_t & i, size_t len); DbTextStream bquery; + ConfParser conf_parser; }; diff --git a/db/dbitemcolumns.cpp b/db/dbitemcolumns.cpp index f5eb1ce..2fd725b 100755 --- a/db/dbitemcolumns.cpp +++ b/db/dbitemcolumns.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -13,6 +13,7 @@ + void DbItemColumns::SetColumns(PGresult * r) { // PQfnumber returns -1 if there is no such a column @@ -48,28 +49,6 @@ void DbItemColumns::SetColumns(PGresult * r) } -void DbItemColumns::SetMeta(PGresult * r, long row, Item & item) -{ - DbBase::AssertValueWide(r, row, meta, meta_str); - - item.meta.Clear(); - conf_parser.SetSpace(item.meta); - conf_parser.UTF8(true); // from the db we always have UTF-8 string - conf_parser.SplitSingle(true); - - if( conf_parser.ParseString(meta_str) != ConfParser::ok ) - { - log << log1 << "Db: syntax error when parsing meta information for" - << " item id: " << item.id - << ", url: " << item.url - << ", line: " << conf_parser.line << logend; - } - - meta_str.clear(); -} - - - void DbItemColumns::SetItem(PGresult * r, long row, Item & item) { if( id != -1 ) item.id = DbBase::AssertValueLong(r, row, id); @@ -101,9 +80,9 @@ void DbItemColumns::SetItem(PGresult * r, long row, Item & item) if( link_to != -1 ) DbBase::AssertValueWide(r, row, link_to, item.link_to); if( guest_name != -1 ) DbBase::AssertValueWide(r, row, guest_name, item.guest_name); if( html_template != -1 ) DbBase::AssertValueWide(r, row, html_template, item.html_template); - if( sort_index != -1 ) item.sort_index = DbBase::AssertValueInt(r, row, sort_index); + if( sort_index != -1 ) item.sort_index = DbBase::AssertValueInt(r, row, sort_index); - if( meta != -1 ) SetMeta(r, row, item); + if( meta != -1 ) db_base.AssertValueSpace(r, row, meta, item.meta); } diff --git a/db/dbitemcolumns.h b/db/dbitemcolumns.h index 9dc6d55..ac3011c 100755 --- a/db/dbitemcolumns.h +++ b/db/dbitemcolumns.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -13,8 +13,7 @@ #include #include "core/item.h" -#include "core/confparser.h" - +#include "dbbase.h" @@ -50,19 +49,16 @@ struct DbItemColumns int sort_index; int meta; + DbItemColumns(DbBase & db_base_) : db_base(db_base_) + { + } + void SetColumns(PGresult * r); void SetItem(PGresult * r, long row, Item & item); - private: - // for parsing meta information - ConfParser conf_parser; - - // meta string - std::wstring meta_str; - - void SetMeta(PGresult * r, long row, Item & item); + DbBase & db_base; }; diff --git a/db/dbtextstream.cpp b/db/dbtextstream.cpp index 6587e00..d37a352 100755 --- a/db/dbtextstream.cpp +++ b/db/dbtextstream.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -577,3 +577,24 @@ return buffer; +DbTextStream & DbTextStream::operator<<(const Space * space) +{ + space_stream.Clear(); + // !! IMPROVE ME + // we can calculate how much memory is needed before serializing + space->Serialize(space_stream, true, false); + operator<<(space_stream.Str()); + space_stream.Clear(); + +return *this; +} + + +DbTextStream & DbTextStream::operator<<(const Space & space) +{ + return operator<<(&space); +} + + + + diff --git a/db/dbtextstream.h b/db/dbtextstream.h index baccedf..3a7b61a 100755 --- a/db/dbtextstream.h +++ b/db/dbtextstream.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -152,6 +152,8 @@ public: DbTextStream & operator<<(const void *); DbTextStream & operator<<(const tm & t); DbTextStream & operator<<(const std::vector & tabid); + DbTextStream & operator<<(const Space * space); + DbTextStream & operator<<(const Space & space); static const char * ConvertTime(const tm & t); @@ -161,6 +163,9 @@ private: bool was_param; bool ext_escape; + // a temporarily stream used when serializing spaces + TextStream space_stream; + }; diff --git a/functions/Makefile.dep b/functions/Makefile.dep index e4271be..46c93a6 100755 --- a/functions/Makefile.dep +++ b/functions/Makefile.dep @@ -3,8 +3,8 @@ adduser.o: adduser.h functionbase.h ../core/item.h ../core/confparser.h adduser.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h adduser.o: ../core/textstream.h ../core/misc.h ../core/item.h -adduser.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -adduser.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +adduser.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +adduser.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h adduser.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h adduser.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h adduser.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -18,14 +18,15 @@ adduser.o: ../templates/localefilter.h ../../ezc/src/ezc.h adduser.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h adduser.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h adduser.o: cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h default.h -adduser.o: download.h emacs.h last.h login.h logout.h ln.h ls.h man.h meta.h -adduser.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h -adduser.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h -adduser.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -adduser.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -adduser.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -adduser.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -adduser.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +adduser.o: download.h emacs.h env.h last.h login.h logout.h ln.h ls.h man.h +adduser.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h +adduser.o: run.h sort.h specialdefault.h stat.h subject.h template.h +adduser.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +adduser.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +adduser.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +adduser.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +adduser.o: ../core/lastcontainer.h ../templates/misc.h +adduser.o: ../templates/htmltextstream.h ../core/mounts.h adduser.o: ../core/mountparser.h ../core/crypt.h ../core/users.h adduser.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h adduser.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h @@ -33,8 +34,8 @@ adduser.o: ../core/slog.h cat.o: cat.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h cat.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h cat.o: ../core/textstream.h ../core/misc.h ../core/item.h -cat.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -cat.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +cat.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +cat.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h cat.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h cat.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h cat.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -47,22 +48,22 @@ cat.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h cat.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h cat.o: functions.h functionparser.h ../core/cur.h adduser.h chmod.h cat.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -cat.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -cat.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h -cat.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h who.h -cat.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h -cat.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h -cat.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -cat.o: ../core/lastcontainer.h ../templates/misc.h -cat.o: ../templates/htmltextstream.h ../core/mounts.h ../core/mountparser.h -cat.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -cat.o: ../core/loadavg.h ../core/image.h ../core/basethread.h +cat.o: env.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +cat.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h +cat.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h +cat.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +cat.o: ../../ezc/src/stringconv.h ../notify/notifythread.h +cat.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h +cat.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h +cat.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +cat.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h +cat.o: ../core/group.h ../core/loadavg.h ../core/image.h ../core/basethread.h cat.o: ../core/threadmanager.h ../core/synchro.h chmod.o: chmod.h functionbase.h ../core/item.h ../core/confparser.h chmod.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h chmod.o: ../core/textstream.h ../core/misc.h ../core/item.h -chmod.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -chmod.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +chmod.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +chmod.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h chmod.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h chmod.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h chmod.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -75,10 +76,10 @@ chmod.o: ../templates/patterns.h ../templates/locale.h chmod.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h chmod.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h chmod.o: functionparser.h ../core/cur.h adduser.h cat.h chown.h privchanger.h -chmod.o: ckeditor.h cp.h default.h download.h emacs.h last.h login.h logout.h -chmod.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -chmod.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -chmod.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +chmod.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h login.h +chmod.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +chmod.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +chmod.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h chmod.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h chmod.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h chmod.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -90,8 +91,8 @@ chmod.o: ../core/threadmanager.h ../core/synchro.h chown.o: chown.h functionbase.h ../core/item.h ../core/confparser.h chown.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h chown.o: ../core/textstream.h ../core/misc.h ../core/item.h -chown.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -chown.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +chown.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +chown.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h chown.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h chown.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h chown.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -104,10 +105,10 @@ chown.o: ../templates/patterns.h ../templates/locale.h chown.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h chown.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h chown.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -chown.o: ckeditor.h cp.h default.h download.h emacs.h last.h login.h logout.h -chown.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -chown.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -chown.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +chown.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h login.h +chown.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +chown.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +chown.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h chown.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h chown.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h chown.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -119,8 +120,8 @@ chown.o: ../core/threadmanager.h ../core/synchro.h ckeditor.o: ckeditor.h functionbase.h ../core/item.h ../core/confparser.h ckeditor.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ckeditor.o: ../core/textstream.h ../core/misc.h ../core/item.h -ckeditor.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -ckeditor.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +ckeditor.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +ckeditor.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h ckeditor.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h ckeditor.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h ckeditor.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -134,9 +135,9 @@ ckeditor.o: ../templates/locale.h ../templates/localefilter.h ckeditor.o: ../../ezc/src/ezc.h ../../ezc/src/utf8.h ckeditor.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h ckeditor.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h -ckeditor.o: privchanger.h chown.h cp.h default.h download.h emacs.h last.h -ckeditor.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -ckeditor.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h +ckeditor.o: privchanger.h chown.h cp.h default.h download.h emacs.h env.h +ckeditor.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +ckeditor.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h ckeditor.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h ckeditor.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h ckeditor.o: ../../ezc/src/stringconv.h ../notify/notifythread.h @@ -151,7 +152,7 @@ ckeditor.o: ../core/synchro.h cp.o: cp.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h cp.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h cp.o: ../core/misc.h ../core/item.h ../core/requesttypes.h ../core/error.h -cp.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/confparser.h +cp.o: ../core/confparser.h ../db/dbitemquery.h ../db/dbitemcolumns.h cp.o: ../core/user.h ../core/group.h ../core/dircontainer.h cp.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h cp.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -164,16 +165,17 @@ cp.o: ../templates/patterns.h ../templates/locale.h cp.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h cp.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h cp.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -cp.o: chown.h ckeditor.h default.h download.h emacs.h last.h login.h logout.h -cp.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -cp.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h template.h -cp.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -cp.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -cp.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -cp.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -cp.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h -cp.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -cp.o: ../core/group.h ../core/loadavg.h ../core/image.h ../core/basethread.h +cp.o: chown.h ckeditor.h default.h download.h emacs.h env.h last.h login.h +cp.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h +cp.o: priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h +cp.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +cp.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +cp.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +cp.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +cp.o: ../core/lastcontainer.h ../templates/misc.h +cp.o: ../templates/htmltextstream.h ../core/mounts.h ../core/mountparser.h +cp.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h +cp.o: ../core/loadavg.h ../core/image.h ../core/basethread.h cp.o: ../core/threadmanager.h ../core/synchro.h ../core/misc.h cp.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h cp.o: ../core/sessionmanager.h ../core/sessioncontainer.h @@ -184,8 +186,8 @@ cp.o: ../core/sessionmanager.h default.o: default.h functionbase.h ../core/item.h ../core/confparser.h default.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h default.o: ../core/textstream.h ../core/misc.h ../core/item.h -default.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -default.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +default.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +default.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h default.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h default.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h default.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -199,22 +201,23 @@ default.o: ../templates/localefilter.h ../../ezc/src/ezc.h default.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h default.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h default.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -default.o: download.h emacs.h last.h login.h logout.h ln.h ls.h man.h meta.h -default.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h -default.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h -default.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -default.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -default.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -default.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -default.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +default.o: download.h emacs.h env.h last.h login.h logout.h ln.h ls.h man.h +default.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h +default.o: run.h sort.h specialdefault.h stat.h subject.h template.h +default.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +default.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +default.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +default.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +default.o: ../core/lastcontainer.h ../templates/misc.h +default.o: ../templates/htmltextstream.h ../core/mounts.h default.o: ../core/mountparser.h ../core/crypt.h ../core/users.h default.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h default.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h download.o: download.h functionbase.h ../core/item.h ../core/confparser.h download.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h download.o: ../core/textstream.h ../core/misc.h ../core/item.h -download.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -download.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +download.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +download.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h download.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h download.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h download.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -228,9 +231,9 @@ download.o: ../templates/locale.h ../templates/localefilter.h download.o: ../../ezc/src/ezc.h ../../ezc/src/utf8.h download.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h download.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h -download.o: privchanger.h chown.h ckeditor.h cp.h default.h emacs.h last.h -download.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -download.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h +download.o: privchanger.h chown.h ckeditor.h cp.h default.h emacs.h env.h +download.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +download.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h download.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h download.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h download.o: ../../ezc/src/stringconv.h ../notify/notifythread.h @@ -245,8 +248,8 @@ download.o: ../core/synchro.h emacs.o: emacs.h functionbase.h ../core/item.h ../core/confparser.h emacs.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h emacs.o: ../core/textstream.h ../core/misc.h ../core/item.h -emacs.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -emacs.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +emacs.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +emacs.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h emacs.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h emacs.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h emacs.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -259,10 +262,10 @@ emacs.o: ../templates/patterns.h ../templates/locale.h emacs.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h emacs.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h emacs.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -emacs.o: chown.h ckeditor.h cp.h default.h download.h last.h login.h logout.h -emacs.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -emacs.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -emacs.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +emacs.o: chown.h ckeditor.h cp.h default.h download.h env.h last.h login.h +emacs.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +emacs.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +emacs.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h emacs.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h emacs.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h emacs.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -274,11 +277,39 @@ emacs.o: ../core/threadmanager.h ../core/synchro.h ../templates/templates.h emacs.o: ../templates/patterncacher.h ../templates/indexpatterns.h emacs.o: ../templates/patterns.h ../templates/changepatterns.h emacs.o: ../core/sessionmanager.h +env.o: env.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h +env.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h +env.o: ../core/textstream.h ../core/misc.h ../core/item.h +env.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +env.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h +env.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h +env.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h +env.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h +env.o: ../core/config.h ../core/htmlfilter.h ../templates/htmltextstream.h +env.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h +env.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h +env.o: ../core/system.h ../core/dirs.h ../core/dircontainer.h +env.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h +env.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +env.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h +env.o: functions.h functionparser.h ../core/cur.h adduser.h cat.h chmod.h +env.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h +env.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h +env.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h +env.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h who.h +env.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h +env.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +env.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +env.o: ../core/lastcontainer.h ../templates/misc.h +env.o: ../templates/htmltextstream.h ../core/mounts.h ../core/mountparser.h +env.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h +env.o: ../core/loadavg.h ../core/image.h ../core/basethread.h +env.o: ../core/threadmanager.h ../core/synchro.h ../core/log.h functionbase.o: functionbase.h ../core/item.h ../core/confparser.h ../db/db.h functionbase.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h functionbase.o: ../core/textstream.h ../core/misc.h ../core/item.h -functionbase.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -functionbase.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +functionbase.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +functionbase.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h functionbase.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h functionbase.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h functionbase.o: ../core/slog.h ../core/cur.h ../core/request.h @@ -293,11 +324,11 @@ functionbase.o: ../templates/localefilter.h ../../ezc/src/ezc.h functionbase.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h functionbase.o: ../../ezc/src/pattern.h functions.h functionparser.h functionbase.o: ../core/cur.h adduser.h cat.h chmod.h privchanger.h chown.h -functionbase.o: ckeditor.h cp.h default.h download.h emacs.h last.h login.h -functionbase.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -functionbase.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h -functionbase.o: stat.h subject.h template.h tinymce.h uname.h upload.h -functionbase.o: uptime.h who.h vim.h ../core/htmlfilter.h +functionbase.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h +functionbase.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +functionbase.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h +functionbase.o: specialdefault.h stat.h subject.h template.h tinymce.h +functionbase.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h functionbase.o: ../../ezc/src/stringconv.h ../notify/notifythread.h functionbase.o: ../core/basethread.h ../core/synchro.h functionbase.o: ../notify/templatesnotify.h ../core/users.h @@ -309,9 +340,9 @@ functionbase.o: ../core/loadavg.h ../core/image.h ../core/basethread.h functionbase.o: ../core/threadmanager.h ../core/synchro.h functionparser.o: functionparser.h ../db/db.h ../db/dbbase.h ../db/dbconn.h functionparser.o: ../db/dbtextstream.h ../core/textstream.h ../core/misc.h -functionparser.o: ../core/item.h ../core/requesttypes.h ../core/error.h -functionparser.o: ../db/dbitemquery.h ../core/item.h ../core/confparser.h -functionparser.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +functionparser.o: ../core/item.h ../core/requesttypes.h ../core/confparser.h +functionparser.o: ../core/error.h ../core/confparser.h ../db/dbitemquery.h +functionparser.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h functionparser.o: ../core/group.h ../core/dircontainer.h functionparser.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h functionparser.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -327,11 +358,11 @@ functionparser.o: ../templates/localefilter.h ../../ezc/src/ezc.h functionparser.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h functionparser.o: ../../ezc/src/pattern.h functions.h adduser.h cat.h chmod.h functionparser.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h -functionparser.o: emacs.h last.h login.h logout.h ln.h ls.h man.h meta.h -functionparser.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h -functionparser.o: run.h sort.h specialdefault.h stat.h subject.h template.h -functionparser.o: tinymce.h uname.h upload.h uptime.h who.h vim.h -functionparser.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +functionparser.o: emacs.h env.h last.h login.h logout.h ln.h ls.h man.h +functionparser.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +functionparser.o: reload.h rm.h run.h sort.h specialdefault.h stat.h +functionparser.o: subject.h template.h tinymce.h uname.h upload.h uptime.h +functionparser.o: who.h vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h functionparser.o: ../notify/notifythread.h ../core/basethread.h functionparser.o: ../core/synchro.h ../notify/templatesnotify.h functionparser.o: ../core/users.h ../core/ugcontainer.h @@ -345,8 +376,8 @@ functionparser.o: ../core/log.h functions.o: functions.h functionbase.h ../core/item.h ../core/confparser.h functions.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h functions.o: ../core/textstream.h ../core/misc.h ../core/item.h -functions.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -functions.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +functions.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +functions.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h functions.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h functions.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h functions.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -369,11 +400,11 @@ functions.o: ../core/users.h ../core/groups.h ../core/group.h functions.o: ../core/loadavg.h ../core/image.h ../core/basethread.h functions.o: ../core/threadmanager.h ../core/synchro.h functionparser.h functions.o: ../core/cur.h adduser.h cat.h chmod.h privchanger.h chown.h -functions.o: ckeditor.h cp.h default.h download.h emacs.h last.h login.h -functions.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -functions.o: passwd.h priv.h reload.h rm.h sort.h specialdefault.h stat.h -functions.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h -functions.o: vim.h ../core/htmlfilter.h ../core/log.h ../core/misc.h +functions.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h +functions.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h +functions.o: node.h passwd.h priv.h reload.h rm.h sort.h specialdefault.h +functions.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h +functions.o: who.h vim.h ../core/htmlfilter.h ../core/log.h ../core/misc.h functions.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h functions.o: ../core/sessionmanager.h ../core/sessioncontainer.h functions.o: ../functions/functions.h ../templates/templates.h @@ -383,8 +414,8 @@ functions.o: ../core/sessionmanager.h last.o: last.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h last.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h last.o: ../core/textstream.h ../core/misc.h ../core/item.h -last.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -last.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +last.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +last.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h last.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h last.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h last.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -397,10 +428,10 @@ last.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h last.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h last.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h last.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -last.o: default.h download.h emacs.h login.h logout.h ln.h ls.h man.h meta.h -last.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h -last.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h uname.h -last.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +last.o: default.h download.h emacs.h env.h login.h logout.h ln.h ls.h man.h +last.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h +last.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h +last.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h last.o: ../../ezc/src/stringconv.h ../notify/notifythread.h last.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h last.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -411,7 +442,7 @@ last.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h ln.o: ln.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h ln.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h ln.o: ../core/misc.h ../core/item.h ../core/requesttypes.h ../core/error.h -ln.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/confparser.h +ln.o: ../core/confparser.h ../db/dbitemquery.h ../db/dbitemcolumns.h ln.o: ../core/user.h ../core/group.h ../core/dircontainer.h ln.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h ln.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -424,10 +455,10 @@ ln.o: ../templates/patterns.h ../templates/locale.h ln.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h ln.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h ln.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -ln.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -ln.o: logout.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h -ln.o: priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -ln.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +ln.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +ln.o: login.h logout.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +ln.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +ln.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h ln.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h ln.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h ln.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -440,8 +471,8 @@ ln.o: ../functions/functions.h login.o: login.h functionbase.h ../core/item.h ../core/confparser.h login.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h login.o: ../core/textstream.h ../core/misc.h ../core/item.h -login.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -login.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +login.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +login.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h login.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h login.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h login.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -454,10 +485,10 @@ login.o: ../templates/patterns.h ../templates/locale.h login.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h login.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h login.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -login.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h logout.h -login.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -login.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -login.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +login.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +login.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +login.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +login.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h login.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h login.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h login.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -474,8 +505,8 @@ login.o: ../templates/changepatterns.h ../core/sessionmanager.h logout.o: logout.h functionbase.h ../core/item.h ../core/confparser.h logout.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h logout.o: ../core/textstream.h ../core/misc.h ../core/item.h -logout.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -logout.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +logout.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +logout.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h logout.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h logout.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h logout.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -489,9 +520,9 @@ logout.o: ../templates/localefilter.h ../../ezc/src/ezc.h logout.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h logout.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h logout.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -logout.o: default.h download.h emacs.h last.h login.h ln.h ls.h man.h meta.h -logout.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h -logout.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h +logout.o: default.h download.h emacs.h env.h last.h login.h ln.h ls.h man.h +logout.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h +logout.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h logout.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h logout.o: ../../ezc/src/stringconv.h ../notify/notifythread.h logout.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h @@ -503,7 +534,7 @@ logout.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h ls.o: ls.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h ls.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h ls.o: ../core/misc.h ../core/item.h ../core/requesttypes.h ../core/error.h -ls.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/confparser.h +ls.o: ../core/confparser.h ../db/dbitemquery.h ../db/dbitemcolumns.h ls.o: ../core/user.h ../core/group.h ../core/dircontainer.h ls.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h ls.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -516,10 +547,10 @@ ls.o: ../templates/patterns.h ../templates/locale.h ls.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h ls.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h ls.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -ls.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -ls.o: logout.h ln.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h -ls.o: priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -ls.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +ls.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +ls.o: login.h logout.h ln.h man.h meta.h mkdir.h mv.h nicedit.h node.h +ls.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +ls.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h ls.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h ls.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h ls.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -531,8 +562,8 @@ ls.o: ../core/threadmanager.h ../core/synchro.h man.o: man.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h man.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h man.o: ../core/textstream.h ../core/misc.h ../core/item.h -man.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -man.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +man.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +man.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h man.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h man.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h man.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -545,10 +576,10 @@ man.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h man.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h man.o: functions.h functionparser.h ../core/cur.h adduser.h cat.h chmod.h man.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -man.o: last.h login.h logout.h ln.h ls.h meta.h mkdir.h mv.h nicedit.h node.h -man.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h -man.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h -man.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +man.o: env.h last.h login.h logout.h ln.h ls.h meta.h mkdir.h mv.h nicedit.h +man.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h +man.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h who.h +man.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h man.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h man.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h man.o: ../core/lastcontainer.h ../templates/misc.h @@ -559,8 +590,8 @@ man.o: ../core/threadmanager.h ../core/synchro.h meta.o: meta.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h meta.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h meta.o: ../core/textstream.h ../core/misc.h ../core/item.h -meta.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -meta.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +meta.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +meta.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h meta.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h meta.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h meta.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -573,10 +604,10 @@ meta.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h meta.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h meta.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h meta.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -meta.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h man.h -meta.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h -meta.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h uname.h -meta.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +meta.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h ls.h +meta.o: man.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h +meta.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h +meta.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h meta.o: ../../ezc/src/stringconv.h ../notify/notifythread.h meta.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h meta.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -588,8 +619,8 @@ meta.o: ../core/log.h mkdir.o: mkdir.h functionbase.h ../core/item.h ../core/confparser.h mkdir.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h mkdir.o: ../core/textstream.h ../core/misc.h ../core/item.h -mkdir.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -mkdir.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +mkdir.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +mkdir.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h mkdir.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h mkdir.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h mkdir.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -602,10 +633,10 @@ mkdir.o: ../templates/patterns.h ../templates/locale.h mkdir.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h mkdir.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h mkdir.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -mkdir.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -mkdir.o: logout.h ln.h ls.h man.h meta.h mv.h nicedit.h node.h passwd.h -mkdir.o: priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -mkdir.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +mkdir.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +mkdir.o: login.h logout.h ln.h ls.h man.h meta.h mv.h nicedit.h node.h +mkdir.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +mkdir.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h mkdir.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h mkdir.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h mkdir.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -617,8 +648,8 @@ mkdir.o: ../core/threadmanager.h ../core/synchro.h mount.o: mount.h functionbase.h ../core/item.h ../core/confparser.h mount.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h mount.o: ../core/textstream.h ../core/misc.h ../core/item.h -mount.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -mount.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +mount.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +mount.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h mount.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h mount.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h mount.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -631,11 +662,11 @@ mount.o: ../templates/patterns.h ../templates/locale.h mount.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h mount.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h mount.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -mount.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -mount.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -mount.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h -mount.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h -mount.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +mount.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +mount.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h +mount.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h +mount.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h +mount.o: who.h vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h mount.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h mount.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h mount.o: ../core/lastcontainer.h ../templates/misc.h @@ -646,7 +677,7 @@ mount.o: ../core/threadmanager.h ../core/synchro.h mv.o: mv.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h mv.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h mv.o: ../core/misc.h ../core/item.h ../core/requesttypes.h ../core/error.h -mv.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/confparser.h +mv.o: ../core/confparser.h ../db/dbitemquery.h ../db/dbitemcolumns.h mv.o: ../core/user.h ../core/group.h ../core/dircontainer.h mv.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h mv.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -659,10 +690,10 @@ mv.o: ../templates/patterns.h ../templates/locale.h mv.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h mv.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h mv.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -mv.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -mv.o: logout.h ln.h ls.h man.h meta.h mkdir.h nicedit.h node.h passwd.h -mv.o: priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -mv.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +mv.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +mv.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h nicedit.h node.h +mv.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h +mv.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h mv.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h mv.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h mv.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -679,8 +710,8 @@ mv.o: ../templates/changepatterns.h ../core/sessionmanager.h nicedit.o: nicedit.h functionbase.h ../core/item.h ../core/confparser.h nicedit.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h nicedit.o: ../core/textstream.h ../core/misc.h ../core/item.h -nicedit.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -nicedit.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +nicedit.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +nicedit.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h nicedit.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h nicedit.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h nicedit.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -694,9 +725,9 @@ nicedit.o: ../templates/localefilter.h ../../ezc/src/ezc.h nicedit.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h nicedit.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h nicedit.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -nicedit.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -nicedit.o: man.h meta.h mkdir.h mv.h node.h passwd.h priv.h reload.h rm.h -nicedit.o: run.h sort.h specialdefault.h stat.h subject.h template.h +nicedit.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +nicedit.o: ls.h man.h meta.h mkdir.h mv.h node.h passwd.h priv.h reload.h +nicedit.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h nicedit.o: tinymce.h uname.h upload.h uptime.h who.h vim.h nicedit.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h nicedit.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h @@ -709,8 +740,8 @@ nicedit.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h node.o: node.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h node.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h node.o: ../core/textstream.h ../core/misc.h ../core/item.h -node.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -node.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +node.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +node.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h node.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h node.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h node.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -723,10 +754,10 @@ node.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h node.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h node.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h node.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -node.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h man.h -node.o: meta.h mkdir.h mv.h nicedit.h passwd.h priv.h reload.h rm.h run.h -node.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h uname.h -node.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +node.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h ls.h +node.o: man.h meta.h mkdir.h mv.h nicedit.h passwd.h priv.h reload.h rm.h +node.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h +node.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h node.o: ../../ezc/src/stringconv.h ../notify/notifythread.h node.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h node.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -737,8 +768,8 @@ node.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h passwd.o: passwd.h functionbase.h ../core/item.h ../core/confparser.h passwd.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h passwd.o: ../core/textstream.h ../core/misc.h ../core/item.h -passwd.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -passwd.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +passwd.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +passwd.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h passwd.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h passwd.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h passwd.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -752,14 +783,15 @@ passwd.o: ../templates/localefilter.h ../../ezc/src/ezc.h passwd.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h passwd.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h passwd.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -passwd.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -passwd.o: man.h meta.h mkdir.h mv.h nicedit.h node.h priv.h reload.h rm.h -passwd.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h -passwd.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -passwd.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -passwd.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -passwd.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -passwd.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +passwd.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +passwd.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h priv.h reload.h +passwd.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h +passwd.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +passwd.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +passwd.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +passwd.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +passwd.o: ../core/lastcontainer.h ../templates/misc.h +passwd.o: ../templates/htmltextstream.h ../core/mounts.h passwd.o: ../core/mountparser.h ../core/crypt.h ../core/users.h passwd.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h passwd.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h @@ -767,8 +799,8 @@ passwd.o: ../core/slog.h ../functions/functions.h priv.o: priv.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h priv.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h priv.o: ../core/textstream.h ../core/misc.h ../core/item.h -priv.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -priv.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +priv.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +priv.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h priv.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h priv.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h priv.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -781,10 +813,10 @@ priv.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h priv.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h priv.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h priv.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -priv.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h man.h -priv.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h reload.h rm.h run.h -priv.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h uname.h -priv.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +priv.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h ls.h +priv.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h reload.h rm.h +priv.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h +priv.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h priv.o: ../../ezc/src/stringconv.h ../notify/notifythread.h priv.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h priv.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -796,29 +828,29 @@ privchanger.o: privchanger.h ../core/request.h ../core/system.h privchanger.o: ../core/dirs.h ../core/item.h ../core/dircontainer.h privchanger.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h privchanger.o: ../core/textstream.h ../core/misc.h ../core/requesttypes.h -privchanger.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -privchanger.o: ../core/confparser.h ../db/dbitemcolumns.h -privchanger.o: ../core/confparser.h ../core/user.h ../core/group.h -privchanger.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -privchanger.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -privchanger.o: ../core/cur.h ../core/request.h ../core/error.h -privchanger.o: ../core/config.h ../core/htmlfilter.h -privchanger.o: ../templates/htmltextstream.h ../core/session.h ../core/user.h -privchanger.o: ../core/plugindata.h ../core/rebus.h mount.h functionbase.h -privchanger.o: ../core/config.h ../core/synchro.h ../notify/notify.h -privchanger.o: ../notify/notifypool.h ../templates/locale.h -privchanger.o: ../templates/patterns.h ../templates/locale.h -privchanger.o: ../templates/localefilter.h ../../ezc/src/ezc.h -privchanger.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h -privchanger.o: ../../ezc/src/pattern.h functions.h functionparser.h -privchanger.o: ../core/cur.h adduser.h cat.h chmod.h chown.h ckeditor.h cp.h -privchanger.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -privchanger.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h -privchanger.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h -privchanger.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h -privchanger.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -privchanger.o: ../notify/notifythread.h ../core/basethread.h -privchanger.o: ../core/synchro.h ../notify/templatesnotify.h ../core/users.h +privchanger.o: ../core/confparser.h ../core/error.h ../core/confparser.h +privchanger.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h +privchanger.o: ../core/user.h ../core/group.h ../core/dircontainer.h +privchanger.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h +privchanger.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h +privchanger.o: ../core/request.h ../core/error.h ../core/config.h +privchanger.o: ../core/htmlfilter.h ../templates/htmltextstream.h +privchanger.o: ../core/session.h ../core/user.h ../core/plugindata.h +privchanger.o: ../core/rebus.h mount.h functionbase.h ../core/config.h +privchanger.o: ../core/synchro.h ../notify/notify.h ../notify/notifypool.h +privchanger.o: ../templates/locale.h ../templates/patterns.h +privchanger.o: ../templates/locale.h ../templates/localefilter.h +privchanger.o: ../../ezc/src/ezc.h ../../ezc/src/utf8.h +privchanger.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h +privchanger.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h chown.h +privchanger.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h +privchanger.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h +privchanger.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h +privchanger.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h +privchanger.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +privchanger.o: ../../ezc/src/stringconv.h ../notify/notifythread.h +privchanger.o: ../core/basethread.h ../core/synchro.h +privchanger.o: ../notify/templatesnotify.h ../core/users.h privchanger.o: ../core/ugcontainer.h ../core/lastcontainer.h privchanger.o: ../templates/misc.h ../templates/htmltextstream.h privchanger.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h @@ -828,8 +860,8 @@ privchanger.o: ../core/threadmanager.h reload.o: reload.h functionbase.h ../core/item.h ../core/confparser.h reload.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h reload.o: ../core/textstream.h ../core/misc.h ../core/item.h -reload.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -reload.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +reload.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +reload.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h reload.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h reload.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h reload.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -843,14 +875,15 @@ reload.o: ../templates/localefilter.h ../../ezc/src/ezc.h reload.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h reload.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h reload.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -reload.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -reload.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h rm.h -reload.o: run.h sort.h specialdefault.h stat.h subject.h template.h tinymce.h -reload.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -reload.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -reload.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -reload.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -reload.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +reload.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +reload.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +reload.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h +reload.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +reload.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +reload.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +reload.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +reload.o: ../core/lastcontainer.h ../templates/misc.h +reload.o: ../templates/htmltextstream.h ../core/mounts.h reload.o: ../core/mountparser.h ../core/crypt.h ../core/users.h reload.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h reload.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h @@ -860,7 +893,7 @@ reload.o: ../templates/changepatterns.h ../core/sessionmanager.h rm.o: rm.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h rm.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h rm.o: ../core/misc.h ../core/item.h ../core/requesttypes.h ../core/error.h -rm.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/confparser.h +rm.o: ../core/confparser.h ../db/dbitemquery.h ../db/dbitemcolumns.h rm.o: ../core/user.h ../core/group.h ../core/dircontainer.h rm.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h rm.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h @@ -873,9 +906,9 @@ rm.o: ../templates/patterns.h ../templates/locale.h rm.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h rm.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h rm.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -rm.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -rm.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h -rm.o: priv.h reload.h run.h sort.h specialdefault.h stat.h subject.h +rm.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +rm.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h +rm.o: passwd.h priv.h reload.h run.h sort.h specialdefault.h stat.h subject.h rm.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h rm.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h rm.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h @@ -893,8 +926,8 @@ rm.o: ../templates/changepatterns.h ../core/sessionmanager.h ../core/misc.h run.o: run.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h run.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h run.o: ../core/textstream.h ../core/misc.h ../core/item.h -run.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -run.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +run.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +run.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h run.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h run.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h run.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -907,10 +940,10 @@ run.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h run.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h run.o: functions.h functionparser.h ../core/cur.h adduser.h cat.h chmod.h run.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -run.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -run.o: node.h passwd.h priv.h reload.h rm.h sort.h specialdefault.h stat.h -run.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h vim.h -run.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +run.o: env.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +run.o: nicedit.h node.h passwd.h priv.h reload.h rm.h sort.h specialdefault.h +run.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h who.h +run.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h run.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h run.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h run.o: ../core/lastcontainer.h ../templates/misc.h @@ -921,8 +954,8 @@ run.o: ../core/threadmanager.h ../core/synchro.h sort.o: sort.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h sort.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h sort.o: ../core/textstream.h ../core/misc.h ../core/item.h -sort.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -sort.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +sort.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +sort.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h sort.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h sort.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h sort.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -935,10 +968,10 @@ sort.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h sort.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h sort.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h sort.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -sort.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h man.h -sort.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h -sort.o: run.h specialdefault.h stat.h subject.h template.h tinymce.h uname.h -sort.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +sort.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h ls.h +sort.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h +sort.o: rm.h run.h specialdefault.h stat.h subject.h template.h tinymce.h +sort.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h sort.o: ../../ezc/src/stringconv.h ../notify/notifythread.h sort.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h sort.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -956,8 +989,8 @@ specialdefault.o: specialdefault.h functionbase.h ../core/item.h specialdefault.o: ../core/confparser.h ../db/db.h ../db/dbbase.h specialdefault.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h specialdefault.o: ../core/misc.h ../core/item.h ../core/requesttypes.h -specialdefault.o: ../core/error.h ../db/dbitemquery.h ../db/dbitemcolumns.h -specialdefault.o: ../core/confparser.h ../core/user.h ../core/group.h +specialdefault.o: ../core/error.h ../core/confparser.h ../db/dbitemquery.h +specialdefault.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h specialdefault.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h specialdefault.o: ../core/textstream.h ../core/logmanipulators.h specialdefault.o: ../core/slog.h ../core/cur.h ../core/request.h @@ -972,25 +1005,25 @@ specialdefault.o: ../templates/localefilter.h ../../ezc/src/ezc.h specialdefault.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h specialdefault.o: ../../ezc/src/pattern.h functions.h functionparser.h specialdefault.o: ../core/cur.h adduser.h cat.h chmod.h privchanger.h chown.h -specialdefault.o: ckeditor.h cp.h default.h download.h emacs.h last.h login.h -specialdefault.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -specialdefault.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h stat.h -specialdefault.o: subject.h template.h tinymce.h uname.h upload.h uptime.h -specialdefault.o: who.h vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h -specialdefault.o: ../notify/notifythread.h ../core/basethread.h -specialdefault.o: ../core/synchro.h ../notify/templatesnotify.h -specialdefault.o: ../core/users.h ../core/ugcontainer.h -specialdefault.o: ../core/lastcontainer.h ../templates/misc.h -specialdefault.o: ../templates/htmltextstream.h ../core/mounts.h -specialdefault.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -specialdefault.o: ../core/groups.h ../core/group.h ../core/loadavg.h -specialdefault.o: ../core/image.h ../core/basethread.h +specialdefault.o: ckeditor.h cp.h default.h download.h emacs.h env.h last.h +specialdefault.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +specialdefault.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h +specialdefault.o: stat.h subject.h template.h tinymce.h uname.h upload.h +specialdefault.o: uptime.h who.h vim.h ../core/htmlfilter.h +specialdefault.o: ../../ezc/src/stringconv.h ../notify/notifythread.h +specialdefault.o: ../core/basethread.h ../core/synchro.h +specialdefault.o: ../notify/templatesnotify.h ../core/users.h +specialdefault.o: ../core/ugcontainer.h ../core/lastcontainer.h +specialdefault.o: ../templates/misc.h ../templates/htmltextstream.h +specialdefault.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h +specialdefault.o: ../core/users.h ../core/groups.h ../core/group.h +specialdefault.o: ../core/loadavg.h ../core/image.h ../core/basethread.h specialdefault.o: ../core/threadmanager.h ../core/synchro.h stat.o: stat.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h stat.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h stat.o: ../core/textstream.h ../core/misc.h ../core/item.h -stat.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -stat.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +stat.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +stat.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h stat.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h stat.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h stat.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1003,10 +1036,10 @@ stat.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h stat.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h stat.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h stat.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -stat.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h man.h -stat.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h -stat.o: run.h sort.h specialdefault.h subject.h template.h tinymce.h uname.h -stat.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h +stat.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h ls.h +stat.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h +stat.o: rm.h run.h sort.h specialdefault.h subject.h template.h tinymce.h +stat.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h stat.o: ../../ezc/src/stringconv.h ../notify/notifythread.h stat.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h stat.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h @@ -1017,8 +1050,8 @@ stat.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h subject.o: subject.h functionbase.h ../core/item.h ../core/confparser.h subject.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h subject.o: ../core/textstream.h ../core/misc.h ../core/item.h -subject.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -subject.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +subject.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +subject.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h subject.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h subject.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h subject.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1032,8 +1065,8 @@ subject.o: ../templates/localefilter.h ../../ezc/src/ezc.h subject.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h subject.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h subject.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -subject.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -subject.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +subject.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +subject.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h subject.o: reload.h rm.h run.h sort.h specialdefault.h stat.h template.h subject.o: tinymce.h uname.h upload.h uptime.h who.h vim.h subject.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h @@ -1047,8 +1080,8 @@ subject.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h template.o: template.h functionbase.h ../core/item.h ../core/confparser.h template.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h template.o: ../core/textstream.h ../core/misc.h ../core/item.h -template.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -template.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +template.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +template.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h template.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h template.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h template.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1063,10 +1096,10 @@ template.o: ../../ezc/src/ezc.h ../../ezc/src/utf8.h template.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h template.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h template.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h -template.o: emacs.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -template.o: mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h -template.o: specialdefault.h stat.h subject.h tinymce.h uname.h upload.h -template.o: uptime.h who.h vim.h ../core/htmlfilter.h +template.o: emacs.h env.h last.h login.h logout.h ln.h ls.h man.h meta.h +template.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h run.h +template.o: sort.h specialdefault.h stat.h subject.h tinymce.h uname.h +template.o: upload.h uptime.h who.h vim.h ../core/htmlfilter.h template.o: ../../ezc/src/stringconv.h ../notify/notifythread.h template.o: ../core/basethread.h ../core/synchro.h template.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -1079,8 +1112,8 @@ template.o: ../core/synchro.h ../core/misc.h tinymce.o: tinymce.h functionbase.h ../core/item.h ../core/confparser.h tinymce.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h tinymce.o: ../core/textstream.h ../core/misc.h ../core/item.h -tinymce.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -tinymce.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +tinymce.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +tinymce.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h tinymce.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h tinymce.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h tinymce.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1094,8 +1127,8 @@ tinymce.o: ../templates/localefilter.h ../../ezc/src/ezc.h tinymce.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h tinymce.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h tinymce.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -tinymce.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -tinymce.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +tinymce.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +tinymce.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h tinymce.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h tinymce.o: template.h uname.h upload.h uptime.h who.h vim.h tinymce.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h @@ -1109,8 +1142,8 @@ tinymce.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h uname.o: uname.h functionbase.h ../core/item.h ../core/confparser.h uname.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h uname.o: ../core/textstream.h ../core/misc.h ../core/item.h -uname.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -uname.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +uname.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +uname.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h uname.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h uname.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h uname.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1123,10 +1156,10 @@ uname.o: ../templates/patterns.h ../templates/locale.h uname.o: ../templates/localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h uname.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h uname.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h privchanger.h -uname.o: chown.h ckeditor.h cp.h default.h download.h emacs.h last.h login.h -uname.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -uname.o: passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h stat.h -uname.o: subject.h template.h tinymce.h upload.h uptime.h who.h vim.h +uname.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h last.h +uname.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h +uname.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h +uname.o: stat.h subject.h template.h tinymce.h upload.h uptime.h who.h vim.h uname.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h uname.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h uname.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h @@ -1138,8 +1171,8 @@ uname.o: ../core/threadmanager.h ../core/synchro.h upload.o: upload.h functionbase.h ../core/item.h ../core/confparser.h upload.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h upload.o: ../core/textstream.h ../core/misc.h ../core/item.h -upload.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -upload.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +upload.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +upload.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h upload.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h upload.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h upload.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1153,14 +1186,15 @@ upload.o: ../templates/localefilter.h ../../ezc/src/ezc.h upload.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h upload.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h upload.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -upload.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -upload.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h -upload.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h -upload.o: tinymce.h uname.h uptime.h who.h vim.h ../core/htmlfilter.h -upload.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -upload.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -upload.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -upload.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +upload.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +upload.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +upload.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h +upload.o: template.h tinymce.h uname.h uptime.h who.h vim.h +upload.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +upload.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +upload.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +upload.o: ../core/lastcontainer.h ../templates/misc.h +upload.o: ../templates/htmltextstream.h ../core/mounts.h upload.o: ../core/mountparser.h ../core/crypt.h ../core/users.h upload.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h upload.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h @@ -1173,8 +1207,8 @@ upload.o: ../templates/changepatterns.h ../core/sessionmanager.h uptime.o: uptime.h functionbase.h ../core/item.h ../core/confparser.h uptime.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h uptime.o: ../core/textstream.h ../core/misc.h ../core/item.h -uptime.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -uptime.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +uptime.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +uptime.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h uptime.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h uptime.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h uptime.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1188,22 +1222,23 @@ uptime.o: ../templates/localefilter.h ../../ezc/src/ezc.h uptime.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h uptime.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h uptime.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h -uptime.o: default.h download.h emacs.h last.h login.h logout.h ln.h ls.h -uptime.o: man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h -uptime.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h -uptime.o: tinymce.h uname.h upload.h who.h vim.h ../core/htmlfilter.h -uptime.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -uptime.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h -uptime.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -uptime.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +uptime.o: default.h download.h emacs.h env.h last.h login.h logout.h ln.h +uptime.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +uptime.o: reload.h rm.h run.h sort.h specialdefault.h stat.h subject.h +uptime.o: template.h tinymce.h uname.h upload.h who.h vim.h +uptime.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h +uptime.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +uptime.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +uptime.o: ../core/lastcontainer.h ../templates/misc.h +uptime.o: ../templates/htmltextstream.h ../core/mounts.h uptime.o: ../core/mountparser.h ../core/crypt.h ../core/users.h uptime.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h uptime.o: ../core/basethread.h ../core/threadmanager.h ../core/synchro.h vim.o: vim.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h vim.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h vim.o: ../core/textstream.h ../core/misc.h ../core/item.h -vim.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -vim.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +vim.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +vim.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h vim.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h vim.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h vim.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1216,22 +1251,22 @@ vim.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h vim.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h vim.o: functions.h functionparser.h ../core/cur.h adduser.h cat.h chmod.h vim.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -vim.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -vim.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h -vim.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h who.h -vim.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -vim.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h -vim.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -vim.o: ../core/lastcontainer.h ../templates/misc.h -vim.o: ../templates/htmltextstream.h ../core/mounts.h ../core/mountparser.h -vim.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -vim.o: ../core/loadavg.h ../core/image.h ../core/basethread.h +vim.o: env.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +vim.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h +vim.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h +vim.o: upload.h uptime.h who.h ../core/htmlfilter.h +vim.o: ../../ezc/src/stringconv.h ../notify/notifythread.h +vim.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h +vim.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h +vim.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +vim.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h +vim.o: ../core/group.h ../core/loadavg.h ../core/image.h ../core/basethread.h vim.o: ../core/threadmanager.h ../core/synchro.h who.o: who.h functionbase.h ../core/item.h ../core/confparser.h ../db/db.h who.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h who.o: ../core/textstream.h ../core/misc.h ../core/item.h -who.o: ../core/requesttypes.h ../core/error.h ../db/dbitemquery.h -who.o: ../db/dbitemcolumns.h ../core/confparser.h ../core/user.h +who.o: ../core/requesttypes.h ../core/error.h ../core/confparser.h +who.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h who.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h who.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h who.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h @@ -1244,14 +1279,14 @@ who.o: ../templates/locale.h ../templates/localefilter.h ../../ezc/src/ezc.h who.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h ../../ezc/src/pattern.h who.o: functions.h functionparser.h ../core/cur.h adduser.h cat.h chmod.h who.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -who.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h -who.o: node.h passwd.h priv.h reload.h rm.h run.h sort.h specialdefault.h -who.o: stat.h subject.h template.h tinymce.h uname.h upload.h uptime.h vim.h -who.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -who.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h -who.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -who.o: ../core/lastcontainer.h ../templates/misc.h -who.o: ../templates/htmltextstream.h ../core/mounts.h ../core/mountparser.h -who.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -who.o: ../core/loadavg.h ../core/image.h ../core/basethread.h +who.o: env.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h +who.o: nicedit.h node.h passwd.h priv.h reload.h rm.h run.h sort.h +who.o: specialdefault.h stat.h subject.h template.h tinymce.h uname.h +who.o: upload.h uptime.h vim.h ../core/htmlfilter.h +who.o: ../../ezc/src/stringconv.h ../notify/notifythread.h +who.o: ../core/basethread.h ../core/synchro.h ../notify/templatesnotify.h +who.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h +who.o: ../templates/misc.h ../templates/htmltextstream.h ../core/mounts.h +who.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h +who.o: ../core/group.h ../core/loadavg.h ../core/image.h ../core/basethread.h who.o: ../core/threadmanager.h ../core/synchro.h diff --git a/functions/Makefile.o.dep b/functions/Makefile.o.dep index 988410e..bdd2d33 100755 --- a/functions/Makefile.o.dep +++ b/functions/Makefile.o.dep @@ -1 +1 @@ -o = adduser.o cat.o chmod.o chown.o ckeditor.o cp.o default.o download.o emacs.o functionbase.o functionparser.o functions.o last.o ln.o login.o logout.o ls.o man.o meta.o mkdir.o mount.o mv.o nicedit.o node.o passwd.o priv.o privchanger.o reload.o rm.o run.o sort.o specialdefault.o stat.o subject.o template.o tinymce.o uname.o upload.o uptime.o vim.o who.o +o = adduser.o cat.o chmod.o chown.o ckeditor.o cp.o default.o download.o emacs.o env.o functionbase.o functionparser.o functions.o last.o ln.o login.o logout.o ls.o man.o meta.o mkdir.o mount.o mv.o nicedit.o node.o passwd.o priv.o privchanger.o reload.o rm.o run.o sort.o specialdefault.o stat.o subject.o template.o tinymce.o uname.o upload.o uptime.o vim.o who.o diff --git a/functions/adduser.cpp b/functions/adduser.cpp index 1c0da65..ac7187a 100755 --- a/functions/adduser.cpp +++ b/functions/adduser.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -106,7 +106,7 @@ void AddUser::MakePost() up.pass = pass; system->crypt.PassHashCrypt(up); - cur->request->status = db->AddUser(user, up.pass, up.pass_encrypted, up.pass_type, up.pass_hash_salted); + cur->request->status = db->AddUser(user, up); if( cur->request->status == WINIX_ERR_OK ) { diff --git a/functions/env.cpp b/functions/env.cpp new file mode 100755 index 0000000..9df4399 --- /dev/null +++ b/functions/env.cpp @@ -0,0 +1,183 @@ +/* + * This file is a part of Winix + * and is not publicly distributed + * + * Copyright (c) 2012, Tomasz Sowa + * All rights reserved. + * + */ + +#include "env.h" +#include "core/log.h" + + +namespace Fun +{ + +Env::Env() +{ + fun.url = L"env"; + puser = 0; +} + + +bool Env::HasAccess() +{ + if( !cur->session->puser ) + return false; + + if( cur->request->IsParam(L"a") ) + { + // show/change admin environment variables for a user + + if( !cur->session->puser->super_user ) + return false; + } + + if( !GetUser() ) + return false; + +return true; +} + + + +bool Env::Parse(const std::wstring & env_str) +{ + space.Clear(); + conf_parser.SetSpace(space); + conf_parser.UTF8(config->utf8); + conf_parser.SplitSingle(true); + +return (conf_parser.ParseString(env_str) == ConfParser::ok); +} + + +bool Env::EditAdminEnv(long user_id, const std::wstring & env_str) +{ + if( Parse(env_str) ) + { + if( db->ChangeUserAdminEnv(user_id, space) == WINIX_ERR_OK ) + { + User * puser = system->users.GetUser(user_id); + + if( puser ) + puser->aenv = space; + + return true; + } + else + { + log << log1 << "Evn: a problem with changing environment variables for user: " + << cur->session->puser->name << ", id: " << cur->session->puser->id << logend; + } + } + else + { + log << log2 << "Env: Syntax error in line: " << conf_parser.line << logend; + slog << logerror << "Syntax error in line: " << conf_parser.line << logend; + } + +return false; +} + + +bool Env::EditEnv(long user_id, const std::wstring & env_str) +{ + if( Parse(env_str) ) + { + if( db->ChangeUserEnv(user_id, space) == WINIX_ERR_OK ) + { + User * puser = system->users.GetUser(user_id); + + if( puser ) + puser->env = space; + + return true; + } + else + { + log << log1 << "Evn: a problem with changing admin environment variables for user: " + << cur->session->puser->name << ", id: " << cur->session->puser->id << logend; + } + } + else + { + log << log2 << "Env: Syntax error in line: " << conf_parser.line << logend; + slog << logerror << "Syntax error in line: " << conf_parser.line << logend; + } + +return false; +} + + +void Env::SaveEnv() +{ + if( GetUser() ) + { + const std::wstring & env_str = cur->request->PostVar(L"envvar"); + long user_id = GetUser()->id; + bool status = false; + + if( cur->request->IsParam(L"a") ) + { + if( cur->session->puser->super_user ) + status = EditAdminEnv(user_id, env_str); + } + else + { + status = EditEnv(user_id, env_str); + } + + if( status ) + system->RedirectToLastItem(); + } +} + + +User * Env::GetUser() +{ + if( cur->request->id != req_id ) + { + req_id = cur->request->id; + puser = 0; + + if( cur->session->puser ) + { + if( cur->session->puser->super_user && cur->request->IsPostVar(L"userid") ) + { + long id = Tol(cur->request->PostVar(L"userid")); + puser = system->users.GetUser(id); + } + else + { + puser = cur->session->puser; + } + } + } + +return puser; +} + + +void Env::MakePost() +{ + if( cur->session->puser ) + { + if( cur->request->IsPostVar(L"changeuser") ) + { + // show environments variables for the specified user + if( GetUser() ) + log << log2 << "Env: changing user to: " << GetUser()->name << ", id: " << GetUser()->id << logend; + } + else + { + // save environment variables + SaveEnv(); + } + } +} + + +} // namespace + diff --git a/functions/env.h b/functions/env.h new file mode 100755 index 0000000..3286b2b --- /dev/null +++ b/functions/env.h @@ -0,0 +1,53 @@ +/* + * This file is a part of Winix + * and is not publicly distributed + * + * Copyright (c) 2012, Tomasz Sowa + * All rights reserved. + * + */ + +#ifndef headerfile_winix_functions_env +#define headerfile_winix_functions_env + +#include "functionbase.h" +#include "core/confparser.h" + + +namespace Fun +{ + + +class Env : public FunctionBase +{ +public: + + Env(); + + bool EditAdminEnv(long user_id, const std::wstring & env_str); + bool EditEnv(long user_id, const std::wstring & env_str); + + bool HasAccess(); + void MakePost(); + + // used mainly by templates + // can return a null pointer + User * GetUser(); + +private: + + ConfParser conf_parser; + Space space; + User * puser; + size_t req_id; + + bool Parse(const std::wstring & env_str); + void SaveEnv(); + + +}; + + +} // namespace + +#endif diff --git a/functions/functions.cpp b/functions/functions.cpp index 5dc636c..031896c 100755 --- a/functions/functions.cpp +++ b/functions/functions.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010-2011, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -185,6 +185,7 @@ void Functions::CreateFunctions() Add(fun_default); Add(fun_download); Add(fun_emacs); + Add(fun_env); Add(fun_last); Add(fun_login); Add(fun_logout); diff --git a/functions/functions.h b/functions/functions.h index 077c774..e7e1ecd 100755 --- a/functions/functions.h +++ b/functions/functions.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -22,6 +22,7 @@ #include "default.h" #include "download.h" #include "emacs.h" +#include "env.h" #include "last.h" #include "login.h" #include "logout.h" @@ -70,6 +71,7 @@ public: Fun::Default fun_default; Fun::Download fun_download; Fun::Emacs fun_emacs; + Fun::Env fun_env; Fun::Last fun_last; Fun::Login fun_login; Fun::Logout fun_logout; diff --git a/html/fun_env.html b/html/fun_env.html new file mode 100755 index 0000000..2889d0e --- /dev/null +++ b/html/fun_env.html @@ -0,0 +1,43 @@ +

{env_header}

+ + +[if user_super_user] + + [if winix_function_param_is "a"] +

{env_change_admin_env_for_user}:

+ [else] +

{env_change_env_for_user}:

+ [end] + +
+
+ {form_env_legend} + + + + + + +
+
+ +[end] + + + + +
+
+ {form_env_legend} + + + + + +
+
+ diff --git a/locale/en b/locale/en index e63e5e6..b6ea5a3 100755 --- a/locale/en +++ b/locale/en @@ -83,6 +83,13 @@ form_ticket_progress = Progress (0-100) form_ticket_create_submit = Create a new ticket form_ticket_edit_submit = Edit a ticket + +env_header = Environment variables for a user +form_env_legend = Environment variables form +env_change_env_for_user = Change environment variables for user +env_change_admin_env_for_user = Change admin environment variables for user +env_change_user = Change user + default_header = Default item in a directory default_make_redirect = Make redirect form_default_legend = Default item form diff --git a/locale/pl b/locale/pl index 8faeed4..d5fffab 100755 --- a/locale/pl +++ b/locale/pl @@ -83,6 +83,13 @@ form_ticket_progress = Postęp prac (0-100) form_ticket_create_submit = Załóż zgłoszenie form_ticket_edit_submit = Edytuj zgłoszenie +env_header = Zmienne środowiskowe +form_env_legend = Formularz zmiany zmiennych środowiskowych dla użytkownika +env_change_env_for_user = Zmień zmienne środowiskowe dla użytkownika +env_change_admin_env_for_user = Zmień zmienne środowiskowe administracyjne dla użytkownika +env_change_user = Zmień użytkownika + + default_header = Domyślna pozycja w katalogu default_make_redirect = Wykonaj przekierowanie form_default_legend = Formularz zmiany pozycji domyślnej diff --git a/main/Makefile.dep b/main/Makefile.dep index 3743f7f..8e3dc28 100755 --- a/main/Makefile.dep +++ b/main/Makefile.dep @@ -30,13 +30,13 @@ main.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h main.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h main.o: ../functions/privchanger.h ../functions/chown.h main.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -main.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -main.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -main.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -main.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -main.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -main.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -main.o: ../functions/specialdefault.h ../functions/stat.h +main.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +main.o: ../functions/last.h ../functions/login.h ../functions/logout.h +main.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +main.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +main.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +main.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +main.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h main.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h main.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h main.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h diff --git a/notify/Makefile.dep b/notify/Makefile.dep index 4d787b5..b06b6fc 100755 --- a/notify/Makefile.dep +++ b/notify/Makefile.dep @@ -7,35 +7,36 @@ notify.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h notify.o: ../../ezc/src/pattern.h ../../ezc/src/item.h notify.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h notify.o: ../../ezc/src/stringconv.h ../templates/misc.h -notify.o: ../templates/htmltextstream.h ../core/textstream.h notifythread.h -notify.o: ../core/basethread.h ../core/synchro.h templatesnotify.h -notify.o: ../core/config.h ../core/confparser.h ../core/htmlfilter.h -notify.o: ../core/users.h ../core/user.h ../core/ugcontainer.h ../core/log.h -notify.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -notify.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -notify.o: ../core/error.h ../core/config.h ../templates/htmltextstream.h -notify.o: ../core/session.h ../core/plugindata.h ../core/rebus.h -notify.o: ../core/mount.h ../core/lastcontainer.h ../db/db.h ../db/dbbase.h -notify.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -notify.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -notify.o: ../core/user.h ../core/group.h ../core/dircontainer.h -notify.o: ../core/ugcontainer.h ../templates/misc.h ../templates/templates.h -notify.o: ../templates/patterncacher.h ../templates/indexpatterns.h -notify.o: ../templates/patterns.h ../templates/changepatterns.h ../core/cur.h -notify.o: ../core/system.h ../core/dirs.h ../core/dircontainer.h -notify.o: ../notify/notify.h ../core/mounts.h ../core/mountparser.h -notify.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -notify.o: ../core/group.h ../core/loadavg.h ../core/image.h -notify.o: ../core/basethread.h ../core/threadmanager.h -notify.o: ../core/sessionmanager.h ../core/sessioncontainer.h -notify.o: ../core/system.h ../core/htmlfilter.h ../core/request.h -notify.o: ../core/dirs.h ../core/plugin.h ../core/pluginmsg.h -notify.o: ../core/sessionmanager.h ../functions/functions.h -notify.o: ../functions/functionbase.h ../core/synchro.h -notify.o: ../functions/functionparser.h ../functions/adduser.h -notify.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h -notify.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h -notify.o: ../functions/default.h ../functions/download.h ../functions/emacs.h +notify.o: ../templates/htmltextstream.h ../core/textstream.h +notify.o: ../core/confparser.h notifythread.h ../core/basethread.h +notify.o: ../core/synchro.h templatesnotify.h ../core/config.h +notify.o: ../core/htmlfilter.h ../core/users.h ../core/user.h +notify.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h +notify.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h +notify.o: ../core/request.h ../core/requesttypes.h ../core/error.h +notify.o: ../core/config.h ../templates/htmltextstream.h ../core/session.h +notify.o: ../core/plugindata.h ../core/rebus.h ../core/mount.h +notify.o: ../core/lastcontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h +notify.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h +notify.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h ../core/group.h +notify.o: ../core/dircontainer.h ../core/ugcontainer.h ../templates/misc.h +notify.o: ../templates/templates.h ../templates/patterncacher.h +notify.o: ../templates/indexpatterns.h ../templates/patterns.h +notify.o: ../templates/changepatterns.h ../core/cur.h ../core/system.h +notify.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h +notify.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h +notify.o: ../core/run.h ../core/users.h ../core/groups.h ../core/group.h +notify.o: ../core/loadavg.h ../core/image.h ../core/basethread.h +notify.o: ../core/threadmanager.h ../core/sessionmanager.h +notify.o: ../core/sessioncontainer.h ../core/system.h ../core/htmlfilter.h +notify.o: ../core/request.h ../core/dirs.h ../core/plugin.h +notify.o: ../core/pluginmsg.h ../core/sessionmanager.h +notify.o: ../functions/functions.h ../functions/functionbase.h +notify.o: ../core/synchro.h ../functions/functionparser.h +notify.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h +notify.o: ../functions/privchanger.h ../functions/chown.h +notify.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h +notify.o: ../functions/download.h ../functions/emacs.h ../functions/env.h notify.o: ../functions/last.h ../functions/login.h ../functions/logout.h notify.o: ../functions/ln.h ../functions/ls.h ../functions/man.h notify.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h @@ -53,9 +54,9 @@ notifythread.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h notifythread.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h notifythread.o: ../core/textstream.h ../templates/misc.h notifythread.o: ../templates/localefilter.h ../templates/locale.h -notifythread.o: ../templates/htmltextstream.h notifypool.h -notifythread.o: ../templates/locale.h ../core/confparser.h ../core/config.h -notifythread.o: ../core/confparser.h ../core/htmlfilter.h ../core/users.h +notifythread.o: ../templates/htmltextstream.h ../core/confparser.h +notifythread.o: notifypool.h ../templates/locale.h ../core/confparser.h +notifythread.o: ../core/config.h ../core/htmlfilter.h ../core/users.h notifythread.o: ../core/user.h ../core/ugcontainer.h ../core/log.h notifythread.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h notifythread.o: ../core/cur.h ../core/request.h ../core/requesttypes.h @@ -73,8 +74,8 @@ templatesnotify.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h templatesnotify.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h templatesnotify.o: ../core/textstream.h ../templates/misc.h templatesnotify.o: ../templates/localefilter.h ../templates/locale.h -templatesnotify.o: ../templates/htmltextstream.h notifypool.h -templatesnotify.o: ../templates/locale.h ../core/confparser.h +templatesnotify.o: ../templates/htmltextstream.h ../core/confparser.h +templatesnotify.o: notifypool.h ../templates/locale.h ../core/confparser.h templatesnotify.o: ../core/plugin.h ../core/pluginmsg.h ../core/log.h templatesnotify.o: ../core/textstream.h ../core/logmanipulators.h templatesnotify.o: ../core/slog.h ../core/cur.h ../core/request.h @@ -83,11 +84,10 @@ templatesnotify.o: ../templates/htmltextstream.h ../core/session.h templatesnotify.o: ../core/user.h ../core/plugindata.h ../core/rebus.h templatesnotify.o: ../core/mount.h ../core/system.h ../core/sessionmanager.h templatesnotify.o: ../core/synchro.h ../functions/functions.h -templatesnotify.o: ../functions/functionbase.h ../core/item.h -templatesnotify.o: ../core/confparser.h ../db/db.h ../db/dbbase.h -templatesnotify.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -templatesnotify.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -templatesnotify.o: ../core/group.h ../core/dircontainer.h +templatesnotify.o: ../functions/functionbase.h ../core/item.h ../db/db.h +templatesnotify.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h +templatesnotify.o: ../core/error.h ../db/dbitemquery.h ../db/dbitemcolumns.h +templatesnotify.o: ../core/user.h ../core/group.h ../core/dircontainer.h templatesnotify.o: ../core/ugcontainer.h ../core/request.h ../core/config.h templatesnotify.o: ../core/htmlfilter.h ../core/system.h ../core/dirs.h templatesnotify.o: ../core/dircontainer.h ../notify/notify.h ../core/mounts.h @@ -101,10 +101,10 @@ templatesnotify.o: ../functions/chmod.h ../functions/privchanger.h templatesnotify.o: ../functions/chown.h ../functions/ckeditor.h templatesnotify.o: ../functions/cp.h ../functions/default.h templatesnotify.o: ../functions/download.h ../functions/emacs.h -templatesnotify.o: ../functions/last.h ../functions/login.h -templatesnotify.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -templatesnotify.o: ../functions/man.h ../functions/meta.h -templatesnotify.o: ../functions/mkdir.h ../functions/mv.h +templatesnotify.o: ../functions/env.h ../functions/last.h +templatesnotify.o: ../functions/login.h ../functions/logout.h +templatesnotify.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +templatesnotify.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h templatesnotify.o: ../functions/nicedit.h ../functions/node.h templatesnotify.o: ../functions/passwd.h ../functions/priv.h templatesnotify.o: ../functions/reload.h ../functions/rm.h diff --git a/plugins/export/Makefile.dep b/plugins/export/Makefile.dep index f910d5e..9632e26 100755 --- a/plugins/export/Makefile.dep +++ b/plugins/export/Makefile.dep @@ -3,51 +3,50 @@ edb.o: edb.h ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h edb.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h edb.o: ../../core/confparser.h ../../core/requesttypes.h ../../core/error.h -edb.o: export.h ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h -edb.o: ../../db/dbbase.h ../../db/dbitemquery.h ../../core/item.h -edb.o: ../../db/dbitemcolumns.h ../../core/confparser.h ../../core/user.h -edb.o: ../../core/group.h ../../core/dircontainer.h ../../core/ugcontainer.h -edb.o: ../../core/log.h ../../core/textstream.h ../../core/logmanipulators.h -edb.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -edb.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -edb.o: ../../templates/htmltextstream.h ../../core/session.h -edb.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -edb.o: ../../core/mount.h ../../templates/locale.h ../../notify/notify.h -edb.o: ../../notify/notifypool.h ../../templates/patterns.h -edb.o: ../../templates/locale.h ../../templates/localefilter.h -edb.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h -edb.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -edb.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -edb.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -edb.o: ../../core/basethread.h ../../core/synchro.h -edb.o: ../../notify/templatesnotify.h ../../core/config.h ../../core/users.h -edb.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -edb.o: ../../templates/misc.h ../../templates/htmltextstream.h -edb.o: ../../core/log.h +edb.o: ../../core/confparser.h export.h ../../core/dirs.h +edb.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h +edb.o: ../../db/dbitemquery.h ../../core/item.h ../../db/dbitemcolumns.h +edb.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h +edb.o: ../../core/ugcontainer.h ../../core/log.h ../../core/textstream.h +edb.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h +edb.o: ../../core/request.h ../../core/error.h ../../core/config.h +edb.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h +edb.o: ../../core/session.h ../../core/user.h ../../core/plugindata.h +edb.o: ../../core/rebus.h ../../core/mount.h ../../templates/locale.h +edb.o: ../../notify/notify.h ../../notify/notifypool.h +edb.o: ../../templates/patterns.h ../../templates/locale.h +edb.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +edb.o: ../../../ezc/src/utf8.h ../../../ezc/src/generator.h +edb.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +edb.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +edb.o: ../../notify/notifythread.h ../../core/basethread.h +edb.o: ../../core/synchro.h ../../notify/templatesnotify.h +edb.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h +edb.o: ../../core/lastcontainer.h ../../templates/misc.h +edb.o: ../../templates/htmltextstream.h ../../core/log.h exportinfo.o: ../../core/log.h exportinfo.h ../../core/system.h exportinfo.o: ../../core/dirs.h ../../core/item.h ../../core/confparser.h exportinfo.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h exportinfo.o: ../../db/dbitemquery.h ../../core/item.h -exportinfo.o: ../../db/dbitemcolumns.h ../../core/confparser.h -exportinfo.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -exportinfo.o: ../../core/ugcontainer.h ../../core/log.h -exportinfo.o: ../../core/textstream.h ../../core/logmanipulators.h -exportinfo.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -exportinfo.o: ../../core/requesttypes.h ../../core/error.h -exportinfo.o: ../../core/config.h ../../core/htmlfilter.h +exportinfo.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h +exportinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h +exportinfo.o: ../../core/log.h ../../core/textstream.h +exportinfo.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h +exportinfo.o: ../../core/request.h ../../core/requesttypes.h +exportinfo.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h exportinfo.o: ../../templates/htmltextstream.h ../../core/textstream.h exportinfo.o: ../../core/misc.h ../../core/session.h ../../core/user.h exportinfo.o: ../../core/plugindata.h ../../core/rebus.h ../../core/mount.h -exportinfo.o: ../../templates/locale.h ../../notify/notify.h -exportinfo.o: ../../notify/notifypool.h ../../templates/patterns.h -exportinfo.o: ../../templates/locale.h ../../templates/localefilter.h -exportinfo.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h -exportinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -exportinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -exportinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -exportinfo.o: ../../core/basethread.h ../../core/synchro.h -exportinfo.o: ../../notify/templatesnotify.h ../../core/config.h -exportinfo.o: ../../core/users.h ../../core/ugcontainer.h +exportinfo.o: ../../templates/locale.h ../../core/confparser.h +exportinfo.o: ../../notify/notify.h ../../notify/notifypool.h +exportinfo.o: ../../templates/patterns.h ../../templates/locale.h +exportinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +exportinfo.o: ../../../ezc/src/utf8.h ../../../ezc/src/generator.h +exportinfo.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +exportinfo.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +exportinfo.o: ../../notify/notifythread.h ../../core/basethread.h +exportinfo.o: ../../core/synchro.h ../../notify/templatesnotify.h +exportinfo.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h exportinfo.o: ../../core/lastcontainer.h ../../templates/misc.h exportinfo.o: ../../templates/htmltextstream.h ../../core/mounts.h exportinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h @@ -97,7 +96,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h diff --git a/plugins/gallery/Makefile.dep b/plugins/gallery/Makefile.dep index 8c1ae9c..983ba2d 100755 --- a/plugins/gallery/Makefile.dep +++ b/plugins/gallery/Makefile.dep @@ -4,8 +4,8 @@ gallery.o: gallery.h ../../functions/functionbase.h ../../core/item.h gallery.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h gallery.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h gallery.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h -gallery.o: ../../core/error.h ../../db/dbitemquery.h ../../db/dbitemcolumns.h -gallery.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +gallery.o: ../../core/error.h ../../core/confparser.h ../../db/dbitemquery.h +gallery.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h gallery.o: ../../core/dircontainer.h ../../core/ugcontainer.h gallery.o: ../../core/log.h ../../core/textstream.h gallery.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h @@ -35,8 +35,8 @@ init.o: gallery.h ../../functions/functionbase.h ../../core/item.h init.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h init.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h init.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h -init.o: ../../core/error.h ../../db/dbitemquery.h ../../db/dbitemcolumns.h -init.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +init.o: ../../core/error.h ../../core/confparser.h ../../db/dbitemquery.h +init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h init.o: ../../core/textstream.h ../../core/logmanipulators.h init.o: ../../core/slog.h ../../core/cur.h ../../core/request.h @@ -70,7 +70,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h @@ -89,8 +89,8 @@ templates.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h templates.o: ../../db/dbconn.h ../../db/dbtextstream.h templates.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h templates.o: ../../core/requesttypes.h ../../core/error.h -templates.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -templates.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +templates.o: ../../core/confparser.h ../../db/dbitemquery.h +templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h templates.o: ../../core/log.h ../../core/textstream.h templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h @@ -124,9 +124,9 @@ templates.o: ../../functions/chmod.h ../../functions/privchanger.h templates.o: ../../functions/chown.h ../../functions/ckeditor.h templates.o: ../../functions/cp.h ../../functions/default.h templates.o: ../../functions/download.h ../../functions/emacs.h -templates.o: ../../functions/last.h ../../functions/login.h -templates.o: ../../functions/logout.h ../../functions/ln.h -templates.o: ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/env.h ../../functions/last.h +templates.o: ../../functions/login.h ../../functions/logout.h +templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h diff --git a/plugins/group/Makefile.dep b/plugins/group/Makefile.dep index 5d324b4..e771aa0 100755 --- a/plugins/group/Makefile.dep +++ b/plugins/group/Makefile.dep @@ -68,7 +68,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h @@ -97,8 +97,8 @@ templates.o: ../../core/config.h ../../core/cur.h ../../core/system.h templates.o: ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h templates.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h templates.o: ../../core/textstream.h ../../core/error.h -templates.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -templates.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +templates.o: ../../core/confparser.h ../../db/dbitemquery.h +templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h templates.o: ../../core/log.h ../../core/textstream.h templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h @@ -126,9 +126,10 @@ templates.o: ../../functions/cat.h ../../functions/chmod.h templates.o: ../../functions/privchanger.h ../../functions/chown.h templates.o: ../../functions/ckeditor.h ../../functions/cp.h templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/emacs.h ../../functions/env.h +templates.o: ../../functions/last.h ../../functions/login.h +templates.o: ../../functions/logout.h ../../functions/ln.h +templates.o: ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h diff --git a/plugins/menu/Makefile.dep b/plugins/menu/Makefile.dep index 1f2fdc6..8401e78 100755 --- a/plugins/menu/Makefile.dep +++ b/plugins/menu/Makefile.dep @@ -38,7 +38,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h @@ -66,8 +66,8 @@ templates.o: ../../core/config.h ../../core/cur.h ../../core/system.h templates.o: ../../core/sessionmanager.h ../../core/htmlfilter.h templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h templates.o: ../../db/dbtextstream.h ../../core/textstream.h -templates.o: ../../core/error.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/confparser.h +templates.o: ../../core/error.h ../../core/confparser.h +templates.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h templates.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h templates.o: ../../core/ugcontainer.h ../../core/log.h ../../core/plugin.h templates.o: ../../core/pluginmsg.h ../../core/plugindata.h @@ -94,9 +94,10 @@ templates.o: ../../functions/cat.h ../../functions/chmod.h templates.o: ../../functions/privchanger.h ../../functions/chown.h templates.o: ../../functions/ckeditor.h ../../functions/cp.h templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/emacs.h ../../functions/env.h +templates.o: ../../functions/last.h ../../functions/login.h +templates.o: ../../functions/logout.h ../../functions/ln.h +templates.o: ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h diff --git a/plugins/stats/Makefile.dep b/plugins/stats/Makefile.dep index 7f4d3bd..7dcf06d 100755 --- a/plugins/stats/Makefile.dep +++ b/plugins/stats/Makefile.dep @@ -39,7 +39,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h @@ -72,22 +72,21 @@ templates.o: ../../templates/htmltextstream.h ../../core/textstream.h templates.o: ../../core/system.h ../../core/dirs.h ../../core/dircontainer.h templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h templates.o: ../../db/dbtextstream.h ../../core/error.h -templates.o: ../../db/dbitemquery.h ../../core/item.h -templates.o: ../../db/dbitemcolumns.h ../../core/confparser.h -templates.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -templates.o: ../../core/ugcontainer.h ../../notify/notify.h -templates.o: ../../notify/notifypool.h ../../templates/locale.h -templates.o: ../../templates/patterns.h ../../templates/locale.h -templates.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h -templates.o: ../../../ezc/src/utf8.h ../../../ezc/src/generator.h -templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h -templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -templates.o: ../../notify/notifythread.h ../../core/basethread.h -templates.o: ../../core/synchro.h ../../notify/templatesnotify.h -templates.o: ../../core/config.h ../../core/users.h ../../core/user.h -templates.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -templates.o: ../../core/cur.h ../../core/session.h ../../core/rebus.h -templates.o: ../../core/mount.h ../../templates/misc.h +templates.o: ../../core/confparser.h ../../db/dbitemquery.h ../../core/item.h +templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h +templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h +templates.o: ../../notify/notify.h ../../notify/notifypool.h +templates.o: ../../templates/locale.h ../../templates/patterns.h +templates.o: ../../templates/locale.h ../../templates/localefilter.h +templates.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h +templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h +templates.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h +templates.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h +templates.o: ../../core/basethread.h ../../core/synchro.h +templates.o: ../../notify/templatesnotify.h ../../core/config.h +templates.o: ../../core/users.h ../../core/user.h ../../core/ugcontainer.h +templates.o: ../../core/lastcontainer.h ../../core/cur.h ../../core/session.h +templates.o: ../../core/rebus.h ../../core/mount.h ../../templates/misc.h templates.o: ../../templates/htmltextstream.h ../../core/mounts.h templates.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h templates.o: ../../core/users.h ../../core/groups.h ../../core/group.h @@ -102,9 +101,9 @@ templates.o: ../../functions/chmod.h ../../functions/privchanger.h templates.o: ../../functions/chown.h ../../functions/ckeditor.h templates.o: ../../functions/cp.h ../../functions/default.h templates.o: ../../functions/download.h ../../functions/emacs.h -templates.o: ../../functions/last.h ../../functions/login.h -templates.o: ../../functions/logout.h ../../functions/ln.h -templates.o: ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/env.h ../../functions/last.h +templates.o: ../../functions/login.h ../../functions/logout.h +templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h diff --git a/plugins/thread/Makefile.dep b/plugins/thread/Makefile.dep index 99d07d7..772bf8c 100755 --- a/plugins/thread/Makefile.dep +++ b/plugins/thread/Makefile.dep @@ -5,8 +5,8 @@ createthread.o: ../../core/item.h ../../core/confparser.h ../../db/db.h createthread.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h createthread.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h createthread.o: ../../core/requesttypes.h ../../core/error.h -createthread.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -createthread.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +createthread.o: ../../core/confparser.h ../../db/dbitemquery.h +createthread.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h createthread.o: ../../core/dircontainer.h ../../core/ugcontainer.h createthread.o: ../../core/log.h ../../core/textstream.h createthread.o: ../../core/logmanipulators.h ../../core/slog.h @@ -41,27 +41,27 @@ createthread.o: ../../functions/chmod.h ../../functions/privchanger.h createthread.o: ../../functions/chown.h ../../functions/ckeditor.h createthread.o: ../../functions/cp.h ../../functions/default.h createthread.o: ../../functions/download.h ../../functions/emacs.h -createthread.o: ../../functions/last.h ../../functions/login.h -createthread.o: ../../functions/logout.h ../../functions/ln.h -createthread.o: ../../functions/ls.h ../../functions/man.h -createthread.o: ../../functions/meta.h ../../functions/mkdir.h -createthread.o: ../../functions/mv.h ../../functions/nicedit.h -createthread.o: ../../functions/node.h ../../functions/passwd.h -createthread.o: ../../functions/priv.h ../../functions/reload.h -createthread.o: ../../functions/rm.h ../../functions/sort.h -createthread.o: ../../functions/specialdefault.h ../../functions/stat.h -createthread.o: ../../functions/subject.h ../../functions/template.h -createthread.o: ../../functions/tinymce.h ../../functions/uname.h -createthread.o: ../../functions/upload.h ../../functions/uptime.h -createthread.o: ../../functions/who.h ../../functions/vim.h -createthread.o: ../../core/htmlfilter.h +createthread.o: ../../functions/env.h ../../functions/last.h +createthread.o: ../../functions/login.h ../../functions/logout.h +createthread.o: ../../functions/ln.h ../../functions/ls.h +createthread.o: ../../functions/man.h ../../functions/meta.h +createthread.o: ../../functions/mkdir.h ../../functions/mv.h +createthread.o: ../../functions/nicedit.h ../../functions/node.h +createthread.o: ../../functions/passwd.h ../../functions/priv.h +createthread.o: ../../functions/reload.h ../../functions/rm.h +createthread.o: ../../functions/sort.h ../../functions/specialdefault.h +createthread.o: ../../functions/stat.h ../../functions/subject.h +createthread.o: ../../functions/template.h ../../functions/tinymce.h +createthread.o: ../../functions/uname.h ../../functions/upload.h +createthread.o: ../../functions/uptime.h ../../functions/who.h +createthread.o: ../../functions/vim.h ../../core/htmlfilter.h funthread.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h funthread.o: funthread.h ../../functions/functionbase.h ../../core/item.h funthread.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h funthread.o: ../../db/dbconn.h ../../db/dbtextstream.h funthread.o: ../../core/textstream.h ../../core/misc.h ../../core/error.h -funthread.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -funthread.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +funthread.o: ../../core/confparser.h ../../db/dbitemquery.h +funthread.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h funthread.o: ../../core/dircontainer.h ../../core/ugcontainer.h funthread.o: ../../core/log.h ../../core/textstream.h funthread.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h @@ -92,8 +92,8 @@ init.o: ../../functions/functionbase.h ../../core/item.h init.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h init.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h init.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h -init.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -init.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +init.o: ../../core/confparser.h ../../db/dbitemquery.h +init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h init.o: ../../core/textstream.h ../../core/logmanipulators.h init.o: ../../core/slog.h ../../core/cur.h ../../core/request.h @@ -127,7 +127,7 @@ init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../functions/chown.h ../../functions/ckeditor.h init.o: ../../functions/cp.h ../../functions/default.h init.o: ../../functions/download.h ../../functions/emacs.h -init.o: ../../functions/last.h ../../functions/login.h +init.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h init.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h init.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h init.o: ../../functions/mv.h ../../functions/nicedit.h ../../functions/node.h @@ -146,8 +146,8 @@ reply.o: reply.h ../../functions/functionbase.h ../../core/item.h reply.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h reply.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h reply.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h -reply.o: ../../core/error.h ../../db/dbitemquery.h ../../db/dbitemcolumns.h -reply.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +reply.o: ../../core/error.h ../../core/confparser.h ../../db/dbitemquery.h +reply.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h reply.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h reply.o: ../../core/textstream.h ../../core/logmanipulators.h reply.o: ../../core/slog.h ../../core/cur.h ../../core/request.h @@ -179,7 +179,7 @@ reply.o: ../../functions/chmod.h ../../functions/privchanger.h reply.o: ../../functions/chown.h ../../functions/ckeditor.h reply.o: ../../functions/cp.h ../../functions/default.h reply.o: ../../functions/download.h ../../functions/emacs.h -reply.o: ../../functions/last.h ../../functions/login.h +reply.o: ../../functions/env.h ../../functions/last.h ../../functions/login.h reply.o: ../../functions/logout.h ../../functions/ln.h ../../functions/ls.h reply.o: ../../functions/man.h ../../functions/meta.h ../../functions/mkdir.h reply.o: ../../functions/mv.h ../../functions/nicedit.h @@ -201,8 +201,8 @@ showthreads.o: ../../core/confparser.h ../../db/db.h ../../db/dbbase.h showthreads.o: ../../db/dbconn.h ../../db/dbtextstream.h showthreads.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h showthreads.o: ../../core/requesttypes.h ../../core/error.h -showthreads.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -showthreads.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +showthreads.o: ../../core/confparser.h ../../db/dbitemquery.h +showthreads.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h showthreads.o: ../../core/dircontainer.h ../../core/ugcontainer.h showthreads.o: ../../core/log.h ../../core/textstream.h showthreads.o: ../../core/logmanipulators.h ../../core/slog.h @@ -237,8 +237,8 @@ templates.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h templates.o: ../../db/dbconn.h ../../db/dbtextstream.h templates.o: ../../core/textstream.h ../../core/misc.h templates.o: ../../core/requesttypes.h ../../core/error.h -templates.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -templates.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +templates.o: ../../core/confparser.h ../../db/dbitemquery.h +templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h templates.o: ../../core/log.h ../../core/textstream.h templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h @@ -272,9 +272,9 @@ templates.o: ../../functions/chmod.h ../../functions/privchanger.h templates.o: ../../functions/chown.h ../../functions/ckeditor.h templates.o: ../../functions/cp.h ../../functions/default.h templates.o: ../../functions/download.h ../../functions/emacs.h -templates.o: ../../functions/last.h ../../functions/login.h -templates.o: ../../functions/logout.h ../../functions/ln.h -templates.o: ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/env.h ../../functions/last.h +templates.o: ../../functions/login.h ../../functions/logout.h +templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h @@ -295,8 +295,8 @@ threadinfo.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h threadinfo.o: ../../db/dbconn.h ../../db/dbtextstream.h threadinfo.o: ../../core/textstream.h ../../core/misc.h threadinfo.o: ../../core/requesttypes.h ../../core/error.h -threadinfo.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -threadinfo.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +threadinfo.o: ../../core/confparser.h ../../db/dbitemquery.h +threadinfo.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h threadinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h threadinfo.o: ../../core/log.h ../../core/textstream.h threadinfo.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h diff --git a/plugins/ticket/Makefile.dep b/plugins/ticket/Makefile.dep index 4192541..fe54a54 100755 --- a/plugins/ticket/Makefile.dep +++ b/plugins/ticket/Makefile.dep @@ -4,10 +4,10 @@ createticket.o: createticket.h tdb.h ticket.h ../../db/dbbase.h createticket.o: ../../db/dbconn.h ../../db/dbtextstream.h createticket.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h createticket.o: ../../core/confparser.h ../../core/requesttypes.h -createticket.o: ../../core/error.h ../../functions/functionbase.h -createticket.o: ../../core/item.h ../../db/db.h ../../db/dbbase.h -createticket.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -createticket.o: ../../core/confparser.h ../../core/user.h ../../core/group.h +createticket.o: ../../core/error.h ../../core/confparser.h +createticket.o: ../../functions/functionbase.h ../../core/item.h +createticket.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h +createticket.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h createticket.o: ../../core/dircontainer.h ../../core/ugcontainer.h createticket.o: ../../core/log.h ../../core/textstream.h createticket.o: ../../core/logmanipulators.h ../../core/slog.h @@ -41,37 +41,37 @@ createticket.o: ../../functions/chmod.h ../../functions/privchanger.h createticket.o: ../../functions/chown.h ../../functions/ckeditor.h createticket.o: ../../functions/cp.h ../../functions/default.h createticket.o: ../../functions/download.h ../../functions/emacs.h -createticket.o: ../../functions/last.h ../../functions/login.h -createticket.o: ../../functions/logout.h ../../functions/ln.h -createticket.o: ../../functions/ls.h ../../functions/man.h -createticket.o: ../../functions/meta.h ../../functions/mkdir.h -createticket.o: ../../functions/mv.h ../../functions/nicedit.h -createticket.o: ../../functions/node.h ../../functions/passwd.h -createticket.o: ../../functions/priv.h ../../functions/reload.h -createticket.o: ../../functions/rm.h ../../functions/sort.h -createticket.o: ../../functions/specialdefault.h ../../functions/stat.h -createticket.o: ../../functions/subject.h ../../functions/template.h -createticket.o: ../../functions/tinymce.h ../../functions/uname.h -createticket.o: ../../functions/upload.h ../../functions/uptime.h -createticket.o: ../../functions/who.h ../../functions/vim.h -createticket.o: ../../core/htmlfilter.h sessiondata.h ../../core/plugindata.h -createticket.o: ../../functions/rm.h +createticket.o: ../../functions/env.h ../../functions/last.h +createticket.o: ../../functions/login.h ../../functions/logout.h +createticket.o: ../../functions/ln.h ../../functions/ls.h +createticket.o: ../../functions/man.h ../../functions/meta.h +createticket.o: ../../functions/mkdir.h ../../functions/mv.h +createticket.o: ../../functions/nicedit.h ../../functions/node.h +createticket.o: ../../functions/passwd.h ../../functions/priv.h +createticket.o: ../../functions/reload.h ../../functions/rm.h +createticket.o: ../../functions/sort.h ../../functions/specialdefault.h +createticket.o: ../../functions/stat.h ../../functions/subject.h +createticket.o: ../../functions/template.h ../../functions/tinymce.h +createticket.o: ../../functions/uname.h ../../functions/upload.h +createticket.o: ../../functions/uptime.h ../../functions/who.h +createticket.o: ../../functions/vim.h ../../core/htmlfilter.h sessiondata.h +createticket.o: ../../core/plugindata.h ../../functions/rm.h editticket.o: editticket.h tdb.h ticket.h ../../db/dbbase.h ../../db/dbconn.h editticket.o: ../../db/dbtextstream.h ../../core/textstream.h editticket.o: ../../core/misc.h ../../core/item.h ../../core/confparser.h -editticket.o: ../../core/requesttypes.h ../../core/error.h ticketinfo.h -editticket.o: ticketparser.h ticketconf.h ../../core/item.h -editticket.o: ../../core/system.h ../../core/dirs.h ../../core/dircontainer.h -editticket.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h -editticket.o: ../../db/dbitemcolumns.h ../../core/confparser.h -editticket.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -editticket.o: ../../core/ugcontainer.h ../../core/log.h -editticket.o: ../../core/textstream.h ../../core/logmanipulators.h -editticket.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -editticket.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -editticket.o: ../../templates/htmltextstream.h ../../core/session.h -editticket.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -editticket.o: ../../core/mount.h ../../templates/locale.h +editticket.o: ../../core/requesttypes.h ../../core/error.h +editticket.o: ../../core/confparser.h ticketinfo.h ticketparser.h +editticket.o: ticketconf.h ../../core/item.h ../../core/system.h +editticket.o: ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h +editticket.o: ../../db/dbbase.h ../../db/dbitemquery.h +editticket.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h +editticket.o: ../../core/dircontainer.h ../../core/ugcontainer.h +editticket.o: ../../core/log.h ../../core/textstream.h +editticket.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h +editticket.o: ../../core/request.h ../../core/error.h ../../core/config.h +editticket.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h +editticket.o: ../../core/session.h ../../core/user.h ../../core/plugindata.h +editticket.o: ../../core/rebus.h ../../core/mount.h ../../templates/locale.h editticket.o: ../../notify/notify.h ../../notify/notifypool.h editticket.o: ../../templates/patterns.h ../../templates/locale.h editticket.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h @@ -94,9 +94,9 @@ editticket.o: ../../functions/privchanger.h ../../core/request.h editticket.o: ../../functions/chown.h ../../functions/ckeditor.h editticket.o: ../../functions/cp.h ../../functions/default.h editticket.o: ../../functions/download.h ../../functions/emacs.h -editticket.o: ../../functions/last.h ../../functions/login.h -editticket.o: ../../functions/logout.h ../../functions/ln.h -editticket.o: ../../functions/ls.h ../../functions/man.h +editticket.o: ../../functions/env.h ../../functions/last.h +editticket.o: ../../functions/login.h ../../functions/logout.h +editticket.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h editticket.o: ../../functions/meta.h ../../functions/mkdir.h editticket.o: ../../functions/mv.h ../../functions/nicedit.h editticket.o: ../../functions/node.h ../../functions/passwd.h @@ -113,11 +113,11 @@ editticket.o: ../../functions/rm.h funticket.o: funticket.h tdb.h ticket.h ../../db/dbbase.h ../../db/dbconn.h funticket.o: ../../db/dbtextstream.h ../../core/textstream.h funticket.o: ../../core/misc.h ../../core/item.h ../../core/confparser.h -funticket.o: ../../core/requesttypes.h ../../core/error.h ticketinfo.h -funticket.o: ticketparser.h ticketconf.h ../../core/item.h -funticket.o: ../../core/system.h ../../core/dirs.h ../../core/dircontainer.h -funticket.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h -funticket.o: ../../db/dbitemcolumns.h ../../core/confparser.h +funticket.o: ../../core/requesttypes.h ../../core/error.h +funticket.o: ../../core/confparser.h ticketinfo.h ticketparser.h ticketconf.h +funticket.o: ../../core/item.h ../../core/system.h ../../core/dirs.h +funticket.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h +funticket.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h funticket.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h funticket.o: ../../core/ugcontainer.h ../../core/log.h funticket.o: ../../core/textstream.h ../../core/logmanipulators.h @@ -147,9 +147,10 @@ funticket.o: ../../functions/chmod.h ../../functions/privchanger.h funticket.o: ../../core/request.h ../../functions/chown.h funticket.o: ../../functions/ckeditor.h ../../functions/cp.h funticket.o: ../../functions/default.h ../../functions/download.h -funticket.o: ../../functions/emacs.h ../../functions/last.h -funticket.o: ../../functions/login.h ../../functions/logout.h -funticket.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h +funticket.o: ../../functions/emacs.h ../../functions/env.h +funticket.o: ../../functions/last.h ../../functions/login.h +funticket.o: ../../functions/logout.h ../../functions/ln.h +funticket.o: ../../functions/ls.h ../../functions/man.h funticket.o: ../../functions/meta.h ../../functions/mkdir.h funticket.o: ../../functions/mv.h ../../functions/nicedit.h funticket.o: ../../functions/node.h ../../functions/passwd.h @@ -170,40 +171,39 @@ funticket.o: ../../core/sessionmanager.h ../../plugins/thread/pluginmsg.h init.o: tdb.h ticket.h ../../db/dbbase.h ../../db/dbconn.h init.o: ../../db/dbtextstream.h ../../core/textstream.h ../../core/misc.h init.o: ../../core/item.h ../../core/confparser.h ../../core/requesttypes.h -init.o: ../../core/error.h funticket.h ticketinfo.h ticketparser.h -init.o: ticketconf.h ../../core/item.h ../../core/system.h ../../core/dirs.h -init.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h -init.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -init.o: ../../core/confparser.h ../../core/user.h ../../core/group.h -init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -init.o: ../../core/textstream.h ../../core/logmanipulators.h -init.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -init.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/mount.h ../../templates/locale.h ../../notify/notify.h -init.o: ../../notify/notifypool.h ../../templates/patterns.h -init.o: ../../templates/locale.h ../../templates/localefilter.h -init.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h -init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../core/synchro.h -init.o: ../../notify/templatesnotify.h ../../core/config.h ../../core/users.h -init.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -init.o: ../../templates/misc.h ../../templates/htmltextstream.h -init.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -init.o: ../../core/run.h ../../core/users.h ../../core/groups.h -init.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -init.o: ../../core/basethread.h ../../core/threadmanager.h -init.o: ../../functions/functions.h ../../functions/functionbase.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/adduser.h ../../functions/cat.h +init.o: ../../core/error.h ../../core/confparser.h funticket.h ticketinfo.h +init.o: ticketparser.h ticketconf.h ../../core/item.h ../../core/system.h +init.o: ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h +init.o: ../../db/dbbase.h ../../db/dbitemquery.h ../../db/dbitemcolumns.h +init.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h +init.o: ../../core/ugcontainer.h ../../core/log.h ../../core/textstream.h +init.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h +init.o: ../../core/request.h ../../core/error.h ../../core/config.h +init.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h +init.o: ../../core/session.h ../../core/user.h ../../core/plugindata.h +init.o: ../../core/rebus.h ../../core/mount.h ../../templates/locale.h +init.o: ../../notify/notify.h ../../notify/notifypool.h +init.o: ../../templates/patterns.h ../../templates/locale.h +init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../ezc/src/utf8.h ../../../ezc/src/generator.h +init.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +init.o: ../../notify/notifythread.h ../../core/basethread.h +init.o: ../../core/synchro.h ../../notify/templatesnotify.h +init.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h +init.o: ../../core/lastcontainer.h ../../templates/misc.h +init.o: ../../templates/htmltextstream.h ../../core/mounts.h +init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h +init.o: ../../core/users.h ../../core/groups.h ../../core/group.h +init.o: ../../core/loadavg.h ../../core/image.h ../../core/basethread.h +init.o: ../../core/threadmanager.h ../../functions/functions.h +init.o: ../../functions/functionbase.h ../../functions/functionparser.h +init.o: ../../core/cur.h ../../functions/adduser.h ../../functions/cat.h init.o: ../../functions/chmod.h ../../functions/privchanger.h init.o: ../../core/request.h ../../functions/chown.h init.o: ../../functions/ckeditor.h ../../functions/cp.h init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/last.h +init.o: ../../functions/emacs.h ../../functions/env.h ../../functions/last.h init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h init.o: ../../functions/mkdir.h ../../functions/mv.h @@ -231,16 +231,16 @@ showtickets.o: showtickets.h tdb.h ticket.h ../../db/dbbase.h showtickets.o: ../../db/dbconn.h ../../db/dbtextstream.h showtickets.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h showtickets.o: ../../core/confparser.h ../../core/requesttypes.h -showtickets.o: ../../core/error.h ticketinfo.h ticketparser.h ticketconf.h -showtickets.o: ../../core/item.h ../../core/system.h ../../core/dirs.h +showtickets.o: ../../core/error.h ../../core/confparser.h ticketinfo.h +showtickets.o: ticketparser.h ticketconf.h ../../core/item.h +showtickets.o: ../../core/system.h ../../core/dirs.h showtickets.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h showtickets.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -showtickets.o: ../../core/confparser.h ../../core/user.h ../../core/group.h -showtickets.o: ../../core/dircontainer.h ../../core/ugcontainer.h -showtickets.o: ../../core/log.h ../../core/textstream.h -showtickets.o: ../../core/logmanipulators.h ../../core/slog.h -showtickets.o: ../../core/cur.h ../../core/request.h ../../core/error.h -showtickets.o: ../../core/config.h ../../core/htmlfilter.h +showtickets.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h +showtickets.o: ../../core/ugcontainer.h ../../core/log.h +showtickets.o: ../../core/textstream.h ../../core/logmanipulators.h +showtickets.o: ../../core/slog.h ../../core/cur.h ../../core/request.h +showtickets.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h showtickets.o: ../../templates/htmltextstream.h ../../core/session.h showtickets.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h showtickets.o: ../../core/mount.h ../../templates/locale.h @@ -267,31 +267,32 @@ showtickets.o: ../../functions/chmod.h ../../functions/privchanger.h showtickets.o: ../../core/request.h ../../functions/chown.h showtickets.o: ../../functions/ckeditor.h ../../functions/cp.h showtickets.o: ../../functions/default.h ../../functions/download.h -showtickets.o: ../../functions/emacs.h ../../functions/last.h -showtickets.o: ../../functions/login.h ../../functions/logout.h -showtickets.o: ../../functions/ln.h ../../functions/ls.h -showtickets.o: ../../functions/man.h ../../functions/meta.h -showtickets.o: ../../functions/mkdir.h ../../functions/mv.h -showtickets.o: ../../functions/nicedit.h ../../functions/node.h -showtickets.o: ../../functions/passwd.h ../../functions/priv.h -showtickets.o: ../../functions/reload.h ../../functions/rm.h -showtickets.o: ../../functions/sort.h ../../functions/specialdefault.h -showtickets.o: ../../functions/stat.h ../../functions/subject.h -showtickets.o: ../../functions/template.h ../../functions/tinymce.h -showtickets.o: ../../functions/uname.h ../../functions/upload.h -showtickets.o: ../../functions/uptime.h ../../functions/who.h -showtickets.o: ../../functions/vim.h ../../core/htmlfilter.h -showtickets.o: ../../functions/functionbase.h ../../core/synchro.h -showtickets.o: pluginmsg.h ../../plugins/thread/pluginmsg.h -showtickets.o: ../../core/plugin.h ../../core/system.h -showtickets.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -showtickets.o: ../../templates/templates.h ../../templates/patterncacher.h +showtickets.o: ../../functions/emacs.h ../../functions/env.h +showtickets.o: ../../functions/last.h ../../functions/login.h +showtickets.o: ../../functions/logout.h ../../functions/ln.h +showtickets.o: ../../functions/ls.h ../../functions/man.h +showtickets.o: ../../functions/meta.h ../../functions/mkdir.h +showtickets.o: ../../functions/mv.h ../../functions/nicedit.h +showtickets.o: ../../functions/node.h ../../functions/passwd.h +showtickets.o: ../../functions/priv.h ../../functions/reload.h +showtickets.o: ../../functions/rm.h ../../functions/sort.h +showtickets.o: ../../functions/specialdefault.h ../../functions/stat.h +showtickets.o: ../../functions/subject.h ../../functions/template.h +showtickets.o: ../../functions/tinymce.h ../../functions/uname.h +showtickets.o: ../../functions/upload.h ../../functions/uptime.h +showtickets.o: ../../functions/who.h ../../functions/vim.h +showtickets.o: ../../core/htmlfilter.h ../../functions/functionbase.h +showtickets.o: ../../core/synchro.h pluginmsg.h +showtickets.o: ../../plugins/thread/pluginmsg.h ../../core/plugin.h +showtickets.o: ../../core/system.h ../../core/sessionmanager.h +showtickets.o: ../../core/sessioncontainer.h ../../templates/templates.h +showtickets.o: ../../templates/patterncacher.h showtickets.o: ../../templates/indexpatterns.h ../../templates/patterns.h showtickets.o: ../../templates/changepatterns.h ../../core/sessionmanager.h tdb.o: tdb.h ticket.h ../../db/dbbase.h ../../db/dbconn.h tdb.o: ../../db/dbtextstream.h ../../core/textstream.h ../../core/misc.h tdb.o: ../../core/item.h ../../core/confparser.h ../../core/requesttypes.h -tdb.o: ../../core/error.h ../../core/log.h +tdb.o: ../../core/error.h ../../core/confparser.h ../../core/log.h templates.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h templates.o: ../../core/item.h ../../core/confparser.h @@ -300,16 +301,16 @@ templates.o: ../../../ezc/src/stringconv.h ticketinfo.h ticket.h templates.o: ticketparser.h ticketconf.h ../../core/item.h templates.o: ../../core/system.h ../../core/dirs.h ../../core/dircontainer.h templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/confparser.h -templates.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -templates.o: ../../core/ugcontainer.h ../../core/log.h -templates.o: ../../core/textstream.h ../../core/logmanipulators.h -templates.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -templates.o: ../../core/requesttypes.h ../../core/error.h ../../core/config.h -templates.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -templates.o: ../../core/textstream.h ../../core/misc.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/mount.h ../../templates/locale.h +templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h +templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h +templates.o: ../../core/log.h ../../core/textstream.h +templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h +templates.o: ../../core/request.h ../../core/requesttypes.h +templates.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h +templates.o: ../../templates/htmltextstream.h ../../core/textstream.h +templates.o: ../../core/misc.h ../../core/session.h ../../core/user.h +templates.o: ../../core/plugindata.h ../../core/rebus.h ../../core/mount.h +templates.o: ../../templates/locale.h ../../core/confparser.h templates.o: ../../notify/notify.h ../../notify/notifypool.h templates.o: ../../templates/patterns.h ../../templates/locale.h templates.o: ../../templates/localefilter.h ../../notify/notifythread.h @@ -328,9 +329,10 @@ templates.o: ../../functions/chmod.h ../../functions/privchanger.h templates.o: ../../core/request.h ../../functions/chown.h templates.o: ../../functions/ckeditor.h ../../functions/cp.h templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h +templates.o: ../../functions/emacs.h ../../functions/env.h +templates.o: ../../functions/last.h ../../functions/login.h +templates.o: ../../functions/logout.h ../../functions/ln.h +templates.o: ../../functions/ls.h ../../functions/man.h templates.o: ../../functions/meta.h ../../functions/mkdir.h templates.o: ../../functions/mv.h ../../functions/nicedit.h templates.o: ../../functions/node.h ../../functions/passwd.h @@ -358,25 +360,25 @@ ticketinfo.o: ../../core/item.h ../../core/system.h ../../core/dirs.h ticketinfo.o: ../../core/item.h ../../core/confparser.h ticketinfo.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h ticketinfo.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -ticketinfo.o: ../../core/confparser.h ../../core/user.h ../../core/group.h -ticketinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h -ticketinfo.o: ../../core/log.h ../../core/textstream.h -ticketinfo.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -ticketinfo.o: ../../core/request.h ../../core/requesttypes.h -ticketinfo.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h +ticketinfo.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h +ticketinfo.o: ../../core/ugcontainer.h ../../core/log.h +ticketinfo.o: ../../core/textstream.h ../../core/logmanipulators.h +ticketinfo.o: ../../core/slog.h ../../core/cur.h ../../core/request.h +ticketinfo.o: ../../core/requesttypes.h ../../core/error.h +ticketinfo.o: ../../core/config.h ../../core/htmlfilter.h ticketinfo.o: ../../templates/htmltextstream.h ../../core/textstream.h ticketinfo.o: ../../core/misc.h ../../core/session.h ../../core/user.h ticketinfo.o: ../../core/plugindata.h ../../core/rebus.h ../../core/mount.h -ticketinfo.o: ../../templates/locale.h ../../notify/notify.h -ticketinfo.o: ../../notify/notifypool.h ../../templates/patterns.h -ticketinfo.o: ../../templates/locale.h ../../templates/localefilter.h -ticketinfo.o: ../../../ezc/src/ezc.h ../../../ezc/src/utf8.h -ticketinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -ticketinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -ticketinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -ticketinfo.o: ../../core/basethread.h ../../core/synchro.h -ticketinfo.o: ../../notify/templatesnotify.h ../../core/config.h -ticketinfo.o: ../../core/users.h ../../core/ugcontainer.h +ticketinfo.o: ../../templates/locale.h ../../core/confparser.h +ticketinfo.o: ../../notify/notify.h ../../notify/notifypool.h +ticketinfo.o: ../../templates/patterns.h ../../templates/locale.h +ticketinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +ticketinfo.o: ../../../ezc/src/utf8.h ../../../ezc/src/generator.h +ticketinfo.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +ticketinfo.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +ticketinfo.o: ../../notify/notifythread.h ../../core/basethread.h +ticketinfo.o: ../../core/synchro.h ../../notify/templatesnotify.h +ticketinfo.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h ticketinfo.o: ../../core/lastcontainer.h ../../templates/misc.h ticketinfo.o: ../../templates/htmltextstream.h ../../core/mounts.h ticketinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h @@ -390,9 +392,9 @@ ticketinfo.o: ../../functions/privchanger.h ../../core/request.h ticketinfo.o: ../../functions/chown.h ../../functions/ckeditor.h ticketinfo.o: ../../functions/cp.h ../../functions/default.h ticketinfo.o: ../../functions/download.h ../../functions/emacs.h -ticketinfo.o: ../../functions/last.h ../../functions/login.h -ticketinfo.o: ../../functions/logout.h ../../functions/ln.h -ticketinfo.o: ../../functions/ls.h ../../functions/man.h +ticketinfo.o: ../../functions/env.h ../../functions/last.h +ticketinfo.o: ../../functions/login.h ../../functions/logout.h +ticketinfo.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h ticketinfo.o: ../../functions/meta.h ../../functions/mkdir.h ticketinfo.o: ../../functions/mv.h ../../functions/nicedit.h ticketinfo.o: ../../functions/node.h ../../functions/passwd.h diff --git a/templates/Makefile.dep b/templates/Makefile.dep index c2479dc..1183193 100755 --- a/templates/Makefile.dep +++ b/templates/Makefile.dep @@ -5,8 +5,8 @@ adduser.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h adduser.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h adduser.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h adduser.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -adduser.o: ../core/textstream.h patterncacher.h ../core/item.h -adduser.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +adduser.o: ../core/textstream.h ../core/confparser.h patterncacher.h +adduser.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h adduser.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h adduser.o: ../core/request.h ../core/requesttypes.h ../core/error.h adduser.o: ../core/config.h ../core/textstream.h @@ -32,14 +32,14 @@ changepatterns.o: localefilter.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h changepatterns.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h changepatterns.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h changepatterns.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h -changepatterns.o: htmltextstream.h ../core/textstream.h +changepatterns.o: htmltextstream.h ../core/textstream.h ../core/confparser.h config.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h config.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h config.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h config.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h config.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -config.o: ../core/textstream.h patterncacher.h ../core/item.h -config.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +config.o: ../core/textstream.h ../core/confparser.h patterncacher.h +config.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h config.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h config.o: ../core/request.h ../core/requesttypes.h ../core/error.h config.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -65,7 +65,7 @@ dir.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h dir.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h dir.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h dir.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -dir.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +dir.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h dir.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h dir.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h dir.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -89,13 +89,13 @@ dir.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h dir.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h dir.o: ../functions/privchanger.h ../functions/chown.h dir.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -dir.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -dir.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -dir.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -dir.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -dir.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -dir.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -dir.o: ../functions/specialdefault.h ../functions/stat.h +dir.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +dir.o: ../functions/last.h ../functions/login.h ../functions/logout.h +dir.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +dir.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +dir.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +dir.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +dir.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h dir.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h dir.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h dir.o: ../functions/who.h ../functions/vim.h @@ -104,7 +104,7 @@ doc.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h doc.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h doc.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h doc.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -doc.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +doc.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h doc.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h doc.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h doc.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -124,13 +124,52 @@ doc.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h doc.o: ../core/basethread.h ../core/threadmanager.h ../core/sessionmanager.h doc.o: ../core/sessioncontainer.h ../core/system.h ../core/htmlfilter.h doc.o: ../core/request.h ../core/misc.h +env.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h +env.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h +env.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h +env.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h +env.o: ../core/confparser.h htmltextstream.h ../core/textstream.h +env.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h +env.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h +env.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h +env.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h +env.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h +env.o: ../core/mount.h ../core/system.h ../core/dirs.h ../core/dircontainer.h +env.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h +env.o: ../core/error.h ../db/dbitemquery.h ../db/dbitemcolumns.h +env.o: ../core/user.h ../core/group.h ../core/dircontainer.h +env.o: ../core/ugcontainer.h ../core/log.h ../core/logmanipulators.h +env.o: ../core/slog.h ../core/cur.h ../templates/locale.h ../notify/notify.h +env.o: ../notify/notifypool.h ../templates/patterns.h +env.o: ../notify/notifythread.h ../core/basethread.h ../core/synchro.h +env.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h +env.o: ../core/lastcontainer.h ../templates/misc.h ../core/mounts.h +env.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h +env.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h +env.o: ../core/basethread.h ../core/threadmanager.h ../core/sessionmanager.h +env.o: ../core/sessioncontainer.h ../core/system.h ../core/htmlfilter.h +env.o: ../core/misc.h ../functions/functions.h ../functions/functionbase.h +env.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h +env.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h +env.o: ../functions/privchanger.h ../functions/chown.h +env.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h +env.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +env.o: ../functions/last.h ../functions/login.h ../functions/logout.h +env.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +env.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +env.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +env.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +env.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h +env.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h +env.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h +env.o: ../functions/who.h ../functions/vim.h filters.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h filters.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h filters.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h filters.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h filters.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -filters.o: ../core/textstream.h patterncacher.h ../core/item.h -filters.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +filters.o: ../core/textstream.h ../core/confparser.h patterncacher.h +filters.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h filters.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h filters.o: ../core/request.h ../core/requesttypes.h ../core/error.h filters.o: ../core/config.h ../core/textstream.h @@ -156,22 +195,23 @@ htmltextstream.o: locale.h ../core/confparser.h ../../ezc/src/ezc.h htmltextstream.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h htmltextstream.o: ../../ezc/src/pattern.h ../../ezc/src/item.h htmltextstream.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h -htmltextstream.o: ../../ezc/src/stringconv.h +htmltextstream.o: ../../ezc/src/stringconv.h ../core/confparser.h indexpatterns.o: indexpatterns.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h indexpatterns.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h indexpatterns.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h indexpatterns.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h indexpatterns.o: patterns.h locale.h ../core/confparser.h localefilter.h -indexpatterns.o: misc.h htmltextstream.h ../core/textstream.h ../core/log.h -indexpatterns.o: ../core/textstream.h ../core/logmanipulators.h -indexpatterns.o: ../core/slog.h ../core/cur.h ../templates/locale.h +indexpatterns.o: misc.h htmltextstream.h ../core/textstream.h +indexpatterns.o: ../core/confparser.h ../core/log.h ../core/textstream.h +indexpatterns.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h +indexpatterns.o: ../templates/locale.h insert.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h insert.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h insert.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h insert.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h insert.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -insert.o: ../core/textstream.h patterncacher.h ../core/item.h -insert.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +insert.o: ../core/textstream.h ../core/confparser.h patterncacher.h +insert.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h insert.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h insert.o: ../core/request.h ../core/requesttypes.h ../core/error.h insert.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -198,8 +238,8 @@ item.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h item.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h item.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h item.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -item.o: ../core/textstream.h patterncacher.h ../core/item.h -item.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +item.o: ../core/textstream.h ../core/confparser.h patterncacher.h +item.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h item.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h item.o: ../core/requesttypes.h ../core/error.h ../core/config.h item.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -224,8 +264,8 @@ last.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h last.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h last.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h last.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -last.o: ../core/textstream.h patterncacher.h ../core/item.h -last.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +last.o: ../core/textstream.h ../core/confparser.h patterncacher.h +last.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h last.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h last.o: ../core/requesttypes.h ../core/error.h ../core/config.h last.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -259,8 +299,8 @@ login.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h login.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h login.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h login.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -login.o: ../core/textstream.h patterncacher.h ../core/item.h -login.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +login.o: ../core/textstream.h ../core/confparser.h patterncacher.h +login.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h login.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h login.o: ../core/request.h ../core/requesttypes.h ../core/error.h login.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -286,7 +326,7 @@ ls.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h ls.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h ls.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h ls.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -ls.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +ls.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h ls.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h ls.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h ls.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -311,7 +351,7 @@ man.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h man.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h man.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h man.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -man.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +man.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h man.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h man.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h man.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -336,22 +376,22 @@ man.o: ../functions/functionparser.h ../functions/adduser.h man.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h man.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h man.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -man.o: ../functions/last.h ../functions/login.h ../functions/logout.h -man.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -man.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -man.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -man.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -man.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -man.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -man.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -man.o: ../functions/who.h ../functions/vim.h +man.o: ../functions/env.h ../functions/last.h ../functions/login.h +man.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +man.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +man.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +man.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +man.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h +man.o: ../functions/stat.h ../functions/subject.h ../functions/template.h +man.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h +man.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h misc.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h misc.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h misc.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h misc.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h misc.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -misc.o: ../core/textstream.h patterncacher.h ../core/item.h -misc.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +misc.o: ../core/textstream.h ../core/confparser.h patterncacher.h +misc.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h misc.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h misc.o: ../core/requesttypes.h ../core/error.h ../core/config.h misc.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -375,8 +415,8 @@ mount.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h mount.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h mount.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h mount.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -mount.o: ../core/textstream.h patterncacher.h ../core/item.h -mount.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +mount.o: ../core/textstream.h ../core/confparser.h patterncacher.h +mount.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h mount.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h mount.o: ../core/request.h ../core/requesttypes.h ../core/error.h mount.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -411,16 +451,16 @@ patterns.o: ../../ezc/src/ezc.h ../../ezc/src/utf8.h patterns.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h patterns.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h patterns.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h -patterns.o: htmltextstream.h ../core/textstream.h ../core/log.h -patterns.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -patterns.o: ../core/cur.h ../templates/locale.h +patterns.o: htmltextstream.h ../core/textstream.h ../core/confparser.h +patterns.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h +patterns.o: ../core/slog.h ../core/cur.h ../templates/locale.h priv.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h priv.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h priv.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h priv.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h priv.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -priv.o: ../core/textstream.h patterncacher.h ../core/item.h -priv.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +priv.o: ../core/textstream.h ../core/confparser.h patterncacher.h +priv.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h priv.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h priv.o: ../core/requesttypes.h ../core/error.h ../core/config.h priv.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -444,13 +484,13 @@ priv.o: ../core/synchro.h ../functions/functionparser.h priv.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h priv.o: ../functions/privchanger.h ../functions/chown.h priv.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -priv.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -priv.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -priv.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -priv.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -priv.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -priv.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -priv.o: ../functions/specialdefault.h ../functions/stat.h +priv.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +priv.o: ../functions/last.h ../functions/login.h ../functions/logout.h +priv.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +priv.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +priv.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +priv.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +priv.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h priv.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h priv.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h priv.o: ../functions/who.h ../functions/vim.h @@ -459,8 +499,8 @@ rebus.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h rebus.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h rebus.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h rebus.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -rebus.o: ../core/textstream.h patterncacher.h ../core/item.h -rebus.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +rebus.o: ../core/textstream.h ../core/confparser.h patterncacher.h +rebus.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h rebus.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h rebus.o: ../core/request.h ../core/requesttypes.h ../core/error.h rebus.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -487,8 +527,8 @@ slog.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h slog.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h slog.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h slog.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -slog.o: ../core/textstream.h patterncacher.h ../core/item.h -slog.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +slog.o: ../core/textstream.h ../core/confparser.h patterncacher.h +slog.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h slog.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h slog.o: ../core/requesttypes.h ../core/error.h ../core/config.h slog.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -511,8 +551,8 @@ stat.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h stat.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h stat.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h stat.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -stat.o: ../core/textstream.h patterncacher.h ../core/item.h -stat.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +stat.o: ../core/textstream.h ../core/confparser.h patterncacher.h +stat.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h stat.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h stat.o: ../core/requesttypes.h ../core/error.h ../core/config.h stat.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -536,7 +576,7 @@ sys.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h sys.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h sys.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h sys.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -sys.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +sys.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h sys.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h sys.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h sys.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -562,22 +602,23 @@ sys.o: ../functions/functionparser.h ../functions/adduser.h sys.o: ../functions/cat.h ../functions/chmod.h ../functions/privchanger.h sys.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h sys.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -sys.o: ../functions/last.h ../functions/login.h ../functions/logout.h -sys.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -sys.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -sys.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -sys.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h -sys.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -sys.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -sys.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -sys.o: ../functions/who.h ../functions/vim.h ../templates/templates.h +sys.o: ../functions/env.h ../functions/last.h ../functions/login.h +sys.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h +sys.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h +sys.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h +sys.o: ../functions/passwd.h ../functions/priv.h ../functions/reload.h +sys.o: ../functions/rm.h ../functions/sort.h ../functions/specialdefault.h +sys.o: ../functions/stat.h ../functions/subject.h ../functions/template.h +sys.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h +sys.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h +sys.o: ../templates/templates.h template.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/utf8.h template.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h template.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h template.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h template.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -template.o: ../core/textstream.h patterncacher.h ../core/item.h -template.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +template.o: ../core/textstream.h ../core/confparser.h patterncacher.h +template.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h template.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h template.o: ../core/request.h ../core/requesttypes.h ../core/error.h template.o: ../core/config.h ../core/textstream.h @@ -604,8 +645,8 @@ templates.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h templates.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h templates.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h templates.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -templates.o: ../core/textstream.h patterncacher.h ../core/item.h -templates.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +templates.o: ../core/textstream.h ../core/confparser.h patterncacher.h +templates.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h templates.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h templates.o: ../core/request.h ../core/requesttypes.h ../core/error.h templates.o: ../core/config.h ../core/textstream.h @@ -635,24 +676,24 @@ templates.o: ../functions/functionparser.h ../functions/adduser.h templates.o: ../functions/cat.h ../functions/chmod.h templates.o: ../functions/privchanger.h ../functions/chown.h templates.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -templates.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -templates.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -templates.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -templates.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -templates.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -templates.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -templates.o: ../functions/specialdefault.h ../functions/stat.h -templates.o: ../functions/subject.h ../functions/template.h -templates.o: ../functions/tinymce.h ../functions/uname.h -templates.o: ../functions/upload.h ../functions/uptime.h ../functions/who.h -templates.o: ../functions/vim.h ../templates/templates.h +templates.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +templates.o: ../functions/last.h ../functions/login.h ../functions/logout.h +templates.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +templates.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +templates.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +templates.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +templates.o: ../functions/sort.h ../functions/specialdefault.h +templates.o: ../functions/stat.h ../functions/subject.h +templates.o: ../functions/template.h ../functions/tinymce.h +templates.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h +templates.o: ../functions/who.h ../functions/vim.h ../templates/templates.h upload.o: ../core/request.h templates.h ../../ezc/src/ezc.h upload.o: ../../ezc/src/utf8.h ../../ezc/src/generator.h upload.o: ../../ezc/src/pattern.h ../../ezc/src/item.h upload.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h upload.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h upload.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -upload.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +upload.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h upload.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h upload.o: ../core/cur.h ../core/request.h ../core/requesttypes.h upload.o: ../core/error.h ../core/config.h ../core/textstream.h @@ -678,8 +719,8 @@ uptime.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h uptime.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h uptime.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h uptime.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -uptime.o: ../core/textstream.h patterncacher.h ../core/item.h -uptime.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +uptime.o: ../core/textstream.h ../core/confparser.h patterncacher.h +uptime.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h uptime.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h uptime.o: ../core/request.h ../core/requesttypes.h ../core/error.h uptime.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -705,8 +746,8 @@ user.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h user.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h user.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h user.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -user.o: ../core/textstream.h patterncacher.h ../core/item.h -user.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +user.o: ../core/textstream.h ../core/confparser.h patterncacher.h +user.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h user.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h ../core/request.h user.o: ../core/requesttypes.h ../core/error.h ../core/config.h user.o: ../core/textstream.h ../templates/htmltextstream.h ../core/session.h @@ -730,7 +771,7 @@ who.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h ../../ezc/src/item.h who.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h who.o: ../../ezc/src/stringconv.h misc.h localefilter.h locale.h who.o: ../core/confparser.h htmltextstream.h ../core/textstream.h -who.o: patterncacher.h ../core/item.h ../core/confparser.h indexpatterns.h +who.o: ../core/confparser.h patterncacher.h ../core/item.h indexpatterns.h who.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h who.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h who.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -755,8 +796,8 @@ winix.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h winix.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h winix.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h misc.h winix.o: localefilter.h locale.h ../core/confparser.h htmltextstream.h -winix.o: ../core/textstream.h patterncacher.h ../core/item.h -winix.o: ../core/confparser.h indexpatterns.h patterns.h changepatterns.h +winix.o: ../core/textstream.h ../core/confparser.h patterncacher.h +winix.o: ../core/item.h indexpatterns.h patterns.h changepatterns.h winix.o: ../core/config.h ../core/htmlfilter.h ../core/cur.h winix.o: ../core/request.h ../core/requesttypes.h ../core/error.h winix.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h @@ -783,14 +824,14 @@ winix.o: ../core/synchro.h ../functions/functionparser.h winix.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h winix.o: ../functions/privchanger.h ../functions/chown.h winix.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -winix.o: ../functions/download.h ../functions/emacs.h ../functions/last.h -winix.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -winix.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -winix.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -winix.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -winix.o: ../functions/reload.h ../functions/rm.h ../functions/sort.h -winix.o: ../functions/specialdefault.h ../functions/stat.h -winix.o: ../functions/subject.h ../functions/template.h +winix.o: ../functions/download.h ../functions/emacs.h ../functions/env.h +winix.o: ../functions/last.h ../functions/login.h ../functions/logout.h +winix.o: ../functions/ln.h ../functions/ls.h ../functions/man.h +winix.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h +winix.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h +winix.o: ../functions/priv.h ../functions/reload.h ../functions/rm.h +winix.o: ../functions/sort.h ../functions/specialdefault.h +winix.o: ../functions/stat.h ../functions/subject.h ../functions/template.h winix.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h winix.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h winix.o: ../templates/templates.h ../core/misc.h diff --git a/templates/Makefile.o.dep b/templates/Makefile.o.dep index e017b71..dc8c4a0 100755 --- a/templates/Makefile.o.dep +++ b/templates/Makefile.o.dep @@ -1 +1 @@ -o = adduser.o changepatterns.o config.o dir.o doc.o filters.o htmltextstream.o indexpatterns.o insert.o item.o last.o locale.o localefilter.o login.o ls.o man.o misc.o mount.o patterncacher.o patterns.o priv.o rebus.o slog.o stat.o sys.o template.o templates.o upload.o uptime.o user.o who.o winix.o +o = adduser.o changepatterns.o config.o dir.o doc.o env.o filters.o htmltextstream.o indexpatterns.o insert.o item.o last.o locale.o localefilter.o login.o ls.o man.o misc.o mount.o patterncacher.o patterns.o priv.o rebus.o slog.o stat.o sys.o template.o templates.o upload.o uptime.o user.o who.o winix.o diff --git a/templates/env.cpp b/templates/env.cpp new file mode 100755 index 0000000..f91c871 --- /dev/null +++ b/templates/env.cpp @@ -0,0 +1,110 @@ +/* + * This file is a part of Winix + * and is not publicly distributed + * + * Copyright (c) 2012, Tomasz Sowa + * All rights reserved. + * + */ + +#include "templates.h" +#include "core/misc.h" +#include "functions/functions.h" + + +namespace TemplatesFunctions +{ + + +void env_user_admin_env_str(Info & i) +{ + // only an admin is able to see this variables + + if( cur->session->puser && cur->session->puser->super_user ) + { + User * puser = functions->fun_env.GetUser(); + + if( puser ) + i.out << puser->aenv; + } +} + + +void env_user_env_str(Info & i) +{ + User * puser = functions->fun_env.GetUser(); + + if( puser ) + i.out << puser->env; +} + + +void env_user_id(Info & i) +{ + User * puser = functions->fun_env.GetUser(); + + if( puser ) + i.out << puser->id; +} + + +void env_user_name(Info & i) +{ + User * puser = functions->fun_env.GetUser(); + + if( puser ) + i.out << puser->name; +} + + + + +static size_t user_index = 0; + + + +void env_user_tab(Info & i) +{ + if( cur->session->puser && cur->session->puser->super_user ) + { + user_index = i.iter; + i.res = user_index < system->users.Size(); + } +} + + +bool evn_user_tab_has_access() +{ + return cur->session->puser && + cur->session->puser->super_user && + user_index < system->users.Size(); +} + + + +void env_user_tab_id(Info & i) +{ + if( evn_user_tab_has_access() ) + i.out << system->users[user_index].id; +} + + +void env_user_tab_name(Info & i) +{ + if( evn_user_tab_has_access() ) + i.out << system->users[user_index].name; +} + + +void env_user_tab_is_current(Info & i) +{ + if( evn_user_tab_has_access() && functions->fun_env.GetUser() ) + i.res = (system->users[user_index].id == functions->fun_env.GetUser()->id ); +} + + + +} // namespace TemplatesFunctions + + + diff --git a/templates/htmltextstream.cpp b/templates/htmltextstream.cpp index 1562925..22d5a94 100755 --- a/templates/htmltextstream.cpp +++ b/templates/htmltextstream.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -409,4 +409,20 @@ return *this; } +HtmlTextStream & HtmlTextStream::operator<<(const Space * space) +{ + space_stream.Clear(); + // !! IMPROVE ME + // we can calculate how many memory is needed beforehand + space->Serialize(space_stream, true, false); + operator<<(space_stream.Str()); + space_stream.Clear(); +} + + +HtmlTextStream & HtmlTextStream::operator<<(const Space & space) +{ + return operator<<(&space); +} + diff --git a/templates/htmltextstream.h b/templates/htmltextstream.h index 02017e5..35027ec 100755 --- a/templates/htmltextstream.h +++ b/templates/htmltextstream.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2010, Tomasz Sowa + * Copyright (c) 2010-2012, Tomasz Sowa * All rights reserved. * */ @@ -144,6 +144,12 @@ public: HtmlTextStream & operator<<(double); HtmlTextStream & operator<<(const void *); HtmlTextStream & operator<<(const tm & t); + HtmlTextStream & operator<<(const Space * space); + HtmlTextStream & operator<<(const Space & space); + +private: + + TextStream space_stream; // for serializing spaces }; diff --git a/templates/templates.cpp b/templates/templates.cpp index 2bb4d74..e3af737 100755 --- a/templates/templates.cpp +++ b/templates/templates.cpp @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -205,14 +205,27 @@ void Templates::CreateFunctions() ezc_functions.Insert("dir_last_meta_str", dir_last_meta_str); + /* + env + */ + ezc_functions.Insert("env_user_admin_env_str", env_user_admin_env_str); + ezc_functions.Insert("env_user_env_str", env_user_env_str); + ezc_functions.Insert("env_user_id", env_user_id); + ezc_functions.Insert("env_user_name", env_user_name); + ezc_functions.Insert("env_user_tab", env_user_tab); + ezc_functions.Insert("env_user_tab_id", env_user_tab_id); + ezc_functions.Insert("env_user_tab_name", env_user_tab_name); + ezc_functions.Insert("env_user_tab_is_current", env_user_tab_is_current); + + /* filters */ - ezc_functions.Insert("fil_urlencode", fil_urlencode); - ezc_functions.Insert("fil_qencode", fil_qencode); - ezc_functions.Insert("fil_capitalize", fil_capitalize); - ezc_functions.Insert("fil_tosmall", fil_tosmall); - ezc_functions.Insert("fil_firstup", fil_firstup); + ezc_functions.Insert("fil_urlencode", fil_urlencode); + ezc_functions.Insert("fil_qencode", fil_qencode); + ezc_functions.Insert("fil_capitalize", fil_capitalize); + ezc_functions.Insert("fil_tosmall", fil_tosmall); + ezc_functions.Insert("fil_firstup", fil_firstup); /* @@ -469,16 +482,21 @@ void Templates::CreateFunctions() /* user */ - ezc_functions.Insert("user_name", user_name); - ezc_functions.Insert("user_logged", user_logged); - ezc_functions.Insert("user_super_user", user_super_user); - ezc_functions.Insert("user_is_in_group", user_is_in_group); - ezc_functions.Insert("user_is_in_all_groups", user_is_in_all_groups); - ezc_functions.Insert("user_can_use_html", user_can_use_html); - ezc_functions.Insert("user_can_use_bbcode", user_can_use_bbcode); - ezc_functions.Insert("user_can_use_raw", user_can_use_raw); - - + ezc_functions.Insert("user_name", user_name); + ezc_functions.Insert("user_logged", user_logged); + ezc_functions.Insert("user_super_user", user_super_user); + ezc_functions.Insert("user_is_in_group", user_is_in_group); + ezc_functions.Insert("user_is_in_all_groups", user_is_in_all_groups); + ezc_functions.Insert("user_can_use_html", user_can_use_html); + ezc_functions.Insert("user_can_use_bbcode", user_can_use_bbcode); + ezc_functions.Insert("user_can_use_raw", user_can_use_raw); + ezc_functions.Insert("user_tab", user_tab); + ezc_functions.Insert("user_tab_id", user_tab_id); + ezc_functions.Insert("user_tab_name", user_tab_name); + ezc_functions.Insert("user_tab_is_super_user", user_tab_is_super_user); + ezc_functions.Insert("user_tab_is_current", user_tab_is_current); + + /* template */ diff --git a/templates/templates.h b/templates/templates.h index a304703..0161a6f 100755 --- a/templates/templates.h +++ b/templates/templates.h @@ -2,7 +2,7 @@ * This file is a part of Winix * and is not publicly distributed * - * Copyright (c) 2008-2011, Tomasz Sowa + * Copyright (c) 2008-2012, Tomasz Sowa * All rights reserved. * */ @@ -147,6 +147,19 @@ namespace TemplatesFunctions void doc_css_more_than_one(Info & i); + /* + env + */ + void env_user_admin_env_str(Info & i); + void env_user_env_str(Info & i); + void env_user_id(Info & i); + void env_user_name(Info & i); + void env_user_tab(Info & i); + void env_user_tab_id(Info & i); + void env_user_tab_name(Info & i); + void env_user_tab_is_current(Info & i); + + /* filters */ @@ -401,7 +414,12 @@ namespace TemplatesFunctions void user_can_use_html(Info & i); void user_can_use_bbcode(Info & i); void user_can_use_raw(Info & i); - + void user_tab(Info & i); + void user_tab_id(Info & i); + void user_tab_name(Info & i); + void user_tab_is_super_user(Info & i); + void user_tab_is_current(Info & i); + /* template (html templates) diff --git a/templates/user.cpp b/templates/user.cpp index 3327fb2..7c1fb16 100755 --- a/templates/user.cpp +++ b/templates/user.cpp @@ -107,6 +107,43 @@ void user_can_use_raw(Info & i) + +static size_t user_index = 0; + +void user_tab(Info & i) +{ + user_index = i.iter; + i.res = user_index < system->users.Size(); +} + + +void user_tab_id(Info & i) +{ + if( user_index < system->users.Size() ) + i.out << system->users[user_index].id; +} + + +void user_tab_name(Info & i) +{ + if( user_index < system->users.Size() ) + i.out << system->users[user_index].name; +} + + +void user_tab_is_super_user(Info & i) +{ + if( user_index < system->users.Size() ) + i.res = system->users[user_index].super_user; +} + + +void user_tab_is_current(Info & i) +{ + if( user_index < system->users.Size() && cur->session->puser ) + i.res = (system->users[user_index].id == cur->session->puser->id); +} + } // namespace TemplatesFunctions