File: project.cl

package info (click to toggle)
cl-portable-aserve 1.2.42%2Bcvs.2007.05.07-dfsg-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,848 kB
  • ctags: 2,152
  • sloc: lisp: 29,588; sh: 153; perl: 140; makefile: 36
file content (40 lines) | stat: -rw-r--r-- 898 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(in-package :net.aserve.testwa)

(webaction-project "sitea"
		   :project-prefix "/sitea/"
		   :destination (directory-namestring *load-pathname*)
		   :map '(("pagea" "file1.clp")
			  ("action" 
			   action-sitea-pushit
			   action-sitea-pushit
			   action-sitea-pushit
			   "file1.clp")
			  
			  ("action2"
			   action-retname-two)
			  
			  ("action3"
			   action-retname-three)
			  
			  ("action4"
			   action-retname-four)
			  
			  ("act" action-sitea-pushit "file1.clp"
			   (:prefix t))
			  
			  ; push once and then redir to "action"
			  ("redirtry" action-sitea-pushit "action")
			  
			  ; test that the existing file file1.clp has
			  ; precedence over the prefix fil
			  ("fil"  action-sitea-pushit action-sitea-pushit
			   "file2.clp"
			   (:prefix t))
			  
			  ("testctype" "file3.clp")
			  ("file3.clp" (:content-type "text/plain"))
			  ))