# HG changeset patch # User Olaf Wintermann # Date 1315325427 -7200 # Node ID 4c89c7683fb6c06c2bd87895f2447360a89b92ef initialize repository diff -r 000000000000 -r 4c89c7683fb6 LICENSE --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LICENSE Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,23 @@ +Copyright 2011 Olaf Wintermann. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff -r 000000000000 -r 4c89c7683fb6 README diff -r 000000000000 -r 4c89c7683fb6 conf.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/conf.mk Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,32 @@ +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. +# +# Copyright 2011 Olaf Wintermann. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +WS_INSTALL_DIR = work/ + + + diff -r 000000000000 -r 4c89c7683fb6 doc/development/NSPR Dependencies.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/development/NSPR Dependencies.txt Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,18 @@ +PR_Unlock +PR_NewLock +PR_SetFDCacheSize +PR_Init +PR_Lock +PR_GetCurrentThread +PR_Initialized +PR_Sleep +PR_CreateThread +PR_GetThreadPrivate +PR_SetThreadPrivate +PR_NewThreadPrivateIndex +PR_AtomicIncrement +PR_SetError +PR_DetachThread +PR_AttachThread +PR_Interrupt + diff -r 000000000000 -r 4c89c7683fb6 doc/development/mod_jk nsapi.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/development/mod_jk nsapi.txt Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,27 @@ +mod_jk uses the following nsapi functions: + +param_free line 143 +pblock_fr line 143: pblock_remove +pblock_nvinsert line 147 +http_status line 155: protocol_status +http_start_response line 157: protocol_start_response +netbuf_next line 188: netbuf_getc +net_write line 226 +pblock_findval line 439 +systhread_start line 303 +systhread_sleep line 306 +magnus_atrestart line 314 +shexp_match line 367 +request_header line 443 +session_dns_lookup line 453: session_dns +conf_getglobals() line 464: server_name + server_portnum + security_active + + +data structures: + +Session: + csd net_write + inbuf netbuf_getc + diff -r 000000000000 -r 4c89c7683fb6 templates/bin/startserv.template --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/bin/startserv.template Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,35 @@ +#!/bin/sh + +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. +# +# Copyright 2011 Olaf Wintermann. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# + +WS_INSTALL_DIR=%%WS_INSTALL_DIR%% + +cd $WS_INSTALL_DIR +bin/webservd + diff -r 000000000000 -r 4c89c7683fb6 templates/conf/init.conf diff -r 000000000000 -r 4c89c7683fb6 templates/conf/obj.conf diff -r 000000000000 -r 4c89c7683fb6 templates/conf/server.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/conf/server.conf Tue Sep 06 18:10:27 2011 +0200 @@ -0,0 +1,18 @@ +Listener { + name = default + ip = x4 + port = 80 + ssl = false +} + +VirtualServer { + name = x4 +} + +name1 = value1 +name2 = value2 + +AuthDB { + name = ldap +} +