Skip to content

Commit

Permalink
add webactions to aserve
Browse files Browse the repository at this point in the history
  • Loading branch information
jkf committed Oct 22, 2003
1 parent 881f1b7 commit 4a511a6
Show file tree
Hide file tree
Showing 19 changed files with 4,140 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2003-10-22 John Foderaro <jkf@tiger.franz.com>

* add webactions subdirectory of code

2003-09-22 John Foderaro <jkf@tiger.franz.com>
1.2.31

Expand Down
2 changes: 1 addition & 1 deletion doc/aserve.html
Original file line number Diff line number Diff line change
Expand Up @@ -2430,7 +2430,7 @@ <h2><a name="c-cookie-jar"></a>cookie-jar</h2>
<p><a name="f-uriencode-string"></a>(<strong><font face="Courier New">uriencode-string&nbsp;
string &amp;key external-format)</font></strong></p>

<p>Convert the string into a format that would be save to use as a component of a url.
<p>Convert the string into a format that would be safe to use as a component of a url.
&nbsp;&nbsp;&nbsp; In this conversion most printing characters are not changed
&nbsp;&nbsp; All non printing characters and printing characters that could be confused
with characters that separate fields in a url are encoded a %xy where xy is the
Expand Down
4 changes: 2 additions & 2 deletions main.cl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;; Suite 330, Boston, MA 02111-1307 USA
;;
;;
;; $Id: main.cl,v 1.151 2003/09/24 14:46:00 jkf Exp $
;; $Id: main.cl,v 1.152 2003/10/22 18:37:28 jkf Exp $

;; Description:
;; aserve's main loop
Expand Down Expand Up @@ -1262,7 +1262,7 @@ by keyword symbols and not by strings"
(if* (> fd *max-socket-fd*)
then (setq *max-socket-fd* fd)
(logmess (format nil
"Maximum socket file desciptor number is now ~d" fd))))
"Maximum socket file descriptor number is now ~d" fd))))


(setq error-count 0) ; reset count
Expand Down
55 changes: 55 additions & 0 deletions webactions/ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
2003-10-22 John Foderaro <jkf@tiger.franz.com>
1.4
* webact.cl - add :content-type flag and :redirect flag
to map entry. Add tests.
Update document

2003-10-09 <jkf@main.verada.com>
1.3
* webact.cl - add :prefix flag to map entry
webaction.html - more documentation

2003-10-07 John Foderaro <jkf@tiger.franz.com>

* webact.cl - fix :prefix sym name processing so that an existing
file takes precedence over a prefix name.

2003-09-22 <jkf@main.verada.com>

* webact.cl - add :clp-content-type argument to webaction-project
to control the content-type returned by clp pages
- add (:prefix t) support in maps to say that
the given symbolic page name matches any sym page name
that extends that given name.
* clpage.cl - support clp-content-type declaration

2003-09-18 Colin Meldrum <colin@cobweb>

* clpage.cl
- whenever opening a .clp file use the external-format of
the associated clp-entity
- fixed a couple of places in the code to parse clp files
which made the assumption that 1 character = 1 file-position.

* webact.cl
- added :host argument to webaction-project

2003-09-03 <jkf@main.verada.com>
1.2
* webact.cl: add :authorizer argument to webaction-project

2003-08-13 <jkf@main.verada.com>
1.1
* add 'extended maps' where you can specify more
than one handler for each symbolic page.
update webactions document

2003-07-07 <jkf@tiger.franz.com>
<noversion>
* add clp_select funtion

2003-05-16 John Foderaro <jkf@tiger.franz.com>

* add external-format support to clp pages


Loading

0 comments on commit 4a511a6

Please sign in to comment.