]> gitweb.factorcode.org Git - factor.git/commitdiff
s/with-simple-html-output/with-html/stream/
authorTrent Buck <trentbuck@gmail.com>
Tue, 24 Jan 2006 08:44:25 +0000 (08:44 +0000)
committerTrent Buck <trentbuck@gmail.com>
Tue, 24 Jan 2006 08:44:25 +0000 (08:44 +0000)
contrib/cont-responder/eval-responder.factor

index 5f58089245de0e3d7cac7fdae6c39ca907707445..4c00ddad5c7099ea2c130b3139d0cb006ab00873 100644 (file)
@@ -117,10 +117,10 @@ USE: hashtables
     "browser" "responder" set
     <table "1" =border table> 
       <tr> <th "2" =colspan th> "Source" write </th> </tr>
-      <tr> <td "2" =colspan td> [ [ parse ] catch [ "No such word" write ] [ car see ] if ] with-simple-html-output </td> </tr>
+      <tr> <td "2" =colspan td> [ [ parse ] catch [ "No such word" write ] [ car see ] if ] with-html-stream </td> </tr>
       <tr> <th> "Apropos" write </th> <th> "Usages" write </th> </tr>
-      <tr> <td "top" =valign td> [ apropos ] with-simple-html-output </td> 
-           <td "top" =valign td> [ [ parse ] catch [ "No such word" write ] [ car usages. ] if ] with-simple-html-output </td>
+      <tr> <td "top" =valign td> [ apropos ] with-html-stream </td> 
+           <td "top" =valign td> [ [ parse ] catch [ "No such word" write ] [ car usages. ] if ] with-html-stream </td>
       </tr>
     </table>
   ] make-hash ;