Fix a bunch of load-everything hiccups
parent
ee533db516
commit
d7c1349c8d
|
@ -1,6 +1,6 @@
|
|||
! Copyright (C) 2007 Matthew Willis
|
||||
! 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
|
||||
io.streams.lines io.streams.plain io.streams.duplex combinators
|
||||
alien.c-types ;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
! See http://factorcode.org/license.txt for BSD license.
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
! Copyright (C) 2004, 2006 Slava Pestov.
|
||||
! 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
|
||||
quotations assocs sequences strings words html.elements
|
||||
xml.writer sbufs ;
|
||||
xml.writer xml.entities sbufs ;
|
||||
IN: html
|
||||
|
||||
GENERIC: browser-link-href ( presented -- href )
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
! Copyright (C) 2007 Slava Pestov.
|
||||
! See http://factorcode.org/license.txt for BSD license.
|
||||
IN: io.streams.null
|
||||
USING: kernel io ;
|
||||
USING: kernel io continuations ;
|
||||
|
||||
TUPLE: null-stream ;
|
||||
|
||||
|
|
|
@ -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
|
||||
namespaces pack prettyprint sequences strings system ;
|
||||
USING: hexdump tools.interpreter ;
|
||||
namespaces pack prettyprint sequences strings system hexdump ;
|
||||
IN: tar
|
||||
|
||||
: zero-checksum 256 ;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 ;
|
||||
IN: webapps.pastebin
|
||||
|
||||
|
@ -94,7 +94,7 @@ C: <annotation> annotation
|
|||
|
||||
: annotate-paste ( n summary author mode contents -- )
|
||||
<annotation> swap get-paste
|
||||
[ paste-annotations push store save-store ] keep
|
||||
[ paste-annotations push ] keep
|
||||
paste-link permanent-redirect ;
|
||||
|
||||
[ "n" show-paste ]
|
||||
|
|
Loading…
Reference in New Issue