Fix a bunch of load-everything hiccups

db4
Eduardo Cavazos 2008-01-31 23:21:06 -06:00
parent ee533db516
commit d7c1349c8d
6 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,6 @@
! Copyright (C) 2007 Matthew Willis ! Copyright (C) 2007 Matthew Willis
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: cryptlib cryptlib.libcl kernel alien sequences USING: cryptlib cryptlib.libcl kernel alien sequences continuations
byte-arrays namespaces io.buffers math generic io strings byte-arrays namespaces io.buffers math generic io strings
io.streams.lines io.streams.plain io.streams.duplex combinators io.streams.lines io.streams.plain io.streams.duplex combinators
alien.c-types ; alien.c-types ;

View File

@ -4,7 +4,7 @@
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: io kernel namespaces prettyprint quotations USING: io kernel namespaces prettyprint quotations
sequences strings words xml.writer compiler.units effects ; sequences strings words xml.writer xml.entities compiler.units effects ;
IN: html.elements IN: html.elements

View File

@ -1,9 +1,9 @@
! Copyright (C) 2004, 2006 Slava Pestov. ! Copyright (C) 2004, 2006 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: generic assocs help http io io.styles io.files USING: generic assocs help http io io.styles io.files continuations
io.streams.string kernel math math.parser namespaces io.streams.string kernel math math.parser namespaces
quotations assocs sequences strings words html.elements quotations assocs sequences strings words html.elements
xml.writer sbufs ; xml.writer xml.entities sbufs ;
IN: html IN: html
GENERIC: browser-link-href ( presented -- href ) GENERIC: browser-link-href ( presented -- href )

View File

@ -1,7 +1,7 @@
! Copyright (C) 2007 Slava Pestov. ! Copyright (C) 2007 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
IN: io.streams.null IN: io.streams.null
USING: kernel io ; USING: kernel io continuations ;
TUPLE: null-stream ; TUPLE: null-stream ;

View File

@ -1,7 +1,6 @@
USING: combinators io io.files io.streams.duplex USING: combinators io io.files io.streams.duplex continuations
io.streams.string kernel math math.parser io.streams.string kernel math math.parser
namespaces pack prettyprint sequences strings system ; namespaces pack prettyprint sequences strings system hexdump ;
USING: hexdump tools.interpreter ;
IN: tar IN: tar
: zero-checksum 256 ; : zero-checksum 256 ;

View File

@ -1,5 +1,5 @@
USING: calendar furnace furnace.validator io.files kernel USING: calendar furnace furnace.validator io.files kernel
namespaces sequences http.server.responders html math.parser rss namespaces sequences http.server.responders html math math.parser rss
xml.writer xmode.code2html ; xml.writer xmode.code2html ;
IN: webapps.pastebin IN: webapps.pastebin
@ -94,7 +94,7 @@ C: <annotation> annotation
: annotate-paste ( n summary author mode contents -- ) : annotate-paste ( n summary author mode contents -- )
<annotation> swap get-paste <annotation> swap get-paste
[ paste-annotations push store save-store ] keep [ paste-annotations push ] keep
paste-link permanent-redirect ; paste-link permanent-redirect ;
[ "n" show-paste ] [ "n" show-paste ]