Discussion:
[naviserver-devel] gzipping static content - how to do?
John from Decent Espresso
2017-01-14 05:10:39 UTC
Permalink
I’m struggling a bit to get naviserver to gzip static content (.js and.css). ADP gzipping is working.

According to the docs, it’d seem that all I need to do is enable all the fastpath config stuff below, and it’d work, but that’s not doing the trick.  Perhaps there is additional fast path configuring to do to enable certain directories?

According to this code by Daniel Clark, a fast path filter is needed to make this work, but it seems that (a) his code may not be current and (b) his filter doesn’t work because he doesn’t supply the other dependent functions his code calls.
https://www.qcode.co.uk/post/121

I’ve looked at the fastpath.c/fastpath.tcl as the docs indicated, but was not illuminated.

I probably just don’t know where to look, but after about 2h of banging on this, I thought I’d ask for help
.

-john



ns_section "ns/fastpath"

   # Enable cache for normal URLs. Optional, default is false.
   ns_param cache true

   # Size of fast path cache. Optional, default is ~10M.
   ns_param cachemaxsize [expr 1024*10000]

   # Largest file size allowed in cache. Optional, default is 8K
   ns_param cachemaxentry 8192

   # Use mmap() for cache. Optional, default is false.
   ns_param mmap true

   # Return gzip-ed variant, if available and allowed by client (default false)
   ns_param gzip_static true

   # Refresh stale .gz files on the fly using ::ns_gzipfile (default false)
   ns_param gzip_refresh true

   # Return the specified command for re-compressing when gzip file is outdated
   ns_param gzip_cmd "/usr/bin/gzip -9"
Ben Brink
2017-01-14 06:03:50 UTC
Permalink
Hi John,

One has to gzip the files for naviserver to serve.

From the url you referred to:
"Once you have initially seeded the filesystem with .gz versions of
static files.."

cd to the dir with files static files:
gzip -k *

iirc one has to restart naviserver for the compressed files to be
registered for use.

cheers,
Ben
I’m struggling a bit to get naviserver to gzip static content (.js
and.css). ADP gzipping is working.
According to the docs, it’d seem that all I need to do is enable all the
fastpath config stuff below, and it’d work, but that’s not doing the
trick. Perhaps there is additional fast path configuring to do to
enable certain directories?
According to this code by Daniel Clark, a fast path filter is needed to
make this work, but it seems that (a) his code may not be current and
(b) his filter doesn’t work because he doesn’t supply the other
dependent functions his code calls.
https://www.qcode.co.uk/post/121
I’ve looked at the fastpath.c/fastpath.tcl as the docs indicated, but
was not illuminated.
I probably just don’t know where to look, but after about 2h of banging
on this, I thought I’d ask for help….
-john
ns_section"ns/fastpath"
# Enable cache for normal URLs. Optional, default is false.
ns_paramcachetrue
# Size of fast path cache. Optional, default is ~10M.
ns_paramcachemaxsize[expr 1024*10000]
# Largest file size allowed in cache. Optional, default is 8K
ns_paramcachemaxentry8192
# Use mmap() for cache. Optional, default is false.
ns_parammmaptrue
# Return gzip-ed variant, if available and allowed by client (default
false)
ns_paramgzip_statictrue
# Refresh stale .gz files on the fly using ::ns_gzipfile (default false)
ns_paramgzip_refreshtrue
# Return the specified command for re-compressing when gzip file is
outdated
ns_paramgzip_cmd"/usr/bin/gzip -9"
------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
Gustaf Neumann
2017-01-14 15:27:58 UTC
Permalink
Dear John,

The option "gzip_static" requires, that the files to be delivered are gzip
compressed in the file system. In order to have "gzip_rerfresh" working
(automatically re-compress the file when the version has changed) requires
that the server has write permissions on the .gz file and that "gzip_cmd"
points to the gzip program.

Below is something some data from a life site (openacs.org) having
static gzip delivery enabled with a snippet from the config file.

There is no extra filter necessary to get this working.

best regards
-gustaf neumann

URL:
http://www.openacs.org/resources/openacs-bootstrap3-theme/css/all.min.css

Snippet from the config file:

#---------------------------------------------------------------------
# Global fastpath parameters
#---------------------------------------------------------------------
ns_section "ns/fastpath"
#ns_param cache true ;# default: false
#ns_param cachemaxsize 10240000 ;# default: 1024*10000
#ns_param cachemaxentry 100000 ;# default: 8192
#ns_param mmap true ;# default: false
ns_param gzip_static true ;# check for static gzip; default: false
ns_param gzip_refresh true ;# refresh stale .gz files on the fly using ::ns_gzipfile
ns_param gzip_cmd "/bin/gzip -9" ;# use for re-compressing


files in the file system
/var/www/openacs.org/packages/openacs-bootstrap3-theme/www/resources/css# ls -ltr
-rw-rw-r-- 1 openacs nsadmin 115102 Jul 15 2016 all.min.css
-rw-rw-r-- 1 openacs nsadmin 20213 Jul 15 2016 all.min.css.gz
...

Reply header fields:

Accept-Ranges |bytes|
Connection |keep-alive|
Content-Encoding |gzip|
Content-Length |20213|
Content-Type |text/css|
Date |Sat, 14 Jan 2017 15:01:46 GMT|
Expires |Mon, 13 Feb 2017 15:01:46 GMT|
Last-Modified |Fri, 15 Jul 2016 15:39:21 GMT|
Server |NaviServer/4.99.15|
Vary |Accept-Encoding|
X-Content-Type-Options |nosniff|
X-Frame-Options |SAMEORIGIN|
X-XSS-Protection |1; mode=block|
I’m struggling a bit to get naviserver to gzip static content (.js
and.css). ADP gzipping is working.
According to the docs, it’d seem that all I need to do is enable all
the fastpath config stuff below, and it’d work, but that’s not doing
the trick. Perhaps there is additional fast path configuring to do to
enable certain directories?
According to this code by Daniel Clark, a fast path filter is needed
to make this work, but it seems that (a) his code may not be current
and (b) his filter doesn’t work because he doesn’t supply the other
dependent functions his code calls.
https://www.qcode.co.uk/post/121
I’ve looked at the fastpath.c/fastpath.tcl as the docs indicated, but
was not illuminated.
I probably just don’t know where to look, but after about 2h of
banging on this, I thought I’d ask for help….
-john
ns_section"ns/fastpath"
# Enable cache for normal URLs. Optional, default is false.
ns_paramcachetrue
# Size of fast path cache. Optional, default is ~10M.
ns_paramcachemaxsize[expr 1024*10000]
# Largest file size allowed in cache. Optional, default is 8K
ns_paramcachemaxentry8192
# Use mmap() for cache. Optional, default is false.
ns_parammmaptrue
# Return gzip-ed variant, if available and allowed by client
(default false)
ns_paramgzip_statictrue
# Refresh stale .gz files on the fly using ::ns_gzipfile (default
false)
ns_paramgzip_refreshtrue
# Return the specified command for re-compressing when gzip file is
outdated
ns_paramgzip_cmd"/usr/bin/gzip -9"
------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
--
Univ.Prof. Dr. Gustaf Neumann
WU Vienna
Institute of Information Systems and New Media
Welthandelsplatz 1, A-1020 Vienna, Austria
John from Decent Espresso
2017-01-16 04:49:39 UTC
Permalink
Hi Gustaf,
skel.min.js:2 Resource interpreted as Stylesheet but transferred with MIME type application/gzip: "https://decentespresso.com/css/style-xlarge.css".
-john
Gustaf Neumann
2017-01-16 07:52:08 UTC
Permalink
Dear John,

What version of NaviServer are you using?
There was a related bug in NaviServer 4.99.12, which was fixed in Sept
2016 by commit [2],
included in releases since 4.99.13 (Oct 2016)

all the best
-gustaf

[1] https://bitbucket.org/naviserver/naviserver/src/23966c68ab0a758f9d3127b5aaa9282de7289977/NEWS?at=default&fileviewer=file-view-default#NEWS-451
[2] https://bitbucket.org/naviserver/naviserver/commits/e26c913dd15c96ee0827a0cbf084936ff34bea49
Post by John from Decent Espresso
Hi Gustaf,
When I create a .gz file for the CSS file (by hand, to test) the
problem I encounter is that naviserver changes the MIME type to
skel.min.js:2 Resource interpreted as Stylesheet but transferred
"https://decentespresso.com/css/style-xlarge.css".
-john
John from Decent Espresso
2017-01-16 09:17:27 UTC
Permalink
Thanks Gustaf (Hahaha) that is the cause of the mime-type problem. I’ve upgraded to ns 4.99.15 and the MIME type bug is now gone.

However, I’m still not having gzipped files automatically made.  I’ve "chmod 777 ." and also "chmod 666 *.css" to try to find the root.

—

It appears that ns_gzipfile is not being called at all, as I modded it with this:

proc ns_gzipfile {source target} {
    puts "ns_gzipfile $source $target"

and it’s not ever called.

How would you recommend debugging this problem?

Is there some other nsd.tcl parameter needed indicate that (say) .js and .css files should be gzipped, but .jpg and .gif should not?


—

A different topic. I use the code patch below to get rid of the need for ".adp" on the end of my URLs.

In other words, naviserver transparently rewrites
https://decentespresso.com/cart
as
https://decentespresso.com/cart.adp

and doesn’t display the .adp to the user in the browser.  This makes for very clear urls.

This works for me, but would you recommend a less hard-wired hack to accomplish this same thing?

nsd/request.c
    if (*url != '\0' && url[strlen(url) - 1] == '/') {
        Ns_DStringAppend(&ds2, "/");
    }
   
/* john buckman added 4/14/06 */
/* check if should add default filename extension of .adp */
/* only if no / on end of url which indicates a directory */
char * dotpos;
if (ds2.string[ds2.length - 1] != '/') {
    /* if not . in the entire url, or if there is a dot before the final / (indicating a . in a
       directory name, which is ok, then add the default filename extension */
    dotpos = strrchr(ds2.string, '.');
    if ((dotpos == NULL) || (strchr(dotpos, '/') != NULL)) {
        Ns_DStringAppend(&ds2, ".adp");
/*        Ns_Log(Notice, "added default extension to get '%s'", ds2.string); */
    }
}
/* end john buckman added */
David Osborne
2017-01-16 10:05:05 UTC
Permalink
On 16 January 2017 at 09:17, John from Decent Espresso <
Post by John from Decent Espresso
Thanks Gustaf (Hahaha) that is the cause of the mime-type problem. I’ve
upgraded to ns 4.99.15 and the MIME type bug is now gone.
However, I’m still not having gzipped files automatically made. I’ve
"chmod 777 ." and also "chmod 666 *.css" to try to find the root.
Not sure if you picked up that the gzip files aren't automatically created
for you within Naviserver. But they are automatically refreshed. So you
need to manually create an initial gzipped version of all the files you
want to deliver gzip encoded.

Once the initial gzipped version exists, naviserver will deliver it, and
re-gzip if the static file is updated.

Daniel's filter is one way of achieving the initial gzipping.
John from Decent Espresso
2017-01-16 11:58:38 UTC
Permalink
Not sure if you picked up that the gzip files aren't automatically created for you within Naviserver. But they are automatically refreshed. So you need to manually create an initial gzipped version of all the files you want to deliver gzip encoded.

Once the initial gzipped version exists, naviserver will deliver it, and re-gzip if the static file is updated.

Daniel's filter is one way of achieving the initial gzipping.
Ah ha!  No, missed that important detail! Thank you!

DONE!

find . -name '*.css' -exec gzip -9 -f -k {} \;
Gustaf Neumann
2017-01-16 12:16:09 UTC
Permalink
Post by John from Decent Espresso
Thanks Gustaf (Hahaha) that is the cause of the mime-type problem.
I’ve upgraded to ns 4.99.15 and the MIME type bug is now gone.
However, I’m still not having gzipped files automatically made. I’ve
"chmod 777 ." and also "chmod 666 *.css" to try to find the root.
—
proc ns_gzipfile {source target} {
puts "ns_gzipfile $source $target"
and it’s not ever called.
How would you recommend debugging this problem?
Is there some other nsd.tcl parameter needed indicate that (say) .js
and .css files should be gzipped, but .jpg and .gif should not?
As David mentioned, one has to make a initial pick which files should be
delivered via static gzip by gzipping these. As you mentioned, the the
rules, what exactly should be delivered via gzip and what not might be
complex, so, we do not want to add overhead at the first place.

Ages ago, i wrote the little script below as a kick-starter for gzipping
for some filename patterns in some directories.
Maybe, someone will find this useful.

-g

###############################################################
#!/bin/bash
#
# This script checks a list of directories for a list of extensions and
# generated gzipped versions of the files that are found
#
# If the modification date of a file is newer than its gzipped version
# then the gzip file is regenerated

# Specify filetypes like *.css or a filename like index.html
FILETYPES="*.css *.js *.html"

# Specify a list of directories to check recursively
DIRECTORIES="/var/www/openacs.org/"

for currentdir in $DIRECTORIES
do
for extension in $FILETYPES
do
find $currentdir -iname $extension -exec bash -c 'PLAINFILE={};GZIPPEDFILE={}.gz; \
if [ -e $GZIPPEDFILE ]; \
then if [ `stat --printf=%Y $PLAINFILE` -gt `stat --printf=%Y $GZIPPEDFILE` ]; \
then echo "$GZIPPEDFILE outdated, regenerating"; \
gzip -9 -f -c $PLAINFILE > $GZIPPEDFILE; \
chown nsadmin:nsadmin $GZIPPEDFILE; \
fi; \
else echo "$GZIPPEDFILE is missing, creating it"; \
gzip -9 -c $PLAINFILE > $GZIPPEDFILE; \
chown nsadmin:nsadmin $GZIPPEDFILE; \
fi' \;
done
done
John from Decent Espresso
2017-01-17 03:51:36 UTC
Permalink
As David mentioned, one has to make a initial pick which files should be delivered via static gzip by gzipping these. As you mentioned, the the rules, what exactly should be delivered via gzip and what not might be complex, so, we do not want to add overhead at the first place.
Ok, that actually makes a lot of sense feature-wise, I just did not understand that important point from the existing documentation. So, it appears my system is now running the gzip compression correctly.

-john
Gustaf Neumann
2017-01-17 12:10:48 UTC
Permalink
Suggestions for an improved wording in the documentation are welcome.
-g
Post by John from Decent Espresso
Post by Gustaf Neumann
As David mentioned, one has to make a initial pick which files should
be delivered via static gzip by gzipping these. As you mentioned, the
the rules, what exactly should be delivered via gzip and what not
might be complex, so, we do not want to add overhead at the first place.
Ok, that actually makes a lot of sense feature-wise, I just did not
understand that important point from the existing documentation. So,
it appears my system is now running the gzip compression correctly.
Gustaf Neumann
2017-01-16 13:44:39 UTC
Permalink
Post by John from Decent Espresso
A different topic. I use the code patch below to get rid of the need
for ".adp" on the end of my URLs.
In other words, naviserver transparently rewrites
https://decentespresso.com/cart
as
https://decentespresso.com/cart.adp
and doesn’t display the .adp to the user in the browser. This makes
for very clear urls.
This works for me, but would you recommend a less hard-wired hack to
accomplish this same thing?
You have asked this question before:

[1] https://sourceforge.net/p/naviserver/mailman/message/32586538/

I don't like a hard-coded approach - the C code is agnostic on the .adp
extension. One would probably want to have the following behavior on an
URL ending with "/file" or "/file.adp":

called "file exists" "file.adp exists" action
=====================================================================
file 1 1 deliver "file"
file 1 0 deliver "file"
file 0 1 deliver "file.adp"
file 0 0 error
file.adp 1 1 deliver "file.adp"
file.adp 1 0 deliver "file"
file.adp 0 1 deliver "file.adp"
file.adp 0 0 error


A filter can achieve this behavior (see jeffs solution in the thread
above), which checks at runtime e.g. if "file" exists, and if not to try
"file.adp".

However, one does not want to run the filter on every requests, and the
approach should be compatible with the way how NaviServer configuration
works for choosing on which files the ADP parser should be used. This is
happening now via ns_register_adp (see [1]) using a config section like:

ns_section "ns/server/default/adp"
ns_param map /*.adp
ns_param disabled false


One approach would be to allow mapping rules for the URLspace machinery
for empty extensions (something, which does not exist yet). Such a
mapping rule could be used for a filter for only urls without
extensions, or it could be used to map adp pages with empty extensions
with "ns_register_adp" like above and let the ADP "PageRequest" check,
if a file with ".adp" exists. Such a syntactic rule for for the URLspace
could be used as well in other operations on the URLspace (for
registering procs, connection pool mapping, ns_urlspace, etc.). This
would be backward compatible and avoid overall overhead....

-g
PS: As we are using on our main sites OpenACS, we do not have this
problem, since OpenACS defines its own "request processor" which handles
every URL.


https://bitbucket.org/naviserver/naviserver/src/a6cf227cad8d0c03dc3dff3c643b704e06ea1238/tcl/config.tcl?at=default&fileviewer=file-view-default#config.tcl-120
John from Decent Espresso
2017-01-17 03:50:14 UTC
Permalink
You have asked this question before:
Sorry Gustaf, I thought I had asked aolserver before, not naviserver. At any rate, still no good solution to this, other than adding a tcl filter that captures and potentially rewrites all requests.

However, one does not want to run the filter on every requests, 
Agreed.

and the approach should be compatible with the way how NaviServer configuration works for choosing on which files the ADP parser should be used. This is happening now via ns_register_adp (see [1]) using a config section like:
ns_section "ns/server/default/adp"
ns_param map /*.adp
ns_param disabled false
Another approach would be for that map to be defined for no-extension files, perhaps something like this:

ns_param map /*?^[\.]
but such pattern matching isn't (to my knowledge) supported.


One approach would be to allow mapping rules for the URLspace machinery for empty extensions (something, which does not exist yet). Such a mapping rule could be used for a filter for only urls without extensions, or it could be used to map adp pages with empty extensions with "ns_register_adp" like above and let the ADP "PageRequest" check, if a file with ".adp" exists. Such a syntactic rule for for the URLspace could be used as well in other operations on the URLspace (for registering procs,  connection pool mapping, ns_urlspace, etc.). This would be backward compatible and avoid overall overhead....
I quite like your suggestion, which I assume would be something like this:

ns_section "ns/server/default/adp"
ns_param enable_when_no_extension true
ns_param disabled false
that’s more or less what I’ve implemented with my hack.
PS: As we are using on our main sites OpenACS, we do not have this problem, since OpenACS defines its own "request processor" which handles every URL.
I see.

-john
Gustaf Neumann
2017-01-17 12:12:28 UTC
Permalink
Dear John,

I've prototyped something along these lines, which looks promising so far.

Premises:
- fit into urlspace mechanism
- not limited in applicability to .adp
- no full rewrite of urlspace (which is already complex enough)
- keep speed of existing implementation
- provide a mostly conservative extensions

Some of these premises overlap.
One option would be to switch from glob string matching to regexp,
but that would be significantly slower and would require a larger
changes to avoid frequent regexp compilations.

The implemented approach allows to specify in addition to a
(positive) match pattern (such as "foo*") optionally a negative match
pattern (such as ^*.*), which can be used to say "match which such
names except with some others". One can specify e.g. "foo*^*.*"
which means files starting with "foo" but which must not have
an extension (must not match with "*.*"). One can use as well
rules like "must not contain a dash", or "must not start with an upper
case character" or whatever. Both match pattern are applied with
Tcl's string match implementation, which is quite efficient.

To see this in action, look at the following test case, where
an urlspace entry s set with an extension (foo*.tcl), one other is
set with a wild card (/bar*) and one is set with a wild card and
a negative pattern. These urlspace entries are matched with
URLs with and without extension. Either
- only the URL with the extension is matched (first two cases), or
- both URLs are matched (second two cases), or
- just the entry without the extension is matched (last two cases)

=======================================================================
test ns_urlspace-5.1 {wild-card-filter with negative patterns} -setup {
ns_urlspace set /foo*.tcl 1
ns_urlspace set /bar* 2
ns_urlspace set /baz*^*.* 3
} -body {
foreach url {
/foo1.tcl /foo1
/bar1.tcl /bar1
/baz1.tcl /baz1
} {
lappend _ [ns_urlspace get $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {1 {} 2 2 {} 3}
=======================================================================

The path matching is untouched, as well as the features noinherit,
exact, etc.

To apply this approach to the .adp case, one can now call ns_register_adp
(in addition to the standard cases) with a negative pattern, add optionally
in the ADP PageRequest() the .adp if the first match fails, and we are
done.

In the test cases, there exists a /helloworld.adp file, which can be called
now via /helloworld, whereas /hellow returns a 404 like usual.

=======================================================================
test adp-2.1 {ADP page map} -setup {
ns_register_adp GET /hello*^*.*
} -body {
nstest::http -getbody 1 GET /helloworld
} -cleanup {
ns_unregister_op GET /hello*^*.*
} -result {200 {Hello World!}}
=======================================================================

I have not looked at the consequences for subsumption of patterns, or
deletion/querying of patterns etc, but this seems doable.

Syntax-wise, we could consider as well the following candidates

{/hello*^[*.*]}
"/hello* ^*.*"
/hello*^{*.*}
/hello*{^}*.*
/hello*{NOT}*.*
"/hello* -not *.*"
"/hello* -not *.* -noinherit"

However, i am not too happy about requiring quoting with double quotes
or braces.
The single character "^" has advantages for escaping, when it should be
taken literally
(and not as start character for a negative pattern).

The last syntax option has the advantage to specify also "-noinherit" in
the string
provided to e.g. map in the config file, which is currently not possible
(meaning:
do not apply this matching rule for the underlying directories).

OTOH, the -noinherit etc. is already supported by the API, so, why
reinvent some
(redundant) syntax, we could as well use instead of "map" a "mapcmd" with a
generalized "ns_register" (setting per default the methods GET POST HEAD)

ns_section ns/server/default/adp
ns_param mapcmd {ns_register ... -pattern /*.adp -noinherit}
ns_param mapcmd {ns_register ... -pattern /* -except *.*}

this way, we get standardized error messages, etc... The old "map"
syntax can be supported as well for a while... The same can be made as
well for other "maps" (e.g. connection pool mappings) Comments are
always welcome. all the best -g
Stephen
2017-01-17 17:21:09 UTC
Permalink
Try something like:

ns_register_url2file /* my_no_adp_ext_url2file_proc

foreach ext {adp html txt xml jpg gif} {
ns_register_fasturl2file "/*.$ext"
}
ns_register_fasturl2file /static/*


ns_register_url2file handles only url-to-file lookups so you can still
use filters and registered procs as usual

my_no_adp_ext_url2file_proc only has to handle the case where no
extension is present even though it is registered for the whole
urlspace, because...

the filter /*.adp is more specific than /*, so the default fast
url2file handler will run for any url with a common extension in the
global urlspace, plus all urls under /static/*
Post by Gustaf Neumann
Dear John,
I've prototyped something along these lines, which looks promising so far.
- fit into urlspace mechanism
- not limited in applicability to .adp
- no full rewrite of urlspace (which is already complex enough)
- keep speed of existing implementation
- provide a mostly conservative extensions
Some of these premises overlap.
One option would be to switch from glob string matching to regexp,
but that would be significantly slower and would require a larger
changes to avoid frequent regexp compilations.
The implemented approach allows to specify in addition to a
(positive) match pattern (such as "foo*") optionally a negative match
pattern (such as ^*.*), which can be used to say "match which such
names except with some others". One can specify e.g. "foo*^*.*"
which means files starting with "foo" but which must not have
an extension (must not match with "*.*"). One can use as well
rules like "must not contain a dash", or "must not start with an upper
case character" or whatever. Both match pattern are applied with
Tcl's string match implementation, which is quite efficient.
To see this in action, look at the following test case, where
an urlspace entry s set with an extension (foo*.tcl), one other is
set with a wild card (/bar*) and one is set with a wild card and
a negative pattern. These urlspace entries are matched with
URLs with and without extension. Either
- only the URL with the extension is matched (first two cases), or
- both URLs are matched (second two cases), or
- just the entry without the extension is matched (last two cases)
=======================================================================
test ns_urlspace-5.1 {wild-card-filter with negative patterns} -setup {
ns_urlspace set /foo*.tcl 1
ns_urlspace set /bar* 2
ns_urlspace set /baz*^*.* 3
} -body {
foreach url {
/foo1.tcl /foo1
/bar1.tcl /bar1
/baz1.tcl /baz1
} {
lappend _ [ns_urlspace get $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {1 {} 2 2 {} 3}
=======================================================================
The path matching is untouched, as well as the features noinherit, exact,
etc.
To apply this approach to the .adp case, one can now call ns_register_adp
(in addition to the standard cases) with a negative pattern, add optionally
in the ADP PageRequest() the .adp if the first match fails, and we are done.
In the test cases, there exists a /helloworld.adp file, which can be called
now via /helloworld, whereas /hellow returns a 404 like usual.
=======================================================================
test adp-2.1 {ADP page map} -setup {
ns_register_adp GET /hello*^*.*
} -body {
nstest::http -getbody 1 GET /helloworld
} -cleanup {
ns_unregister_op GET /hello*^*.*
} -result {200 {Hello World!}}
=======================================================================
I have not looked at the consequences for subsumption of patterns, or
deletion/querying of patterns etc, but this seems doable.
Syntax-wise, we could consider as well the following candidates
{/hello*^[*.*]}
"/hello* ^*.*"
/hello*^{*.*}
/hello*{^}*.*
/hello*{NOT}*.*
"/hello* -not *.*"
"/hello* -not *.* -noinherit"
However, i am not too happy about requiring quoting with double quotes or
braces.
The single character "^" has advantages for escaping, when it should be
taken literally
(and not as start character for a negative pattern).
The last syntax option has the advantage to specify also "-noinherit" in the
string
provided to e.g. map in the config file, which is currently not possible
do not apply this matching rule for the underlying directories).
OTOH, the -noinherit etc. is already supported by the API, so, why reinvent
some
(redundant) syntax, we could as well use instead of "map" a "mapcmd" with a
generalized "ns_register" (setting per default the methods GET POST HEAD)
ns_section ns/server/default/adp
ns_param mapcmd {ns_register ... -pattern /*.adp -noinherit}
ns_param mapcmd {ns_register ... -pattern /* -except *.*}
this way, we get standardized error messages, etc... The old "map" syntax
can be supported as well for a while... The same can be made as well for
other "maps" (e.g. connection pool mappings) Comments are always welcome.
all the best -g
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
Gustaf Neumann
2017-01-17 21:43:25 UTC
Permalink
Dear Stephen and all,

That is a neat idea! The only disadvantage is, that the order of
registration is important,
which can can lead to fiddling with the config file and to some not easy
predictable behavior.

The behavior can be neatly demonstrated with ns_urlspace
(using X as a special key for testing purposes).

=============================================================
test ns_urlspace-5.2 {wild-card-filter with ordering} -setup {
ns_urlspace set -key X /* ADP
ns_urlspace set -key X /*.adp ADP
ns_urlspace set -key X /*.tcl TCL
ns_urlspace set -key X /*.* FILE
ns_urlspace set -key X /static/* FILE
} -body {
foreach url {
/test.adp /test.txt /test.tcl /test
/static/test.adp /static/test.txt /static/test.tcl /static/test
} {
lappend _ [ns_urlspace get -key X $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {ADP FILE TCL ADP FILE FILE FILE FILE}
=============================================================

The urls "/test.adp" and "/test" are mapped to ADP, therefore these can be
mapped to "ns_register_adp" and the other ones to either
"ns_register_tcl" or
"ns_register_fasturl2file". Just the tiny change for adding the default
extension
in ADP PageRequest() is needed to achieve what John asked for....

-g
Post by Stephen
ns_register_url2file /* my_no_adp_ext_url2file_proc
foreach ext {adp html txt xml jpg gif} {
ns_register_fasturl2file "/*.$ext"
}
ns_register_fasturl2file /static/*
ns_register_url2file handles only url-to-file lookups so you can still
use filters and registered procs as usual
my_no_adp_ext_url2file_proc only has to handle the case where no
extension is present even though it is registered for the whole
urlspace, because...
the filter /*.adp is more specific than /*, so the default fast
url2file handler will run for any url with a common extension in the
global urlspace, plus all urls under /static/*
Post by Gustaf Neumann
Dear John,
I've prototyped something along these lines, which looks promising so far.
- fit into urlspace mechanism
- not limited in applicability to .adp
- no full rewrite of urlspace (which is already complex enough)
- keep speed of existing implementation
- provide a mostly conservative extensions
Some of these premises overlap.
One option would be to switch from glob string matching to regexp,
but that would be significantly slower and would require a larger
changes to avoid frequent regexp compilations.
The implemented approach allows to specify in addition to a
(positive) match pattern (such as "foo*") optionally a negative match
pattern (such as ^*.*), which can be used to say "match which such
names except with some others". One can specify e.g. "foo*^*.*"
which means files starting with "foo" but which must not have
an extension (must not match with "*.*"). One can use as well
rules like "must not contain a dash", or "must not start with an upper
case character" or whatever. Both match pattern are applied with
Tcl's string match implementation, which is quite efficient.
To see this in action, look at the following test case, where
an urlspace entry s set with an extension (foo*.tcl), one other is
set with a wild card (/bar*) and one is set with a wild card and
a negative pattern. These urlspace entries are matched with
URLs with and without extension. Either
- only the URL with the extension is matched (first two cases), or
- both URLs are matched (second two cases), or
- just the entry without the extension is matched (last two cases)
=======================================================================
test ns_urlspace-5.1 {wild-card-filter with negative patterns} -setup {
ns_urlspace set /foo*.tcl 1
ns_urlspace set /bar* 2
ns_urlspace set /baz*^*.* 3
} -body {
foreach url {
/foo1.tcl /foo1
/bar1.tcl /bar1
/baz1.tcl /baz1
} {
lappend _ [ns_urlspace get $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {1 {} 2 2 {} 3}
=======================================================================
The path matching is untouched, as well as the features noinherit, exact,
etc.
To apply this approach to the .adp case, one can now call ns_register_adp
(in addition to the standard cases) with a negative pattern, add optionally
in the ADP PageRequest() the .adp if the first match fails, and we are done.
In the test cases, there exists a /helloworld.adp file, which can be called
now via /helloworld, whereas /hellow returns a 404 like usual.
=======================================================================
test adp-2.1 {ADP page map} -setup {
ns_register_adp GET /hello*^*.*
} -body {
nstest::http -getbody 1 GET /helloworld
} -cleanup {
ns_unregister_op GET /hello*^*.*
} -result {200 {Hello World!}}
=======================================================================
I have not looked at the consequences for subsumption of patterns, or
deletion/querying of patterns etc, but this seems doable.
Syntax-wise, we could consider as well the following candidates
{/hello*^[*.*]}
"/hello* ^*.*"
/hello*^{*.*}
/hello*{^}*.*
/hello*{NOT}*.*
"/hello* -not *.*"
"/hello* -not *.* -noinherit"
However, i am not too happy about requiring quoting with double quotes or
braces.
The single character "^" has advantages for escaping, when it should be
taken literally
(and not as start character for a negative pattern).
The last syntax option has the advantage to specify also "-noinherit" in the
string
provided to e.g. map in the config file, which is currently not possible
do not apply this matching rule for the underlying directories).
OTOH, the -noinherit etc. is already supported by the API, so, why reinvent
some
(redundant) syntax, we could as well use instead of "map" a "mapcmd" with a
generalized "ns_register" (setting per default the methods GET POST HEAD)
ns_section ns/server/default/adp
ns_param mapcmd {ns_register ... -pattern /*.adp -noinherit}
ns_param mapcmd {ns_register ... -pattern /* -except *.*}
this way, we get standardized error messages, etc... The old "map" syntax
can be supported as well for a while... The same can be made as well for
other "maps" (e.g. connection pool mappings) Comments are always welcome.
all the best -g
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
--
Univ.Prof. Dr. Gustaf Neumann
WU Vienna
Institute of Information Systems and New Media
Welthandelsplatz 1, A-1020 Vienna, Austria
Stephen
2017-01-17 22:53:02 UTC
Permalink
Post by Gustaf Neumann
Dear Stephen and all,
That is a neat idea! The only disadvantage is, that the order of
registration is important,
which can can lead to fiddling with the config file and to some not easy
predictable behavior.
Does it make any difference in practice? Looks like the filters are
stored sorted according to this order:

https://bitbucket.org/naviserver/naviserver/src/57c84d3671e7127ae42f3754463dead32b04f256/nsd/urlspace.c?at=default&fileviewer=file-view-default#urlspace.c-1141

Which tends to match more specific filters first.

This test looks looks good. Does it still work if /* and /*.* are
registered after the others?
Post by Gustaf Neumann
The behavior can be neatly demonstrated with ns_urlspace
(using X as a special key for testing purposes).
=============================================================
test ns_urlspace-5.2 {wild-card-filter with ordering} -setup {
ns_urlspace set -key X /* ADP
ns_urlspace set -key X /*.adp ADP
ns_urlspace set -key X /*.tcl TCL
ns_urlspace set -key X /*.* FILE
ns_urlspace set -key X /static/* FILE
} -body {
foreach url {
/test.adp /test.txt /test.tcl /test
/static/test.adp /static/test.txt /static/test.tcl /static/test
} {
lappend _ [ns_urlspace get -key X $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {ADP FILE TCL ADP FILE FILE FILE FILE}
=============================================================
Gustaf Neumann
2017-01-18 10:46:13 UTC
Permalink
Post by Stephen
Post by Gustaf Neumann
That is a neat idea! The only disadvantage is, that the order of
registration is important,
which can can lead to fiddling with the config file and to some not easy
predictable behavior.
Does it make any difference in practice?
Don't know. The config files are designed having separation of concerns
in mind, the plain NaviServer user has typically no knowledge about the
registration order and how to influence it.
Post by Stephen
This test looks looks good. Does it still work if /* and /*.* are
registered after the others?
yes, by looking at the code and some small tests. But the fact, that you
are asking the question show, that the precedence order is not fully
clear. However, for this case, only a little control is needed.

By these experiments, i would tend to think, that we do not need
negative patterns. However, getting more control over the URLspace (e.g.
noinherit) would be nice, but that can be as well achieved via the
programmatic interface.

-g
John from Decent Espresso
2017-01-18 02:45:04 UTC
Permalink
Some of these premises overlap.
One option would be to switch from glob string matching to regexp,
but that would be significantly slower and would require a larger
changes to avoid frequent regexp compilations.
I agree with your reasoning, and would also argue that moving to regexp would potentially break existing filters, as well as a big speed penalty. That’s why I coded my initial implementation in C. If someone wants regexp filename matching, they can just filter every page request and do the regexp in Tcl.

The implemented approach allows to specify in addition to a
(positive) match pattern (such as "foo*") optionally a negative match
pattern (such as ^*.*), which can be used to say "match which such
It’s a slightly weird pattern match syntax, but as it’s efficient and easily implemented, I like it!

from what I’m understanding, implementing a anything-without-an-extension-is-adp would be a filter like this?

ns_register_adp GET /*^*.*
Is that right?
Can you confirm a file name of "test.situation.adp" would work with this filter? 
i.e.:
http://localhost/test.situation
If not, that’s an ok limitation, but I wanted to call it out.

-john
Gustaf Neumann
2017-01-18 10:19:33 UTC
Permalink
from what I’m understanding, implementing a
anything-without-an-extension-is-adp would be a filter like this?
Post by John from Decent Espresso
ns_register_adp GET /*^*.*
Is that right?
Can you confirm a file name of "test.situation.adp" would work with this filter?
It depends, what "work" means and in which order the entries are defined
(as discussed in the other thread).
In the following scenario, "/foo" is interpreted as ADP and "/foo.1" as
FILE (along with the more obvious cases.

=======================================================================
test ns_urlspace-5.3 {wild-card-filter with negative patterns} -setup {
ns_urlspace set -key 5.3 /*.* FILE
ns_urlspace set -key 5.3 /*.adp ADP
ns_urlspace set -key 5.3 /*.tcl TCL
ns_urlspace set -key 5.3 /*^*.* ADP
} -body {
foreach url {
/foo.adp /foo.tcl /foo.txt /foo
/foo.1.adp /foo.1.tcl /foo.1.txt /foo.1
} {
lappend _ [ns_urlspace get -key 5.3 $url]
}
set _
} -cleanup {
unset -nocomplain _
} -result {ADP TCL FILE ADP ADP TCL FILE FILE}
=======================================================================

However, when the first mapping is be changed from "/*.*" to "/*", this
will - in my current, uncommited implementation of negative patterns -
subsume the line with the negative pattern, and "/foo" will be mapped to
"FILE" as well (these subsumption interactions have to be looked into it
in detail, as indicated earlier).

Notice as well, that the NaviServer "filters" (registered via
"ns_register_filter") are an implementation completely independent of
the urlspace (used e.g. for "ns_register_proc", "ns_register_adp", ...).
Filters are collected in a linear list (not in a trie like in urlspace),
filters have a "continue" interface (e.g. should more filters be
executed?) and they use only simple tcl match on the method and url. So,
when the urlspace machinery is extended, this does not affect filters.
The urlspace trie is designed to scale and to work with large amounts of
url patterns (see as well the section "similar, but significantly
different" in [1]).

Wouldn't be a solution based on a default rule as suggested by Stephen,
where the name with out extension is mapped to the adp processor, which
checks for a default extension before retuning 404, an option for your
scenario? I've added the change for handling such a default extension to
bitbucket [2].

-g

[1] https://naviserver.sourceforge.io/n/naviserver/files/ns_register.html
[2]
https://bitbucket.org/naviserver/naviserver/commits/f563564dfc30f52a88483bda54f2c0887c17474f
John from Decent Espresso
2017-01-18 11:01:32 UTC
Permalink
Wouldn't be a solution based on a default rule as suggested by Stephen, where the name with out extension is mapped to the adp processor, which checks for a default extension before retuning 404, an option for your scenario? 
Yes, absolutely, Stephen’s suggestion will work for me.  

Another approach to solving this my problem would be to register a 404 handler, which then checks to see if an.adp version of the request exists and returns that instead.  For efficiency, I could modify ns_register_adp that page after the first 404 happens.  Basically, it’s stephen’s approach combined with a 404 handler.

The advantage of this approach is that I don’t have to pre-register all my ADPs and also if I create new ADPs the 404 handler automatically notices them.

On my bookmooch.com site (running aolserver) I use a 404 handler to return book cover images and file-system-cache the results. The first time a URL such as Loading Image... is called, the file doesn’t exist, so the 404 handler makes the jpg (by proxying from amazon.com) and returns it, and then saves the contents as a file, for fast future delivery.  This sort of hack is why I love navisever/aolserver, as doing this sort of thing on any other web platform I can think of would be really hard.

So, now I have at least two good solutions to my problem, thank you, and so if you don’t want to mess up the source with new options I’d be ok with that. :D

-john
Iuri Sampaio
2017-03-11 03:08:26 UTC
Permalink
After upgrading NS to 4.99.15 Nginx is unable to access OACS rootdir
because NS doesn't stay listening on port 8080. After booting up NS, it
doens't keep listening on port 8080. For that reason NGINX unable to
complete requests, its attempt to conect gets refused.

/usr/local/ns/bin/nsd -u evex -g nsadmin -t /usr/local/ns/1c.tcl

The entire log is appended bellow.

Nginx logs

2017/03/10 21:56:19 [error] 21776#0: *28 connect() failed (111:
Connection refused) while connecting to upstream, client: 163.172.65.57,
server: evex.co, request: "GET
/calendar/cal-item-new?start_time=16&date=2017-02-16 HTTP/1.1",
upstream:
"http://192.199.241.135:8080/calendar/cal-item-new?start_time=16&date=2017-02-16",
host: "evex.co"


Plus, "netstat -lna | grep tcp" confirms that ports has not been
listening by NS.
***@iurix:~# netstat -lna |grep tcp
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 192.199.241.135:22 177.148.154.81:32835 ESTABLISHED
tcp 0 0 192.199.241.135:22 177.148.154.81:33620 ESTABLISHED
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:5432 :::* LISTEN
tcp6 0 0 :::25 :::* LISTEN
tcp6 0 0 :::993 :::* LISTEN
tcp6 0 0 :::143 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN



Error.log only shows one potential cause
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used

Would it be the motive?


[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain:
NaviServer/4.99.15 starting
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: Tcl
version: 8.5.19
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: max
files: soft limit 4096, hard limit 4096
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: pool default:
queueLength 90 low water 9 high water 90
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice:
nsd/init.tcl[evex]: booting virtual server: tcl system encoding: "utf-8"
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nslog from file /usr/local/ns/bin/nslog.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nslog: opened
'/var/www/evex/log/access.log'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsdb from file /usr/local/ns/bin/nsdb.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module ns/db/driver/postgres from file /usr/local/ns/bin/nsdbpg.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: version
2.1 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool1 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool2 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsproxy from file /usr/local/ns/bin/nsproxy.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module libthread from file /usr/local/ns/lib/thread2.7.3/libthread2.7.3.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: XOTcl 2.0.0 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Using ns_cache
based on NX 2.0.0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: adp[evex]: mapped
{GET HEAD POST} /*.adp
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: conf:
[ns/server/evex] enabletclpages = 0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading OpenACS,
rooted at /var/www/evex
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Sourcing
/var/www/evex/packages/acs-bootstrap-installer/bootstrap.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: bootstrap begin
encoding utf-8
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Database API:
Default database (dbn) is: 'default'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Database API:
Using ALL database pools for OpenACS.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Database API: The
following pools are available for OpenACS: pool1 pool2 pool3
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice:
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice:
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice:
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Bootstrap:
Loading acs-tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs-postgresql.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/10-charset-compat-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/30-xml-utils-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-kernel-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-permissions-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-private-data-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ad-functional-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/adp-parser-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/aolserver-3-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-file-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-install-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-xml-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-data-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/callback-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-2-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/defs-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/deprecated-utilities-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ds-stub-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/exception-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/form-processing-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-email-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-auth-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-client-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/image-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/install-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/json-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/membership-rel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/memoize-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-callback-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-type-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/openacs-kernel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/parameter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pdf-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/proxy-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/server-cluster-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/set-operation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-apm-integration-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-object-map-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: use XOTcl Site Nodes
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: creating
xo_site_nodes cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/sql-statement-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/stack-trace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/table-display-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcl-documentation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tdom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/text-html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/user-extensions-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/util-diff-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/widgets-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-0-sgml-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-1-dom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-2-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/20-memoize-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/database-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pools-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Warning:
ns_unregister_proc GET /*.tcl is deprecated. Use 'ns_unregister_op' instead!
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Warning:
ns_unregister_proc HEAD /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Warning:
ns_unregister_proc POST /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice:
security-init.tcl: Creating secret_tokens ns_cache...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice:
security-init.tcl: Populating secret_tokens ns_cache...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: site_node::init_cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing specially so other packages can define tests...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/aa-test-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/example-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/filter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/selenium-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/tclwebtest-procs.tcl
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/0-acs-templating-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/0-acs-templating-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/currency-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/currency-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/data-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/data-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/debug-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/debug-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/dimensional-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/dimensional-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-tcl-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-tcl-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/element-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/element-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/form-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/form-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/head-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/head-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/list-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/list-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/mime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/mime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/paginator-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/paginator-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/parse-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/parse-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/query-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/query-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/request-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/request-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-or-file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-or-file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tab-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tab-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/table-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/table-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/wizard-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/wizard-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/implementation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/implementation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/msg-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/msg-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/bounce-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/bounce-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/utils-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/utils-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/acs-admin-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/acs-admin-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/merge-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/merge-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authentication-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authentication-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authority-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authority-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/driver-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/driver-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/local-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/local-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/password-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/password-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/extra-args-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/extra-args-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-convert-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-convert-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/syndicate-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-permission-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-permission-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-template-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-template-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/publish-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/publish-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-reference/tcl/acs-reference-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-reference/tcl/acs-reference-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-timezones/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-timezones/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/ref-language-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/ref-language-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/ref-countries-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/ref-countries-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-audit-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-audit-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-catalog-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-catalog-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-install-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-install-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-message-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-message-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/locale-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/locale-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/application-group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/application-group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/attribute-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/attribute-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/email-image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/email-image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/package-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/package-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/party-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/party-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-segments-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-segments-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-types-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-types-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-navigation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-navigation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-support-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-support-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/tDAV-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Registered
filters on /dav*
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Filesystem
access by WebDAV disabled
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/tDAV-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/delivery-method-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/delivery-method-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/interval-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/interval-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-display-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-display-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-reply-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-reply-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-request-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-request-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-type-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-type-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notifications-security-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notifications-security-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-form-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-form-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-links-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-links-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-list-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-list-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-synonyms-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-synonyms-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-trees-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-trees-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-xml-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-xml-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/tagcloud-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/tagcloud-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-search-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-search-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-torrent-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-torrent-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/attachments/tcl/attachments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/attachments/tcl/attachments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/cal-item-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/cal-item-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-compatibility-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-compatibility-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-outlook-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-outlook-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-audit-trail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-audit-trail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-product-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-product-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-batch-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-batch-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-ex-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-ex-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-credit-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-credit-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/froogle-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/froogle-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/paypal-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/paypal-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/qmail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/qmail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/resource-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/resource-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/social-networking-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/social-networking-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/evex-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/evex-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/xml-rpc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/xml-rpc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/trackback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/trackback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogroll-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogroll-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/category-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/category-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/entry-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/entry-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/weblogs-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/weblogs-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/theme-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/theme-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tags/tcl/tags-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tags/tcl/tags-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/00-serializer-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/00-serializer-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/01-debug-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Defining minimal
XOTcl 1 compatibility
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: 'ns_ictl ondelete
' is deprecated. Use 'ns_ictl trace delete ...' instead.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/01-debug-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/03-doc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/03-doc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/04-library-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/04-library-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/05-db-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: xotcl-core:
creating xotcl-object caches
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::db::Class ...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: loaded 504
definitions from function args
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NAME from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__DELETE from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NEW from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NAME from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
CONTENT_TEMPLATE__GET_ROOT_FOLDER from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__TITLE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__UPDATE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::db::Attribute ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::db::CrAttribute ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/05-db-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-package-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-package-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-param-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-param-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/10-recreation-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xotcl::RecreationClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: -- softrecreate
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/10-recreation-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/30-widget-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/30-widget-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/40-thread-mod-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/40-thread-mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/bgdelivery-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid0 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/bgdelivery-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/context-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Context ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/context-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cr-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::db::CrClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --Postgres
Version 9.1
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::db::CrFolder ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cr-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/generic-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::Generic::Form ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::Generic::List ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/generic-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/html-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/html-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/http-client-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/http-client-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/ical-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::ical ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/ical-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/install-check-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/install-check-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/policy-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/policy-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::throttle ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid1 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/adp-generator-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/adp-generator-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/bootstrap-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/menu-procs.tcl, ::xo::library
->require (0ms, 1ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/bootstrap-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/category-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/category-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/xowiki-procs.tcl, ::xo::library
->require (0ms, 28ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: xotcl-core:
creating xowiki cache
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/includelet-procs.tcl, ::xo::library
->require (0ms, 451ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/form-field-procs.tcl, ::xo::library
->require (0ms, 48ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/import-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/import-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/lcs-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/lcs-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/link-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/link-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/package-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/package-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/repeat-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/repeat-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/syndicate-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::RSS ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/template-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/template-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/tree-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/tree-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/weblog-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/weblog-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-callback-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-callback-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-form-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::WikiForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-form-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-mode-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-mode-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-sc-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-sc-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-uploader-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::Upload ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::UploadFile ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-uploader-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-utility-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-utility-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-www-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-www-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/yui-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::loader ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/yui-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/atjob-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/atjob-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/test-item-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms, 360ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::loader ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::RSS ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::WikiForm ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::Upload ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::UploadFile ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::loader ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::YUI::AnchorField ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice:
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/test-item-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-calllback-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-calllback-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-form-field-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-form-field-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-includelet-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-includelet-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/test/acs-admin-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/test/acs-admin-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/sync-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/sync-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/selenium-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/selenium-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-search-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-search-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/application-data-link-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/application-data-link-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/community-core-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/community-core-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/doc-check-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/doc-check-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/file-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/file-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-conversion-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-conversion-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-email-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-email-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/log-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/log-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/memoizing-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/memoizing-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/navigation-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/navigation-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/object-test-case-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/object-test-case-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-permissions-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-permissions-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/whos-online-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/whos-online-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/date-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/date-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/multirow-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/multirow-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/parse-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/parse-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/spell-checker-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/spell-checker-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/cal-item-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/cal-item-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/calendar-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/calendar-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/test/categories-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/test/categories-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/file-storage-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/file-storage-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/tclwebtest-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/tclwebtest-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/blogger-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/blogger-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/entry-test-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/entry-test-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/test/trackback-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/test/trackback-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl.
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl.
[10/Mar/2017:21:56:38][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/acs-lang-init.tcl...
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice:
lang::message::cache - Initialized message cache with 6160 rows from
database
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/acs-lang-init.tcl.
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-data-init.tcl...
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-data-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-templating-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-templating-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-init.tcl...
[10/Mar/2017:21:56:40][22681.b71a7ad0][-main-] Notice: OpenSSL 1.0.1t 3
May 2016 initialized
[10/Mar/2017:21:56:40][22671.b61fcb70][-nsproxy:reap-] Notice: starting
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/aa-test-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/aa-test-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Developer-support
user-switching disabled
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/acs-subsite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/acs-subsite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: OACS-DAV preauth
filters loaded on /dav/*
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
ad_parameter used:
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs

[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Warning: nsf: value
'-default' of parameter 'package_key' could be a non-positional argument
during:
nsf::proc ad_parameter PaymentGateway -default {}
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
ad_parameter used:
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs

[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/object-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/object-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-init.tcl.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: bootstrap
finished encoding utf-8
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Bootstrap: Done
loading OpenACS.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Sourcing files
for postload...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Done.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code blocks...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block filters_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice:
ns_register_filter postauth GET * rp_invoke_filter 0 0 1 throttle {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice:
ns_register_filter postauth POST * rp_invoke_filter 1 0 1 throttle {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice:
ns_register_filter trace GET /* rp_invoke_filter 2 0 3 ds_trace_filter {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice:
ns_register_filter trace POST /* rp_invoke_filter 3 0 3 ds_trace_filter {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice:
ns_register_filter trace HEAD /* rp_invoke_filter 4 0 3 ds_trace_filter {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block procs_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
to load from www:
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
to load from tcl:
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice:
thottle-DESTROY-shutdownpending->0
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::throttle ::xotcl::THREAD->destroy (0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::bgdelivery ::xotcl::THREAD->destroy (0ms, 0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE done (95ms)
[10/Mar/2017:21:56:45][22671.b70d86c0][-main-] Notice: nsmain:
NaviServer/4.99.15 running
[10/Mar/2017:21:56:45][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:45][22671.b7085b70][-sched-] Notice: sched: starting
[10/Mar/2017:21:56:46][22671.b517bb70][-conn:evex:1-] Notice: dbdrv:
opening database 'postgres:localhost::evex'
[10/Mar/2017:21:56:46][22671.b517bb70][-conn:evex:1-] Notice: nsdbpg:
Opening evex on localhost
[10/Mar/2017:21:56:46][22671.b517bb70][-conn:evex:1-] Notice:
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:47][22671.b477bb70][-conn:evex:0-] Notice: thread
initialized (1.560357 secs)
[10/Mar/2017:21:56:47][22671.b517bb70][-conn:evex:1-] Notice: thread
initialized (1.575546 secs)
[10/Mar/2017:21:57:11][22671.b25ffb70][-sched:idle0-] Notice: starting
Gustaf Neumann
2017-03-11 06:28:12 UTC
Permalink
Dear Iuri,

Do you say, that the same config file works with NaviServer 4.99.14 but
not with 4.99.15?

In the provided log-file, i see no entry, where the nssock module is
loaded. The modload statement
for nssock should appear after the "ON DELETE done ..." statement in
OpenACS configurations.

[11/Mar/2017:07:00:27][86637.7ffff335c3c0][-main-] Notice: ON DELETE done (40ms)
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: modload: loading module nssock from file nssock.so
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: nssock:0: enable 0 spooler thread(s)
...
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: starting
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: deferaccept: socket option TCP_FASTOPEN activated
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: nssock:0: listening on [localhost]:8091
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: driver: accepting connections
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: nsmain: NaviServer/4.99.16d4 running


Note, that new releases of naviserver contain usually updated config
files using the new features of the server
(e.g. ipv6, multiple driver threads, ...).

The statement you pointed out just states, that in case, your
application uses more than 1024 funcurrently open file descriptors, you
should refrain from using the select() system call (which means for an
application programmer: abstain from Tcl I/O). For most applications,
this is no problem. The OS setting allows 4096 open FDs for the process,
therefore there is a warning.

-gn
Post by Iuri Sampaio
After upgrading NS to 4.99.15 Nginx is unable to access OACS rootdir
because NS doesn't stay listening on port 8080. After booting up NS, it
doens't keep listening on port 8080. For that reason NGINX unable to
complete requests, its attempt to conect gets refused.
/usr/local/ns/bin/nsd -u evex -g nsadmin -t /usr/local/ns/1c.tcl
The entire log is appended bellow.
Nginx logs
Connection refused) while connecting to upstream, client: 163.172.65.57,
server: evex.co, request: "GET
/calendar/cal-item-new?start_time=16&date=2017-02-16 HTTP/1.1",
"http://192.199.241.135:8080/calendar/cal-item-new?start_time=16&date=2017-02-16",
host: "evex.co"
Plus, "netstat -lna | grep tcp" confirms that ports has not been
listening by NS.
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 192.199.241.135:22 177.148.154.81:32835 ESTABLISHED
tcp 0 0 192.199.241.135:22 177.148.154.81:33620 ESTABLISHED
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:5432 :::* LISTEN
tcp6 0 0 :::25 :::* LISTEN
tcp6 0 0 :::993 :::* LISTEN
tcp6 0 0 :::143 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN
Error.log only shows one potential cause
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used
Would it be the motive?
NaviServer/4.99.15 starting
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: Tcl
version: 8.5.19
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: max
files: soft limit 4096, hard limit 4096
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used
queueLength 90 low water 9 high water 90
nsd/init.tcl[evex]: booting virtual server: tcl system encoding: "utf-8"
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nslog from file /usr/local/ns/bin/nslog.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nslog: opened
'/var/www/evex/log/access.log'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsdb from file /usr/local/ns/bin/nsdb.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module ns/db/driver/postgres from file /usr/local/ns/bin/nsdbpg.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: version
2.1 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool1 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool2 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsproxy from file /usr/local/ns/bin/nsproxy.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module libthread from file /usr/local/ns/lib/thread2.7.3/libthread2.7.3.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: XOTcl 2.0.0 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Using ns_cache
based on NX 2.0.0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: adp[evex]: mapped
{GET HEAD POST} /*.adp
[ns/server/evex] enabletclpages = 0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading OpenACS,
rooted at /var/www/evex
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Sourcing
/var/www/evex/packages/acs-bootstrap-installer/bootstrap.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: bootstrap begin
encoding utf-8
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
Default database (dbn) is: 'default'
Using ALL database pools for OpenACS.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Database API: The
following pools are available for OpenACS: pool1 pool2 pool3
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
Loading acs-tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs-postgresql.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/10-charset-compat-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/30-xml-utils-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-kernel-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-permissions-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-private-data-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ad-functional-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/adp-parser-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/aolserver-3-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-file-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-install-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-xml-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-data-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/callback-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-2-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/defs-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/deprecated-utilities-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ds-stub-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/exception-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/form-processing-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-email-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-auth-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-client-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/image-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/install-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/json-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/membership-rel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/memoize-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-callback-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-type-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/openacs-kernel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/parameter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pdf-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/proxy-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/server-cluster-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/set-operation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-apm-integration-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-object-map-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: use XOTcl Site Nodes
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: creating
xo_site_nodes cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/sql-statement-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/stack-trace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/table-display-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcl-documentation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tdom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/text-html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/user-extensions-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/util-diff-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/widgets-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-0-sgml-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-1-dom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-2-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/20-memoize-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/database-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pools-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-init.tcl
ns_unregister_proc GET /*.tcl is deprecated. Use 'ns_unregister_op' instead!
ns_unregister_proc HEAD /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
ns_unregister_proc POST /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-init.tcl
security-init.tcl: Creating secret_tokens ns_cache...
security-init.tcl: Populating secret_tokens ns_cache...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: site_node::init_cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing specially so other packages can define tests...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/aa-test-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/example-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/filter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/selenium-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/tclwebtest-procs.tcl
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/0-acs-templating-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/0-acs-templating-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/currency-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/currency-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/data-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/data-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/debug-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/debug-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/dimensional-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/dimensional-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-tcl-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-tcl-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/element-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/element-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/form-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/form-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/head-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/head-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/list-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/list-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/mime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/mime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/paginator-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/paginator-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/parse-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/parse-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/query-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/query-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/request-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/request-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-or-file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-or-file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tab-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tab-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/table-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/table-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/wizard-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/wizard-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/implementation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/implementation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/msg-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/msg-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/bounce-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/bounce-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/utils-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/utils-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/acs-admin-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/acs-admin-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/merge-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/merge-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authentication-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authentication-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authority-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authority-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/driver-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/driver-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/local-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/local-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/password-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/password-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/extra-args-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/extra-args-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-convert-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-convert-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/syndicate-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-permission-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-permission-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-template-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-template-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/publish-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/publish-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-reference/tcl/acs-reference-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-reference/tcl/acs-reference-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-timezones/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-timezones/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/ref-language-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/ref-language-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/ref-countries-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/ref-countries-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-audit-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-audit-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-catalog-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-catalog-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-install-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-install-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-message-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-message-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/locale-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/locale-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/application-group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/application-group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/attribute-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/attribute-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/email-image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/email-image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/package-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/package-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/party-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/party-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-segments-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-segments-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-types-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-types-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-navigation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-navigation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-support-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-support-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/tDAV-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Registered
filters on /dav*
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Filesystem
access by WebDAV disabled
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/tDAV-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/delivery-method-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/delivery-method-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/interval-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/interval-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-display-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-display-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-reply-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-reply-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-request-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-request-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-type-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-type-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notifications-security-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notifications-security-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-form-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-form-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-links-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-links-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-list-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-list-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-synonyms-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-synonyms-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-trees-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-trees-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-xml-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-xml-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/tagcloud-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/tagcloud-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-search-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-search-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-torrent-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-torrent-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/attachments/tcl/attachments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/attachments/tcl/attachments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/cal-item-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/cal-item-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-compatibility-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-compatibility-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-outlook-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-outlook-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-audit-trail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-audit-trail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-product-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-product-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-batch-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-batch-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-ex-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-ex-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-credit-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-credit-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/froogle-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/froogle-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/paypal-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/paypal-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/qmail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/qmail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/resource-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/resource-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/social-networking-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/social-networking-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/evex-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/evex-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/xml-rpc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/xml-rpc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/trackback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/trackback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogroll-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogroll-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/category-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/category-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/entry-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/entry-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/weblogs-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/weblogs-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/theme-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/theme-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tags/tcl/tags-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tags/tcl/tags-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/00-serializer-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/00-serializer-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/01-debug-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Defining minimal
XOTcl 1 compatibility
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: 'ns_ictl ondelete
' is deprecated. Use 'ns_ictl trace delete ...' instead.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/01-debug-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/03-doc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/03-doc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/04-library-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/04-library-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/05-db-procs.tcl...
creating xotcl-object caches
update_object_doc ::xo::db::Class ...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: loaded 504
definitions from function args
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NAME from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__DELETE from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NEW from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NAME from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
CONTENT_TEMPLATE__GET_ROOT_FOLDER from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__TITLE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__UPDATE from PostgreSQL via parsing function definition
update_object_doc ::xo::db::Attribute ...
update_object_doc ::xo::db::CrAttribute ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/05-db-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-package-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-package-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-param-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-param-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/10-recreation-procs.tcl...
update_object_doc ::xotcl::RecreationClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: -- softrecreate
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/10-recreation-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/30-widget-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/30-widget-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/40-thread-mod-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/40-thread-mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/bgdelivery-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid0 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/bgdelivery-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/context-procs.tcl...
update_object_doc ::xo::Context ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/context-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cr-procs.tcl...
update_object_doc ::xo::db::CrClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --Postgres
Version 9.1
update_object_doc ::xo::db::CrFolder ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cr-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/generic-procs.tcl...
update_object_doc ::Generic::Form ...
update_object_doc ::Generic::List ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/generic-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/html-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/html-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/http-client-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/http-client-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/ical-procs.tcl...
update_object_doc ::xo::ical ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/ical-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/install-check-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/install-check-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/policy-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/policy-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl...
update_object_doc ::throttle ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid1 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/adp-generator-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/adp-generator-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/bootstrap-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/menu-procs.tcl, ::xo::library
->require (0ms, 1ms)
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/bootstrap-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/category-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/category-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/xowiki-procs.tcl, ::xo::library
->require (0ms, 28ms)
creating xowiki cache
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/includelet-procs.tcl, ::xo::library
->require (0ms, 451ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/form-field-procs.tcl, ::xo::library
->require (0ms, 48ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/import-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/import-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/lcs-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/lcs-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/link-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/link-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/package-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/package-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/repeat-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/repeat-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/syndicate-procs.tcl...
update_object_doc ::xowiki::RSS ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/template-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/template-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/tree-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/tree-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/weblog-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/weblog-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-callback-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-callback-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-form-procs.tcl...
update_object_doc ::xowiki::WikiForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-form-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-mode-procs.tcl...
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-mode-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-sc-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-sc-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-uploader-procs.tcl...
update_object_doc ::xowiki::Upload ...
update_object_doc ::xowiki::UploadFile ...
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-uploader-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-utility-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-utility-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-www-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-www-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/yui-procs.tcl...
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/yui-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/atjob-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/atjob-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/test-item-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms, 360ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
update_object_doc ::xowiki::RSS ...
update_object_doc ::xowiki::WikiForm ...
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
update_object_doc ::xowiki::Upload ...
update_object_doc ::xowiki::UploadFile ...
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/test-item-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-calllback-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-calllback-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-form-field-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-form-field-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-includelet-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-includelet-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/test/acs-admin-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/test/acs-admin-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/sync-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/sync-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/selenium-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/selenium-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-search-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-search-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/application-data-link-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/application-data-link-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/community-core-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/community-core-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/doc-check-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/doc-check-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/file-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/file-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-conversion-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-conversion-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-email-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-email-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/log-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/log-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/memoizing-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/memoizing-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/navigation-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/navigation-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/object-test-case-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/object-test-case-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-permissions-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-permissions-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/whos-online-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/whos-online-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/date-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/date-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/multirow-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/multirow-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/parse-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/parse-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/spell-checker-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/spell-checker-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/cal-item-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/cal-item-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/calendar-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/calendar-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/test/categories-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/test/categories-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/file-storage-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/file-storage-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/tclwebtest-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/tclwebtest-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/blogger-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/blogger-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/entry-test-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/entry-test-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/test/trackback-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/test/trackback-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl.
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl.
[10/Mar/2017:21:56:38][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/acs-lang-init.tcl...
lang::message::cache - Initialized message cache with 6160 rows from
database
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/acs-lang-init.tcl.
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-data-init.tcl...
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-data-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-templating-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-templating-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-init.tcl...
[10/Mar/2017:21:56:40][22681.b71a7ad0][-main-] Notice: OpenSSL 1.0.1t 3
May 2016 initialized
[10/Mar/2017:21:56:40][22671.b61fcb70][-nsproxy:reap-] Notice: starting
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/aa-test-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/aa-test-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Developer-support
user-switching disabled
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/acs-subsite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/acs-subsite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: OACS-DAV preauth
filters loaded on /dav/*
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Warning: nsf: value
'-default' of parameter 'package_key' could be a non-positional argument
nsf::proc ad_parameter PaymentGateway -default {}
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/object-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/object-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-init.tcl.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: bootstrap
finished encoding utf-8
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Bootstrap: Done
loading OpenACS.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Sourcing files
for postload...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Done.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code blocks...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block filters_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
ns_register_filter postauth GET * rp_invoke_filter 0 0 1 throttle {}
ns_register_filter postauth POST * rp_invoke_filter 1 0 1 throttle {}
ns_register_filter trace GET /* rp_invoke_filter 2 0 3 ds_trace_filter {}
ns_register_filter trace POST /* rp_invoke_filter 3 0 3 ds_trace_filter {}
ns_register_filter trace HEAD /* rp_invoke_filter 4 0 3 ds_trace_filter {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block procs_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE
thottle-DESTROY-shutdownpending->0
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::throttle ::xotcl::THREAD->destroy (0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::bgdelivery ::xotcl::THREAD->destroy (0ms, 0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE done (95ms)
NaviServer/4.99.15 running
[10/Mar/2017:21:56:45][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:45][22671.b7085b70][-sched-] Notice: sched: starting
opening database 'postgres:localhost::evex'
Opening evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:47][22671.b477bb70][-conn:evex:0-] Notice: thread
initialized (1.560357 secs)
[10/Mar/2017:21:56:47][22671.b517bb70][-conn:evex:1-] Notice: thread
initialized (1.575546 secs)
[10/Mar/2017:21:57:11][22671.b25ffb70][-sched:idle0-] Notice: starting
------------------------------------------------------------------------------
Announcing the Oxford Dictionaries API! The API offers world-renowned
dictionary content that is easy and intuitive to access. Sign up for an
account today to start using our lexical data to power your apps and
projects. Get started today and enter our developer competition.
http://sdm.link/oxford
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
--
Univ.Prof. Dr. Gustaf Neumann
WU Vienna
Institute of Information Systems and New Media
Welthandelsplatz 1, A-1020 Vienna, Austria
Iuri Sampaio
2017-03-11 14:59:41 UTC
Permalink
Thanks Gustaf,

It's a practice to use another config file, instead of nsadmin defaults.
Usually I copy config-5.9.tcl to a new config file called
<servername>.tcl. That file was from a previous release.

Best wishes,
Iuri
Post by Gustaf Neumann
Dear Iuri,
Do you say, that the same config file works with NaviServer 4.99.14 but
not with 4.99.15?
In the provided log-file, i see no entry, where the nssock module is
loaded. The modload statement
for nssock should appear after the "ON DELETE done ..." statement in
OpenACS configurations.
[11/Mar/2017:07:00:27][86637.7ffff335c3c0][-main-] Notice: ON DELETE done (40ms)
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: modload: loading module nssock from file nssock.so
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: nssock:0: enable 0 spooler thread(s)
...
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: starting
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: deferaccept: socket option TCP_FASTOPEN activated
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: nssock:0: listening on [localhost]:8091
[11/Mar/2017:07:00:28][86637.70000ef59000][-driver:nssock:0-] Notice: driver: accepting connections
[11/Mar/2017:07:00:28][86637.7ffff335c3c0][-main-] Notice: nsmain: NaviServer/4.99.16d4 running
Note, that new releases of naviserver contain usually updated config
files using the new features of the server
(e.g. ipv6, multiple driver threads, ...).
The statement you pointed out just states, that in case, your
application uses more than 1024 funcurrently open file descriptors, you
should refrain from using the select() system call (which means for an
application programmer: abstain from Tcl I/O). For most applications,
this is no problem. The OS setting allows 4096 open FDs for the process,
therefore there is a warning.
-gn
Post by Iuri Sampaio
After upgrading NS to 4.99.15 Nginx is unable to access OACS rootdir
because NS doesn't stay listening on port 8080. After booting up NS, it
doens't keep listening on port 8080. For that reason NGINX unable to
complete requests, its attempt to conect gets refused.
/usr/local/ns/bin/nsd -u evex -g nsadmin -t /usr/local/ns/1c.tcl
The entire log is appended bellow.
Nginx logs
Connection refused) while connecting to upstream, client: 163.172.65.57,
server: evex.co, request: "GET
/calendar/cal-item-new?start_time=16&date=2017-02-16 HTTP/1.1",
"http://192.199.241.135:8080/calendar/cal-item-new?start_time=16&date=2017-02-16",
host: "evex.co"
Plus, "netstat -lna | grep tcp" confirms that ports has not been
listening by NS.
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 192.199.241.135:22 177.148.154.81:32835 ESTABLISHED
tcp 0 0 192.199.241.135:22 177.148.154.81:33620 ESTABLISHED
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:5432 :::* LISTEN
tcp6 0 0 :::25 :::* LISTEN
tcp6 0 0 :::993 :::* LISTEN
tcp6 0 0 :::143 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN
Error.log only shows one potential cause
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used
Would it be the motive?
NaviServer/4.99.15 starting
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: Tcl
version: 8.5.19
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsmain: max
files: soft limit 4096, hard limit 4096
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Warning: nsmain: rl_cur
(4096) > FD_SETSIZE (1024), select() calls should not be used
queueLength 90 low water 9 high water 90
nsd/init.tcl[evex]: booting virtual server: tcl system encoding: "utf-8"
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nslog from file /usr/local/ns/bin/nslog.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nslog: opened
'/var/www/evex/log/access.log'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsdb from file /usr/local/ns/bin/nsdb.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module ns/db/driver/postgres from file /usr/local/ns/bin/nsdbpg.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: version
2.1 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool1 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbinit: set
LogMinDuration for pool pool2 over 0.01 to 0.010000
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module nsproxy from file /usr/local/ns/bin/nsproxy.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: modload: loading
module libthread from file /usr/local/ns/lib/thread2.7.3/libthread2.7.3.so
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: XOTcl 2.0.0 loaded
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Using ns_cache
based on NX 2.0.0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: adp[evex]: mapped
{GET HEAD POST} /*.adp
[ns/server/evex] enabletclpages = 0
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading OpenACS,
rooted at /var/www/evex
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Sourcing
/var/www/evex/packages/acs-bootstrap-installer/bootstrap.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: bootstrap begin
encoding utf-8
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
sourcing
/var/www/evex/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
Default database (dbn) is: 'default'
Using ALL database pools for OpenACS.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Database API: The
following pools are available for OpenACS: pool1 pool2 pool3
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: dbdrv: opening
database 'postgres:localhost::evex'
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: nsdbpg: Opening
evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
Loading acs-tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs-postgresql.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/00-database-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/10-charset-compat-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/30-xml-utils-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-kernel-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-permissions-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/acs-private-data-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ad-functional-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/adp-parser-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/aolserver-3-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-file-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-install-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-xml-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-data-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/application-link-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/callback-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-2-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/community-core-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/defs-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/deprecated-utilities-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/ds-stub-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/exception-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/form-processing-procs.tcl
[10/Mar/2017:21:56:19][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-email-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-auth-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/http-client-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/image-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/install-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/json-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/membership-rel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/memoize-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-callback-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/navigation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/object-type-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/openacs-kernel-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/parameter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pdf-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/proxy-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/server-cluster-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/set-operation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-apm-integration-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-node-object-map-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: use XOTcl Site Nodes
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: creating
xo_site_nodes cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/sql-statement-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/stack-trace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/table-display-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcl-documentation-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tdom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/text-html-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/user-extensions-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/util-diff-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/widgets-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-0-sgml-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-1-dom-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/xml-2-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/20-memoize-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/admin-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/apm-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/database-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/document-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/pools-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/request-processor-init.tcl
ns_unregister_proc GET /*.tcl is deprecated. Use 'ns_unregister_op' instead!
ns_unregister_proc HEAD /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
ns_unregister_proc POST /*.tcl is deprecated. Use 'ns_unregister_op'
instead!
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/security-init.tcl
security-init.tcl: Creating secret_tokens ns_cache...
security-init.tcl: Populating secret_tokens ns_cache...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/site-nodes-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: site_node::init_cache
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/tcltrace-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/utilities-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-tcl/tcl/whos-online-init.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing specially so other packages can define tests...
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/aa-test-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/example-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/filter-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/selenium-procs.tcl
[10/Mar/2017:21:56:20][22671.b70d86c0][-main-] Notice: Loading
acs-automated-testing/tcl/tclwebtest-procs.tcl
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/0-acs-templating-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/0-acs-templating-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/currency-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/currency-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/data-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/data-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/debug-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/debug-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/dimensional-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/dimensional-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/doc-tcl-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/doc-tcl-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/element-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/element-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/form-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/form-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/head-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/head-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/list-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/list-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/mime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/mime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/paginator-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/paginator-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/parse-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/parse-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/query-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/query-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/request-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/request-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-or-file-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-or-file-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tab-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tab-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/table-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/table-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/wizard-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/wizard-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/contract-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/contract-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/implementation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/implementation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/msg-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/msg-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/bounce-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/bounce-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/incoming-mail-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/utils-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/utils-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/acs-admin-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/acs-admin-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/merge-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/merge-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/acs-api-documentation-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authentication-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authentication-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/authority-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/authority-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/driver-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/driver-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/local-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/local-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/password-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/password-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/extra-args-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/extra-args-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-convert-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-convert-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/syndicate-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-permission-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-permission-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-template-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-template-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/extlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/extlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/filter-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/filter-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/item-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/item-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/keyword-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/keyword-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/publish-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/publish-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/revision-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/revision-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/search-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/search-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/symlink-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/symlink-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-core-docs/tcl/acs-core-docs-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-2-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-calendar-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-calendar-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-reference/tcl/acs-reference-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-reference/tcl/acs-reference-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-timezones/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-timezones/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-language/tcl/ref-language-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-language/tcl/ref-language-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/ref-countries/tcl/ref-countries-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/ref-countries/tcl/ref-countries-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-audit-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-audit-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-catalog-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-catalog-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-install-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-install-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-message-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-message-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-util-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-util-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/lang-widget-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/lang-widget-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/locale-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/locale-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/application-group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/application-group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/attribute-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/attribute-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/email-image-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/email-image-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/group-type-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/group-type-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/package-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/package-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/party-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/party-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plpgsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/plsql-utility-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/plsql-utility-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-segments-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-segments-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/rel-types-procs.tcl...
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/rel-types-procs.tcl.
[10/Mar/2017:21:56:22][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-navigation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-navigation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/subsite-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/subsite-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-support-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-support-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/tDAV-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Registered
filters on /dav*
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: tDAV: Filesystem
access by WebDAV disabled
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/tDAV-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/delivery-method-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/delivery-method-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/interval-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/interval-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-display-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-display-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-reply-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-reply-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-request-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-request-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notification-type-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notification-type-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/notifications-security-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/notifications-security-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-form-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-form-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-links-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-links-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-list-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-list-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-relation-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-relation-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-synonyms-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-synonyms-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-trees-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-trees-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/category-xml-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/category-xml-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/tagcloud-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/tagcloud-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/widget-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/widget-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-dav-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-dav-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-search-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-search-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-torrent-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-torrent-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/attachments/tcl/attachments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/attachments/tcl/attachments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/cal-item-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/cal-item-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-compatibility-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-compatibility-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-outlook-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-outlook-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/calendar-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/calendar-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-audit-trail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-audit-trail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ec-product-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ec-product-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-batch-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-batch-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-ex-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-ex-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecds-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecds-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-credit-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-credit-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-customer-service-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-email-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-email-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-money-computations-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-ssl-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-state-changes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-user-contributions-summary-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-utilities-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-widgets-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-zip-codes-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/froogle-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/froogle-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/paypal-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/paypal-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/qmail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/qmail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/resource-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/resource-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/social-networking-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/social-networking-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/evex-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/evex-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/general-comments/tcl/general-comments-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/general-comments/tcl/general-comments-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/xml-rpc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/xml-rpc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/trackback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/trackback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogroll-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogroll-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/category-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/category-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/entry-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/entry-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/pinds-blog-entry-sc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/rss-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/rss-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/weblogs-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/weblogs-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/apm-callback-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/apm-callback-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/openacs-default-theme/tcl/theme-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/openacs-default-theme/tcl/theme-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tags/tcl/tags-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tags/tcl/tags-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-install-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/00-serializer-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/00-serializer-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/01-debug-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Defining minimal
XOTcl 1 compatibility
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: 'ns_ictl ondelete
' is deprecated. Use 'ns_ictl trace delete ...' instead.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/01-debug-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/03-doc-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/03-doc-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/04-library-procs.tcl...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/04-library-procs.tcl.
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/05-db-procs.tcl...
creating xotcl-object caches
update_object_doc ::xo::db::Class ...
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: loaded 504
definitions from function args
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NAME from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__DELETE from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NEW from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_BLOGROLL_ENTRY__NAME from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_CATEGORY__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__DELETE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
WEBLOGGER_CHANNEL__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
EC_PRODUCT__NEW from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:23][22671.b70d86c0][-main-] Notice: obtain fnargs for
CONTENT_TEMPLATE__GET_ROOT_FOLDER from PostgreSQL via parsing function
definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
PINDS_BLOG_ENTRY__TITLE from PostgreSQL via parsing function definition
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: obtain fnargs for
IURIX_MAILS__UPDATE from PostgreSQL via parsing function definition
update_object_doc ::xo::db::Attribute ...
update_object_doc ::xo::db::CrAttribute ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/05-db-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-package-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-package-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/06-param-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/06-param-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/10-recreation-procs.tcl...
update_object_doc ::xotcl::RecreationClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: -- softrecreate
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/10-recreation-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/20-Ordered-Composite-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/30-widget-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/30-widget-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/40-thread-mod-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/40-thread-mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/50-protocol-handler-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/bgdelivery-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid0 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/bgdelivery-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/context-procs.tcl...
update_object_doc ::xo::Context ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/context-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cr-procs.tcl...
update_object_doc ::xo::db::CrClass ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --Postgres
Version 9.1
update_object_doc ::xo::db::CrFolder ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cr-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/doc-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/doc-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/generic-procs.tcl...
update_object_doc ::Generic::Form ...
update_object_doc ::Generic::List ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/generic-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/html-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/html-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/http-client-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/http-client-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/ical-procs.tcl...
update_object_doc ::xo::ical ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/ical-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/install-check-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/install-check-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/policy-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/policy-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/callback-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/callback-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl...
update_object_doc ::throttle ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: mutex mid1 created
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/adp-generator-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/adp-generator-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/bootstrap-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/menu-procs.tcl, ::xo::library
->require (0ms, 1ms)
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/bootstrap-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/category-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/category-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/chat-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/chat-procs.tcl.
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/folder-procs.tcl...
[10/Mar/2017:21:56:24][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/xowiki-procs.tcl, ::xo::library
->require (0ms, 28ms)
creating xowiki cache
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/includelet-procs.tcl, ::xo::library
->require (0ms, 451ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: --sourcing
/var/www/evex/packages/xowiki/tcl/form-field-procs.tcl, ::xo::library
->require (0ms, 48ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/folder-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/import-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/import-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/lcs-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/lcs-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/link-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/link-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/notification-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/notification-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/package-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/package-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/repeat-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/repeat-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/syndicate-procs.tcl...
update_object_doc ::xowiki::RSS ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/syndicate-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/template-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/template-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/tree-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/tree-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/weblog-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/weblog-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-callback-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-callback-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-form-procs.tcl...
update_object_doc ::xowiki::WikiForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-form-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-mode-procs.tcl...
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-mode-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-sc-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-sc-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-uploader-procs.tcl...
update_object_doc ::xowiki::Upload ...
update_object_doc ::xowiki::UploadFile ...
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-uploader-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-utility-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-utility-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-www-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-www-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/yui-procs.tcl...
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/yui-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/atjob-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/atjob-procs.tcl.
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/test-item-procs.tcl...
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-plain.adp,
::xowiki::view-plain ::xowiki::ADP_Generator->init (0ms, 360ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-links.adp,
::xowiki::view-links ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-default.adp,
::xowiki::view-default ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view.adp,
::xowiki::oacs-view ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view2.adp,
::xowiki::oacs-view2 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/oacs-view3.adp,
::xowiki::oacs-view3 ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book.adp,
::xowiki::view-book ::xowiki::ADP_Generator->init (0ms, 0ms)
[10/Mar/2017:21:56:25][22671.b70d86c0][-main-] Notice: Notice: create
ADP
/var/www/evex/packages/xowiki/tcl/../resources/templates/view-book-no-ajax.adp,
::xowiki::view-book-no-ajax ::xowiki::ADP_Generator->init (0ms, 0ms)
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::xo::Table::BootstrapTableRenderer::AnchorField ...
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
update_object_doc ::xowiki::RSS ...
update_object_doc ::xowiki::WikiForm ...
update_object_doc ::xowiki::Mode ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
update_object_doc ::xowiki::Upload ...
update_object_doc ::xowiki::UploadFile ...
update_object_doc ::xowiki::UploadPhotoForm ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: create/recreate
::xowiki::utility without cleanup
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Zen-state: 5.3.2
or newer
update_object_doc ::YUI::loader ...
update_object_doc ::YUI::AnchorField ...
update_object_doc ::xo::Table::YUIDataTableRenderer::AnchorField ...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/test-item-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-calllback-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-calllback-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-form-field-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-form-field-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-includelet-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-includelet-procs.tcl.
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-procs.tcl...
[10/Mar/2017:21:56:26][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/test/acs-admin-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/test/acs-admin-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-api-browser/tcl/test/acs-api-browser-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/acs-authentication-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/test/sync-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/test/sync-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/acs-automated-testing-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/test/selenium-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/test/selenium-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/acs-content-repository-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-folder-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-image-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-item-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-keyword-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-revision-test-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/test/content-search-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/test/content-search-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-datetime/tcl/test/acs-datetime-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-localization-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl...
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-message-procs.tcl.
[10/Mar/2017:21:56:31][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/test/acs-lang-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/test/acs-messaging-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/test/acs-service-contract-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/test/acs-subsite-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-apm-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/acs-tcl-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/apm-parameter-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/application-data-link-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/application-data-link-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/community-core-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/community-core-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/datamodel-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/doc-check-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/doc-check-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/file-test-procs.tcl...
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/file-test-procs.tcl.
[10/Mar/2017:21:56:32][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-conversion-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-conversion-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/html-email-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/html-email-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/log-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/log-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/memoizing-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/memoizing-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/navigation-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/navigation-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/object-test-case-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/object-test-case-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/openacs-kernel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/site-nodes-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-membership-rel-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-permissions-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-permissions-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/test-set-cookie-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-tcl/tcl/test/whos-online-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-tcl/tcl/test/whos-online-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/date-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/date-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/multirow-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/multirow-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/parse-test-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/parse-test-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/test/spell-checker-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/test/spell-checker-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/cal-item-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/cal-item-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/calendar/tcl/test/calendar-procs.tcl...
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loaded
packages/calendar/tcl/test/calendar-procs.tcl.
[10/Mar/2017:21:56:33][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/test/categories-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/test/categories-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/file-storage-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/file-storage-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/test/tclwebtest-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/test/tclwebtest-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/blogger-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/blogger-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/entry-test-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/entry-test-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/lars-blogger-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/test/metaweblog-api-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/test/oacs-dav-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/trackback/tcl/test/trackback-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/trackback/tcl/test/trackback-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl...
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loaded
packages/tsearch2-driver/tcl/test/tsearch2-driver-procs.tcl.
[10/Mar/2017:21:56:34][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/test/xml-rpc-test-procs.tcl.
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl...
[10/Mar/2017:21:56:35][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/test/xotcl-avail-procs.tcl.
[10/Mar/2017:21:56:38][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/acs-lang-init.tcl...
lang::message::cache - Initialized message cache with 6160 rows from
database
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/acs-lang-init.tcl.
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loading
packages/acs-lang/tcl/localization-data-init.tcl...
[10/Mar/2017:21:56:39][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-lang/tcl/localization-data-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-integration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-integration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/acs-templating-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/acs-templating-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/date-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/date-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/spellcheck-init.tcl...
[10/Mar/2017:21:56:40][22681.b71a7ad0][-main-] Notice: OpenSSL 1.0.1t 3
May 2016 initialized
[10/Mar/2017:21:56:40][22671.b61fcb70][-nsproxy:reap-] Notice: starting
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/spellcheck-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/tag-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/tag-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-templating/tcl/template-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-templating/tcl/template-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-service-contract/tcl/acs-service-contract-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-service-contract/tcl/acs-service-contract-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-mail-lite/tcl/acs-mail-lite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-admin/tcl/apm-admin-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-admin/tcl/apm-admin-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-authentication/tcl/sync-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-authentication/tcl/sync-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-automated-testing/tcl/aa-test-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-automated-testing/tcl/aa-test-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/search/tcl/search-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/search/tcl/search-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/acs-content-repository-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/acs-content-repository-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-content-repository/tcl/content-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-content-repository/tcl/content-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-developer-support/tcl/acs-developer-support-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Developer-support
user-switching disabled
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-developer-support/tcl/acs-developer-support-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-messaging/tcl/acs-messaging-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-messaging/tcl/acs-messaging-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/acs-subsite-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/acs-subsite-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/acs-subsite/tcl/approval-expiration-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/acs-subsite/tcl/approval-expiration-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/rss-support/tcl/rss-generation-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/rss-support/tcl/rss-generation-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/oacs-dav/tcl/oacs-dav-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: OACS-DAV preauth
filters loaded on /dav/*
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/oacs-dav/tcl/oacs-dav-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/reply-sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/reply-sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/notifications/tcl/sweep-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/notifications/tcl/sweep-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/categories/tcl/categories-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/categories/tcl/categories-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/file-storage/tcl/file-storage-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/file-storage/tcl/file-storage-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Warning: nsf: value
'-default' of parameter 'package_key' could be a non-positional argument
nsf::proc ad_parameter PaymentGateway -default {}
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Deprecated proc
called from apm_source
/var/www/evex/packages/ecommerce/tcl/ecommerce-scheduled-init.tcl
called from apm_files_load 0 apm_dummy_callback \{acs-templating\
tcl/acs-integration-init....
called from apm_load_libraries 0 {acs-kernel acs-templating
acs-bootstrap-i...} apm_dummy_callback 0 1 0 0
called from apm_load_packages 0 1 1 {}
called from __ns_sourcefile /var/www/evex/tcl/0-acs-init.tcl
called from __ns_sourcelibs
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/ecommerce/tcl/ecommerce-scheduled-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/iurix-mail/tcl/iurix-mail-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/iurix-mail/tcl/iurix-mail-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/system-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/system-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xml-rpc/tcl/validator-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xml-rpc/tcl/validator-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/blogger-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/blogger-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/metaweblog-api-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/metaweblog-api-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/lars-blogger/tcl/technorati-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/lars-blogger/tcl/technorati-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/richtext-xinha/tcl/richtext-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/richtext-xinha/tcl/richtext-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/cluster-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/cluster-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-core/tcl/object-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-core/tcl/object-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xotcl-request-monitor/tcl/throttle_mod-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-cache-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-cache-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowiki/tcl/xowiki-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowiki/tcl/xowiki-init.tcl.
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loading
packages/xowf/tcl/xowf-init.tcl...
[10/Mar/2017:21:56:40][22671.b70d86c0][-main-] Notice: Loaded
packages/xowf/tcl/xowf-init.tcl.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: bootstrap
finished encoding utf-8
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Bootstrap: Done
loading OpenACS.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Sourcing files
for postload...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Done.
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code blocks...
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block filters_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
ns_register_filter postauth GET * rp_invoke_filter 0 0 1 throttle {}
ns_register_filter postauth POST * rp_invoke_filter 1 0 1 throttle {}
ns_register_filter trace GET /* rp_invoke_filter 2 0 3 ds_trace_filter {}
ns_register_filter trace POST /* rp_invoke_filter 3 0 3 ds_trace_filter {}
ns_register_filter trace HEAD /* rp_invoke_filter 4 0 3 ds_trace_filter {}
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: Executing
initialization code block procs_register in
/var/www/evex/packages/acs-tcl/tcl/request-processor-init.tcl
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
[10/Mar/2017:21:56:42][22671.b70d86c0][-main-] Notice: QD=Postload files
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE
thottle-DESTROY-shutdownpending->0
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::throttle ::xotcl::THREAD->destroy (0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: destroy called,
::bgdelivery ::xotcl::THREAD->destroy (0ms, 0ms)
[10/Mar/2017:21:56:44][22671.b70d86c0][-main-] Notice: ON DELETE done (95ms)
NaviServer/4.99.15 running
[10/Mar/2017:21:56:45][22671.b70d86c0][-main-] Notice: nsmain: security
info: uid=1011, euid=1011, gid=1016, egid=1016
[10/Mar/2017:21:56:45][22671.b7085b70][-sched-] Notice: sched: starting
opening database 'postgres:localhost::evex'
Opening evex on localhost
nsdbpg(postgres): Opened connection to localhost::evex.
[10/Mar/2017:21:56:47][22671.b477bb70][-conn:evex:0-] Notice: thread
initialized (1.560357 secs)
[10/Mar/2017:21:56:47][22671.b517bb70][-conn:evex:1-] Notice: thread
initialized (1.575546 secs)
[10/Mar/2017:21:57:11][22671.b25ffb70][-sched:idle0-] Notice: starting
------------------------------------------------------------------------------
Announcing the Oxford Dictionaries API! The API offers world-renowned
dictionary content that is easy and intuitive to access. Sign up for an
account today to start using our lexical data to power your apps and
projects. Get started today and enter our developer competition.
http://sdm.link/oxford
_______________________________________________
naviserver-devel mailing list
https://lists.sourceforge.net/lists/listinfo/naviserver-devel
Loading...