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.
|
|
|
|
!
|
|
|
|
! 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.
|
|
|
|
!
|
|
|
|
! 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
|
2005-11-29 23:49:59 -05:00
|
|
|
USING: html cont-responder hashtables kernel io namespaces words lists prettyprint
|
2005-08-08 02:42:39 -04:00
|
|
|
memory sequences ;
|
|
|
|
|
|
|
|
: 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
|
2005-09-24 15:21:17 -04:00
|
|
|
] if
|
2005-08-08 02:42:39 -04:00
|
|
|
chars>entities write
|
|
|
|
"</option>\n" write drop ;
|
|
|
|
|
|
|
|
: vocab-list ( vocab -- )
|
|
|
|
#! Write out the HTML for the list of vocabularies. Make the currently
|
|
|
|
#! selected vocab be 'vocab'.
|
2005-09-22 21:01:55 -04:00
|
|
|
<select "vocab" =name "width: 200" =style "20" =size "document.forms.main.submit()" =onchange select>
|
2005-08-08 02:42:39 -04:00
|
|
|
vocabs [ over swap option ] each drop
|
2005-02-14 17:19:09 -05:00
|
|
|
</select> ;
|
|
|
|
|
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.
|
2005-09-22 21:01:55 -04:00
|
|
|
<select "word" =name "width: 200" =style "20" =size "document.forms.main.submit()" =onchange select>
|
2006-01-09 01:34:23 -05:00
|
|
|
swap words natural-sort
|
|
|
|
[ word-name over swap option ] each drop
|
2005-02-14 17:19:09 -05:00
|
|
|
</select> ;
|
|
|
|
|
2005-08-08 02:42:39 -04:00
|
|
|
: word-source ( vocab word -- )
|
2005-02-14 17:19:09 -05:00
|
|
|
#! Write the source for the given word from the vocab as HTML.
|
2005-08-22 20:54:01 -04:00
|
|
|
swap lookup [
|
2005-08-08 02:42:39 -04:00
|
|
|
[ see ] with-simple-html-output
|
|
|
|
] when* ;
|
2005-02-14 17:19:09 -05:00
|
|
|
|
2005-08-08 02:42:39 -04:00
|
|
|
: vm-statistics ( -- )
|
2005-02-14 17:19:09 -05:00
|
|
|
#! Display statistics about the vm.
|
|
|
|
<pre> room. </pre> ;
|
|
|
|
|
2005-08-08 02:42:39 -04:00
|
|
|
: browser-body ( vocab word -- )
|
2005-02-14 17:19:09 -05:00
|
|
|
#! Write out the HTML for the body of the main browser page.
|
2005-09-22 21:01:55 -04:00
|
|
|
<table "100%" =width table>
|
2005-02-14 17:19:09 -05:00
|
|
|
<tr>
|
2005-09-22 21:01:55 -04:00
|
|
|
<td> <b> "Vocabularies" write </b> </td>
|
|
|
|
<td> <b> "Words" write </b> </td>
|
|
|
|
<td> <b> "Source" write </b> </td>
|
2005-02-14 17:19:09 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2005-09-22 21:01:55 -04:00
|
|
|
<td "top" =valign "width: 200" =style td> over vocab-list </td>
|
|
|
|
<td "top" =valign "width: 200" =style td> 2dup word-list </td>
|
|
|
|
<td "top" =valign td> word-source </td>
|
2005-02-14 17:19:09 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
2005-08-08 02:42:39 -04:00
|
|
|
vm-statistics ;
|
|
|
|
|
|
|
|
: browser-title ( vocab word -- )
|
|
|
|
#! Output the HTML title for the browser.
|
|
|
|
<title>
|
|
|
|
"Factor Browser - " write
|
|
|
|
swap write
|
|
|
|
" - " write
|
|
|
|
write
|
|
|
|
</title> ;
|
|
|
|
|
|
|
|
: browser-style ( -- )
|
|
|
|
#! Stylesheet for browser pages
|
|
|
|
<style>
|
|
|
|
"A:link { text-decoration:none}\n" write
|
|
|
|
"A:visited { text-decoration:none}\n" write
|
|
|
|
"A:active { text-decoration:none}\n" write
|
|
|
|
"A:hover, A.nav:hover { border: 1px solid black; text-decoration: none; margin: 0px }\n" write
|
|
|
|
"A { margin: 1px }" write
|
|
|
|
</style> ;
|
|
|
|
|
|
|
|
: browse ( vocab word -- )
|
|
|
|
#! Display a Smalltalk like browser for exploring words.
|
2005-02-14 17:19:09 -05:00
|
|
|
[
|
|
|
|
<html>
|
2005-08-08 02:42:39 -04:00
|
|
|
<head> 2dup browser-title browser-style </head>
|
|
|
|
<body>
|
2005-09-22 21:01:55 -04:00
|
|
|
<form "main" =name "" =action "get" =method form> browser-body </form>
|
2005-02-14 17:19:09 -05:00
|
|
|
</body>
|
2005-08-08 02:42:39 -04:00
|
|
|
</html>
|
|
|
|
] show-final ;
|
2005-02-14 17:19:09 -05:00
|
|
|
|
2005-08-08 02:42:39 -04:00
|
|
|
: browser-responder ( -- )
|
2005-02-14 17:19:09 -05:00
|
|
|
#! Start the Smalltalk-like browser.
|
2005-11-29 23:49:59 -05:00
|
|
|
"vocab" "query" get hash [ "browser-responder" ] unless*
|
|
|
|
"word" "query" get hash [ "browse" ] unless* browse ;
|