Skip to content

Commit

Permalink
working CGI version
Browse files Browse the repository at this point in the history
taubatron.cgi is now a working CGI script, with very bare-bones interface
based on POST.

Still fails for words not in the dictionary; just crashes with error.
  • Loading branch information
gbenison committed Mar 30, 2012
1 parent 5abe08c commit 38039cd
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions libtaubatron.so
61 changes: 61 additions & 0 deletions taubatron.cgi
@@ -0,0 +1,61 @@
#!/bin/sh
#-*- scheme -*-
#
# Copyright (C) 2012 Greg Benison
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#

export GUILE_LOAD_PATH=$GUILE_LOAD_PATH:`pwd`;
export LTDL_LIBRARY_PATH=$LTDL_LIBRARY_PATH:`pwd`;
export GUILE_WARN_DEPRECATED=no;
# exec guile -s $0 2>/dev/null
exec guile -s $0 2>>guile-error.log

!#

(use-modules (taubatron)
(sxml simple)
(www cgi))

(cgi:init)

(define (safe-car xs)(false-if-exception (car xs)))
(define (as-li x)`(li ,x))

(define path-form
(let ((start (safe-car (cgi:values "start")))
(end (safe-car (cgi:values "end"))))
(if (and start end)
(let ((path (find-path start end)))
`(ul ,(map as-li path)))
"Enter starting and ending words below")))

(display "Content-type: text/html\n\n")

(sxml->xml
`(html
(head
(title "t**tron")
(body ,path-form
(form (@ (method "post")
(action "taubatron.cgi"))
(input (@ (type "text")
(name "start")))
(input (@ (type "text")
(name "end")))
(input (@ (type "submit")
(value "Go"))))))))

1 change: 1 addition & 0 deletions taubatron.scm

0 comments on commit 38039cd

Please sign in to comment.