]> gitweb.factorcode.org Git - factor.git/blob - library/httpd/default-responders.factor
e5f47398eaf42b5ddba8175ea82f0db2aa65ca0a
[factor.git] / library / httpd / default-responders.factor
1 !:folding=indent:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 IN: httpd-responder
29 USE: namespaces
30
31 USE: test-responder
32 USE: inspect-responder
33 USE: quit-responder
34 USE: file-responder
35 USE: wiki-responder
36
37 : default-responders ( -- )
38     #! Remove all existing responders, and create a blank
39     #! responder table.
40     <namespace> [
41         <responder> [
42             "test" "responder" set
43             [ test-responder ] "get" set
44         ] extend "test" set
45
46         <responder> [
47             "inspect" "responder" set
48             [ inspect-responder ] "get" set
49             "global" "default-argument" set
50         ] extend "inspect" set
51
52         <responder> [
53             "quit" "responder" set
54             [ quit-responder ] "get" set
55         ] extend "quit" set
56
57         <responder> [
58             "file" "responder" set
59             [ file-responder ] "get" set
60         ] extend "file" set
61
62         <responder> [
63             "wiki" "responder" set
64             [ wiki-get-responder ] "get" set
65             [ wiki-post-responder ] "post" set
66             <namespace> "wiki" set
67             "WikiHome" "default-argument" set
68         ] extend "wiki" set
69     ] extend "httpd-responders" set ;