summaryrefslogtreecommitdiffstats
path: root/source4/web_server
Commit message (Collapse)AuthorAgeFilesLines
* cldap: Build as shared module.Jelmer Vernooij2010-11-151-1/+1
|
* s4-server: make server sockets a child of the task contextAndrew Tridgell2010-11-151-2/+3
| | | | | | | | | | | | We previously allocated sockets as direct children of the event context. That led to crashes if a service called task_server_terminate(), as it left the socket open and handling events for a dead protocol. Making them a child of the task allows the task to terminate and take all its sockets with it. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* web_server: Build as module.Jelmer Vernooij2010-11-143-8/+14
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Nov 14 17:58:05 UTC 2010 on sn-devel-104
* s4: Remove the old perl/m4/make/mk-based build system.Jelmer Vernooij2010-10-311-14/+0
| | | | | | | | The new waf-based build system now has all the same functionality, and the old build system has been broken for quite some time. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 31 02:01:44 UTC 2010 on sn-devel-104
* s4-smbd: don't initialise process models more than onceAndrew Tridgell2010-10-301-1/+1
| | | | | | | | | this also removes the event_context parameter from process model initialisation. It isn't needed, and is confusing when a process model init can be called from more than one place, possibly with different event contexts. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-waf: removed dependencies on missing subsystemsAndrew Tridgell2010-10-211-1/+1
| | | | these were left over from the old config.mk system
* wafsamba: Fix handling of pyembed/pyext.Jelmer Vernooij2010-10-101-11/+12
|
* wafsamba: Clarify needs_python argument name, use pyembed/pyext whereJelmer Vernooij2010-10-101-3/+3
| | | | | | | | | applicable. Allow using both pyembed and pyext, to prevent unresolved symbols. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 10 03:54:01 UTC 2010 on sn-devel-104
* s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell2010-07-161-7/+7
| | | | | | | this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s4-python: python is not always in /usr/binAndrew Tridgell2010-06-241-1/+1
| | | | | | | | Using "#!/usr/bin/env python" is more portable. It still isn't ideal though, as we should really use the python path found at configure time. We do that in many places already, but some don't. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* web_server: Don't build wsgi support as python module but rather asJelmer Vernooij2010-06-181-2/+3
| | | | subsystem so we don't install it into /usr/lib.
* s4:web_server/wsgi.c - free the "env" and "inputstream" objects on an ↵Matthias Dieter Wallnöfer2010-05-301-0/+2
| | | | "asprintf" failure
* s4:web_server/wsgi.c - provide a better out-of-memory handling for an ↵Matthias Dieter Wallnöfer2010-05-281-1/+2
| | | | "asprintf" call
* s4:web_server/wsgi.c - fix "asprintf" callMatthias Dieter Wallnöfer2010-05-281-1/+3
|
* s4:web_server: use tsocket_address functions to get the local ip and portStefan Metzmacher2010-04-283-7/+13
| | | | | metze (cherry picked from commit 9a1a00199c2603376eacfdba7e7d0d55bc64f405)
* Revert "s4:web_server: use tsocket_address functions to get the local ip and ↵Matthias Dieter Wallnöfer2010-04-271-11/+5
| | | | | | | | port" This reverts commit 9a1a00199c2603376eacfdba7e7d0d55bc64f405. This broke the build.
* s4:web_server: use tsocket_address functions to get the local ip and portStefan Metzmacher2010-04-271-5/+11
| | | | metze
* s4-waf: more dependencies on tallocAndrew Tridgell2010-04-061-2/+3
| | | | | these are needed so we can support a system talloc without using the bundled talloc.h
* s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell2010-04-061-0/+2
| | | | them
* build: commit all the waf build files in the treeAndrew Tridgell2010-04-061-0/+14
|
* s4:Remove "Py_RETURN_NONE" compatibility codeMatthias Dieter Wallnöfer2010-02-091-4/+0
| | | | This was needed only by Python 2.3 which we no longer support.
* s4-python: we need to include Python.h firstAndrew Tridgell2009-10-231-1/+1
| | | | | If we don't include Python.h first then we get a pile of warnings due to broken redefines of XOPEN_SOURCE in the Python includes.
* s4-server: kill main daemon if a task fails to initialiseAndrew Tridgell2009-09-181-1/+1
| | | | | | When one of our core tasks fails to initialise it can now ask for the server as a whole to die, rather than limping along in a degraded state.
* s4:service_stream: s/private/private_dataStefan Metzmacher2009-02-021-4/+4
| | | | metze
* s4:service_task: s/private/private_dataStefan Metzmacher2009-02-021-3/+3
| | | | metze
* s4:web_server: s/private/private_dataStefan Metzmacher2009-02-022-3/+3
| | | | metze
* s4:web_server: s/private/private_dataStefan Metzmacher2009-02-021-2/+2
| | | | metze
* Avoid using a utility header for Python replacements included in Samba,Jelmer Vernooij2009-01-081-1/+5
| | | | since this will not be shipped with talloc/tdb/tevent/etc.
* s3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4Tim Prouty2009-01-071-1/+1
|
* py: Properly increase the reference counter of Py_None.Jelmer Vernooij2009-01-061-4/+4
|
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-291-2/+2
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* Fix more compiler warnings in various places.Jelmer Vernooij2008-12-231-4/+0
|
* Fix missing symbols issues when building with shared libraries.Jelmer Vernooij2008-12-221-1/+1
|
* Fix include paths to new location of libutil.Jelmer Vernooij2008-10-112-3/+3
|
* Rename smbd -> samba.Jelmer Vernooij2008-09-241-1/+1
| | | | | | | | This reverts commit 05ea5e23cf4e70de0bd658b1c5c0ead133967091. Conflicts: source4/smbd/server.c
* s4: allways initialize the process model before it's usedStefan Metzmacher2008-09-221-1/+1
| | | | metze
* Revert "Rename smbd -> samba."Jelmer Vernooij2008-09-211-1/+1
| | | | This reverts commit 0e9008be35a5b334bd65e6417193d4b8f27bdc36.
* Rename smbd -> samba.Jelmer Vernooij2008-09-211-1/+1
|
* Allow SWAT to be run outside of smbd.Jelmer Vernooij2008-09-211-0/+5
|
* Support POST requests again, provide more variables in environment.Jelmer Vernooij2008-09-212-32/+75
|
* Make standard SWAT script print received headers.Jelmer Vernooij2008-09-211-2/+8
|
* First GET request works. SWAT now displays a Hello world message.Jelmer Vernooij2008-09-212-15/+32
|
* Properly call WSGI request handler when requests come in.Jelmer Vernooij2008-09-214-64/+198
|
* Remove support for ESP in the web server.Jelmer Vernooij2008-09-215-1066/+76
|
* Remove some dependencies of the web server on esp.Jelmer Vernooij2008-09-214-44/+61
|
* Add input / error stream objects in WSGI implementation.Jelmer Vernooij2008-09-211-13/+100
|
* Add more parts of the WSGI implementation.Jelmer Vernooij2008-09-211-2/+40
|
* Add initial work on WSGI support in the web server.Jelmer Vernooij2008-09-212-1/+70
|
* Rename http to esp, in preparation of adding a python backend.Jelmer Vernooij2008-09-213-11/+11
|
* Remove remaining embedded JavaScript support.Jelmer Vernooij2008-09-161-0/+1
|