changed: the way of building
core.a content.a templates.a confparser.a have gone away
there is only: cmslu.a now (in the global directory 'cmslu')
changed: the way of building
in Makefile(s) we dont longer use explicitly a variable 'o = file1.o file2.o...'
it was put into Makefile.o.dep and is generated automatically
when 'make depend' is invoked
changed: some #include "..." directives were put from *.h to *.cpp files
fewer dependences
git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@501 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
+7
-10
@@ -1,25 +1,22 @@
|
||||
o = templates.o sys.o item.o doc.o user.o dir.o done.o priv.o patterncacher.o who.o last.o thread.o
|
||||
include Makefile.o.dep
|
||||
|
||||
|
||||
all: templates.a
|
||||
all: $(o)
|
||||
|
||||
templates.a: $(o)
|
||||
ar rcs templates.a $(o)
|
||||
|
||||
.SUFFIXES: .cpp .o
|
||||
|
||||
.cpp.o:
|
||||
$(CC) -c $(CFLAGS) $<
|
||||
$(CXX) -c $(CXXFLAGS) $<
|
||||
|
||||
|
||||
|
||||
depend:
|
||||
makedepend $(DEPMACROS) -Y. -f- *.cpp > Makefile.dep
|
||||
|
||||
echo -n "o = " > Makefile.o.dep
|
||||
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep
|
||||
|
||||
clean:
|
||||
rm -f *.o
|
||||
rm -f *.a
|
||||
|
||||
|
||||
include Makefile.dep
|
||||
|
||||
|
||||
|
||||
+91
-143
@@ -1,149 +1,97 @@
|
||||
# DO NOT DELETE
|
||||
|
||||
dir.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
dir.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
dir.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
dir.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
dir.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
dir.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
dir.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
dir.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
dir.o: ../core/httpsimpleparser.h ../core/postparser.h ../core/cookieparser.h
|
||||
dir.o: ../core/mountparser.h ../core/request.h ../core/item.h ../core/db.h
|
||||
dir.o: ../core/error.h ../core/user.h ../core/group.h ../core/users.h
|
||||
dir.o: ../core/groups.h ../core/log.h patterncacher.h ../app/templates.h
|
||||
doc.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
doc.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
doc.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
doc.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
doc.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
doc.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
doc.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
doc.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
doc.o: ../core/httpsimpleparser.h ../core/postparser.h ../core/cookieparser.h
|
||||
doc.o: ../core/mountparser.h ../core/request.h ../core/item.h ../core/db.h
|
||||
doc.o: ../core/error.h ../core/user.h ../core/group.h ../core/users.h
|
||||
doc.o: ../core/groups.h ../core/log.h patterncacher.h ../app/templates.h
|
||||
done.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
done.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
done.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
done.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
done.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
done.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
done.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
done.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
done.o: ../core/httpsimpleparser.h ../core/postparser.h
|
||||
done.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
done.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
done.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
done.o: patterncacher.h ../app/templates.h
|
||||
item.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
item.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
item.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
item.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
item.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
item.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
item.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
item.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
item.o: ../core/httpsimpleparser.h ../core/postparser.h
|
||||
item.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
item.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
item.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
item.o: patterncacher.h ../app/templates.h
|
||||
last.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
last.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
last.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
last.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
last.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
last.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
last.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
last.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
last.o: ../core/httpsimpleparser.h ../core/postparser.h
|
||||
last.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
last.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
last.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
last.o: patterncacher.h ../app/templates.h ../core/lastcontainer.h
|
||||
last.o: ../core/misc.h
|
||||
dir.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
dir.o: ../app/templates.h ../core/request.h ../core/requesttypes.h
|
||||
dir.o: ../core/session.h ../core/done.h ../core/item.h ../core/error.h
|
||||
dir.o: ../core/log.h ../core/user.h ../core/function.h ../core/thread.h
|
||||
dir.o: ../core/data.h ../core/dirs.h ../core/dircontainer.h ../core/users.h
|
||||
dir.o: ../core/ugcontainer.h ../core/groups.h ../core/group.h
|
||||
dir.o: ../core/functions.h ../core/lastcontainer.h ../core/mounts.h
|
||||
dir.o: ../core/mount.h ../core/db.h ../core/log.h ../core/misc.h
|
||||
doc.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
doc.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
doc.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
doc.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h ../core/group.h
|
||||
doc.o: ../core/functions.h ../core/function.h ../core/lastcontainer.h
|
||||
doc.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
doc.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
doc.o: ../core/error.h ../core/thread.h ../core/misc.h
|
||||
done.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
done.o: ../app/templates.h ../core/request.h ../core/requesttypes.h
|
||||
done.o: ../core/session.h ../core/done.h ../core/item.h ../core/error.h
|
||||
done.o: ../core/log.h ../core/user.h ../core/function.h ../core/thread.h
|
||||
done.o: ../core/misc.h
|
||||
item.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
item.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
item.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
item.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h ../core/group.h
|
||||
item.o: ../core/functions.h ../core/function.h ../core/lastcontainer.h
|
||||
item.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
item.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
item.o: ../core/error.h ../core/thread.h ../core/misc.h
|
||||
last.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
last.o: ../app/templates.h ../core/lastcontainer.h ../core/data.h
|
||||
last.o: ../core/dirs.h ../core/item.h ../core/dircontainer.h ../core/users.h
|
||||
last.o: ../core/user.h ../core/ugcontainer.h ../core/log.h ../core/groups.h
|
||||
last.o: ../core/group.h ../core/functions.h ../core/function.h
|
||||
last.o: ../core/lastcontainer.h ../core/mounts.h ../core/mount.h
|
||||
last.o: ../core/request.h ../core/requesttypes.h ../core/session.h
|
||||
last.o: ../core/done.h ../core/error.h ../core/thread.h ../core/misc.h
|
||||
patterncacher.o: patterncacher.h ../core/item.h ../../ezc/src/ezc.h
|
||||
patterncacher.o: ../core/data.h ../core/dirs.h ../core/item.h
|
||||
patterncacher.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
patterncacher.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h
|
||||
patterncacher.o: ../core/group.h ../core/functions.h ../core/function.h
|
||||
patterncacher.o: ../core/lastcontainer.h ../core/mounts.h ../core/mount.h
|
||||
patterncacher.o: ../core/log.h
|
||||
priv.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
priv.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
priv.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
priv.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
priv.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
priv.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
priv.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
priv.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
priv.o: ../core/httpsimpleparser.h ../core/postparser.h
|
||||
priv.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
priv.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
priv.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
priv.o: patterncacher.h ../app/templates.h
|
||||
sys.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
sys.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
sys.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
sys.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
sys.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
sys.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
sys.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
sys.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
sys.o: ../core/httpsimpleparser.h ../core/postparser.h ../core/cookieparser.h
|
||||
sys.o: ../core/mountparser.h ../core/request.h ../core/item.h ../core/db.h
|
||||
sys.o: ../core/error.h ../core/user.h ../core/group.h ../core/users.h
|
||||
sys.o: ../core/groups.h ../core/log.h patterncacher.h ../app/templates.h
|
||||
templates.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
templates.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
templates.o: ../core/db.h ../core/dircontainer.h ../core/user.h
|
||||
templates.o: ../core/group.h ../core/ugcontainer.h ../core/thread.h
|
||||
templates.o: ../core/users.h ../core/groups.h ../core/functions.h
|
||||
templates.o: ../core/function.h ../core/functioncodeparser.h
|
||||
priv.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
priv.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
priv.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
priv.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h ../core/group.h
|
||||
priv.o: ../core/functions.h ../core/function.h ../core/lastcontainer.h
|
||||
priv.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
priv.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
priv.o: ../core/error.h ../core/thread.h ../core/misc.h
|
||||
sys.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
sys.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
sys.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
sys.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h ../core/group.h
|
||||
sys.o: ../core/functions.h ../core/function.h ../core/lastcontainer.h
|
||||
sys.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
sys.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
sys.o: ../core/error.h ../core/thread.h ../core/misc.h
|
||||
templates.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
templates.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
templates.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
templates.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h
|
||||
templates.o: ../core/group.h ../core/functions.h ../core/function.h
|
||||
templates.o: ../core/lastcontainer.h ../core/mounts.h ../core/mount.h
|
||||
templates.o: ../core/request.h ../core/requesttypes.h ../core/session.h
|
||||
templates.o: ../core/done.h ../core/getparser.h ../core/httpsimpleparser.h
|
||||
templates.o: ../core/postparser.h ../core/cookieparser.h
|
||||
templates.o: ../core/mountparser.h ../core/request.h ../core/item.h
|
||||
templates.o: ../core/db.h ../core/error.h ../core/user.h ../core/group.h
|
||||
templates.o: ../core/users.h ../core/groups.h ../core/log.h patterncacher.h
|
||||
templates.o: ../app/templates.h
|
||||
thread.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
thread.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
thread.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
thread.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
thread.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
thread.o: ../core/functioncodeparser.h ../core/lastcontainer.h
|
||||
thread.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
thread.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
thread.o: ../core/getparser.h ../core/httpsimpleparser.h ../core/postparser.h
|
||||
thread.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
thread.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
thread.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
thread.o: patterncacher.h ../app/templates.h
|
||||
user.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
user.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
user.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
user.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
user.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
user.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
user.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
user.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
user.o: ../core/httpsimpleparser.h ../core/postparser.h
|
||||
user.o: ../core/cookieparser.h ../core/mountparser.h ../core/request.h
|
||||
user.o: ../core/item.h ../core/db.h ../core/error.h ../core/user.h
|
||||
user.o: ../core/group.h ../core/users.h ../core/groups.h ../core/log.h
|
||||
user.o: patterncacher.h ../app/templates.h
|
||||
who.o: templates.h ../../ezc/src/ezc.h ../core/data.h ../core/misc.h
|
||||
who.o: ../core/log.h ../core/item.h ../core/error.h ../core/dirs.h
|
||||
who.o: ../core/db.h ../core/dircontainer.h ../core/user.h ../core/group.h
|
||||
who.o: ../core/ugcontainer.h ../core/thread.h ../core/users.h
|
||||
who.o: ../core/groups.h ../core/functions.h ../core/function.h
|
||||
who.o: ../core/functioncodeparser.h ../core/lastcontainer.h ../core/mounts.h
|
||||
who.o: ../core/mount.h ../core/request.h ../core/requesttypes.h
|
||||
who.o: ../core/session.h ../core/done.h ../core/getparser.h
|
||||
who.o: ../core/httpsimpleparser.h ../core/postparser.h ../core/cookieparser.h
|
||||
who.o: ../core/mountparser.h ../core/request.h ../core/item.h ../core/db.h
|
||||
who.o: ../core/error.h ../core/user.h ../core/group.h ../core/users.h
|
||||
who.o: ../core/groups.h ../core/log.h patterncacher.h ../app/templates.h
|
||||
who.o: ../core/sessioncontainer.h ../core/requestcontroller.h ../core/data.h
|
||||
who.o: ../content/content.h ../templates/templates.h ../core/misc.h
|
||||
who.o: ../core/function.h ../core/functionparser.h ../app/content.h
|
||||
who.o: ../core/sessionmanager.h ../core/sessioncontainer.h
|
||||
templates.o: ../core/done.h ../core/error.h ../core/thread.h ../core/misc.h
|
||||
thread.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
thread.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
thread.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
thread.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h
|
||||
thread.o: ../core/group.h ../core/functions.h ../core/function.h
|
||||
thread.o: ../core/lastcontainer.h ../core/mounts.h ../core/mount.h
|
||||
thread.o: ../core/request.h ../core/requesttypes.h ../core/session.h
|
||||
thread.o: ../core/done.h ../core/error.h ../core/thread.h ../core/misc.h
|
||||
user.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
user.o: ../app/templates.h ../core/data.h ../core/dirs.h ../core/item.h
|
||||
user.o: ../core/dircontainer.h ../core/users.h ../core/user.h
|
||||
user.o: ../core/ugcontainer.h ../core/log.h ../core/groups.h ../core/group.h
|
||||
user.o: ../core/functions.h ../core/function.h ../core/lastcontainer.h
|
||||
user.o: ../core/mounts.h ../core/mount.h ../core/request.h
|
||||
user.o: ../core/requesttypes.h ../core/session.h ../core/done.h
|
||||
user.o: ../core/error.h ../core/thread.h ../core/misc.h
|
||||
who.o: templates.h ../../ezc/src/ezc.h patterncacher.h ../core/item.h
|
||||
who.o: ../app/templates.h ../core/sessioncontainer.h ../core/session.h
|
||||
who.o: ../core/done.h ../core/item.h ../core/error.h ../core/log.h
|
||||
who.o: ../core/user.h ../core/requestcontroller.h ../content/content.h
|
||||
who.o: ../templates/templates.h ../core/sessionmanager.h
|
||||
who.o: ../core/sessioncontainer.h ../core/functionparser.h
|
||||
who.o: ../core/requesttypes.h ../app/content.h ../core/data.h ../core/dirs.h
|
||||
who.o: ../core/dircontainer.h ../core/users.h ../core/ugcontainer.h
|
||||
who.o: ../core/groups.h ../core/group.h ../core/functions.h
|
||||
who.o: ../core/function.h ../core/lastcontainer.h ../core/mounts.h
|
||||
who.o: ../core/mount.h ../core/request.h ../core/thread.h ../core/misc.h
|
||||
|
||||
Executable
+1
@@ -0,0 +1 @@
|
||||
o = dir.o doc.o done.o item.o last.o patterncacher.o priv.o sys.o templates.o thread.o user.o who.o
|
||||
+7
-1
@@ -2,12 +2,18 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/db.h"
|
||||
#include "../core/log.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+5
-1
@@ -2,12 +2,16 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+4
-1
@@ -2,12 +2,15 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+6
-1
@@ -2,12 +2,17 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+5
-1
@@ -2,16 +2,20 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/lastcontainer.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
{
|
||||
static size_t last_reqid = 0;
|
||||
|
||||
@@ -2,12 +2,15 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "patterncacher.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/log.h"
|
||||
|
||||
|
||||
|
||||
PatternCacher::PatternCacher()
|
||||
|
||||
@@ -2,20 +2,21 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef headerfilepatterncacher
|
||||
#define headerfilepatterncacher
|
||||
#ifndef headerfilecmslutemplatespatterncacher
|
||||
#define headerfilecmslutemplatespatterncacher
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
#include "../core/item.h"
|
||||
#include "../../ezc/src/ezc.h"
|
||||
#include "../core/log.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
+6
-1
@@ -2,12 +2,17 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+6
-1
@@ -2,12 +2,17 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
@@ -2,13 +2,15 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
+4
-16
@@ -2,38 +2,26 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef headerfiletemplates
|
||||
#define headerfiletemplates
|
||||
#ifndef headerfilecmslutemplatestemplates
|
||||
#define headerfilecmslutemplatestemplates
|
||||
|
||||
#include <iomanip>
|
||||
#include <set>
|
||||
|
||||
|
||||
#include "../../ezc/src/ezc.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/item.h"
|
||||
#include "../core/db.h"
|
||||
#include "../core/error.h"
|
||||
#include "../core/user.h"
|
||||
#include "../core/group.h"
|
||||
#include "../core/users.h"
|
||||
#include "../core/groups.h"
|
||||
#include "../core/log.h"
|
||||
#include "patterncacher.h"
|
||||
|
||||
|
||||
#ifdef APPTEMPLATES
|
||||
#include "../app/templates.h"
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
{
|
||||
using Ezc::Info;
|
||||
|
||||
@@ -2,12 +2,16 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+6
-1
@@ -2,12 +2,17 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
|
||||
+4
-1
@@ -2,7 +2,7 @@
|
||||
* This file is a part of CMSLU -- Content Management System like Unix
|
||||
* and is not publicly distributed
|
||||
*
|
||||
* Copyright (c) 2008, Tomasz Sowa
|
||||
* Copyright (c) 2008-2009, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
*/
|
||||
@@ -10,9 +10,12 @@
|
||||
#include "templates.h"
|
||||
#include "../core/sessioncontainer.h"
|
||||
#include "../core/requestcontroller.h"
|
||||
#include "../core/data.h"
|
||||
#include "../core/request.h"
|
||||
#include "../core/misc.h"
|
||||
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user