factor/contrib/httpd/browser-responder.factor

92 lines
3.7 KiB
Factor
Raw Normal View History

2005-02-14 17:19:09 -05:00
! Copyright (C) 2004 Chris Double.
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
2005-02-14 17:19:09 -05:00
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
2005-02-14 17:19:09 -05:00
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
!
! A Smalltalk-like browser that runs in the httpd server using
! cont-responder facilities.
!
IN: browser-responder
USING: cont-responder hashtables help html io kernel lists
memory namespaces prettyprint sequences words xml ;
2005-08-08 02:42:39 -04:00
: option ( current text -- )
#! Output the HTML option tag for the given text. If
#! it is equal to the current string, make the option selected.
2dup = [
"<option selected>" write
] [
"<option>" write
] if
chars>entities write
"</option>\n" write drop ;
2005-08-08 02:42:39 -04:00
: vocab-list ( vocab -- )
#! Write out the HTML for the list of vocabularies. Make the currently
#! selected vocab be 'vocab'.
2006-01-23 21:03:22 -05:00
<select "vocab" =name "width: 200px; " =style "20" =size "document.forms.main.submit()" =onchange select>
vocabs [ over swap option ] each drop
</select> ;
2005-02-14 17:19:09 -05:00
2005-08-08 02:42:39 -04:00
: word-list ( vocab word -- )
#! Write out the HTML for the list of words in a vocabulary. Make the 'word' item
#! the currently selected option.
2006-01-23 21:03:22 -05:00
<select "word" =name "width: 200px; " =style "20" =size "document.forms.main.submit()" =onchange select>
swap words natural-sort
[ word-name over swap option ] each drop
</select> ;
2005-02-14 17:19:09 -05:00
2005-08-08 02:42:39 -04:00
: word-source ( vocab word -- )
#! Write the source for the given word from the vocab as HTML.
swap lookup [ [ (help) ] with-html-stream ] when* ;
2005-02-14 17:19:09 -05:00
2005-08-08 02:42:39 -04:00
: browser-body ( vocab word -- )
#! Write out the HTML for the body of the main browser page.
<table "100%" =width table>
<tr>
2006-01-21 03:23:14 -05:00
<th> "Vocabularies" write </th>
<th> "Words" write </th>
<th> "Documentation" write </th>
</tr>
<tr>
2006-01-23 21:03:22 -05:00
<td "top" =valign "width: 200px;" =style td> over vocab-list </td>
<td "top" =valign "width: 200px;" =style td> 2dup word-list </td>
<td "top" =valign td> word-source </td>
</tr>
</table> ;
2005-08-08 02:42:39 -04:00
: browser-title ( vocab word -- )
#! Output the HTML title for the browser.
[ "Factor Browser - " % swap % " - " % % ] "" make ;
2005-08-08 02:42:39 -04:00
: browse ( vocab word -- )
#! Display a Smalltalk like browser for exploring words.
[
2dup browser-title [
<form "main" =name "" =action "get" =method form> browser-body </form>
] html-document
] show-final ;
2005-02-14 17:19:09 -05:00
2005-08-08 02:42:39 -04:00
: browser-responder ( -- )
#! Start the Smalltalk-like browser.
"vocab" "query" get hash [ "browser-responder" ] unless*
"word" "query" get hash [ "browse" ] unless* browse ;