Merge branch 'master' of git://factorcode.org/git/factor
commit
6ff5e3a01d
|
@ -2,3 +2,5 @@ IN: help.html.tests
|
||||||
USING: help.html tools.test help.topics kernel ;
|
USING: help.html tools.test help.topics kernel ;
|
||||||
|
|
||||||
[ ] [ "xml" >link help>html drop ] unit-test
|
[ ] [ "xml" >link help>html drop ] unit-test
|
||||||
|
|
||||||
|
[ "article-foobar.html" ] [ "foobar" >link topic>filename ] unit-test
|
|
@ -1,11 +1,13 @@
|
||||||
! Copyright (C) 2008, 2009 Slava Pestov.
|
! Copyright (C) 2008, 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: io.encodings.utf8 io.encodings.ascii io.encodings.binary
|
USING: io.encodings.utf8 io.encodings.binary
|
||||||
io.files io.files.temp io.directories html.streams help kernel
|
io.files io.files.temp io.directories html.streams help kernel
|
||||||
assocs sequences make words accessors arrays help.topics vocabs
|
assocs sequences make words accessors arrays help.topics vocabs
|
||||||
vocabs.hierarchy help.vocabs namespaces prettyprint io
|
vocabs.hierarchy help.vocabs namespaces prettyprint io
|
||||||
vocabs.loader serialize fry memoize unicode.case math.order
|
vocabs.loader serialize fry memoize unicode.case math.order
|
||||||
sorting debugger html xml.syntax xml.writer math.parser ;
|
sorting debugger html xml.syntax xml.writer math.parser ;
|
||||||
|
FROM: io.encodings.ascii => ascii ;
|
||||||
|
FROM: ascii => ascii? ;
|
||||||
IN: help.html
|
IN: help.html
|
||||||
|
|
||||||
: escape-char ( ch -- )
|
: escape-char ( ch -- )
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
! Copyright (C) 2007, 2009 Slava Pestov.
|
! Copyright (C) 2007, 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: arrays accessors io.backend io.streams.c init fry namespaces
|
USING: arrays accessors io.backend io.streams.c init fry namespaces
|
||||||
math make assocs kernel parser lexer strings.parser vocabs sequences
|
math make assocs kernel parser parser.notes lexer strings.parser
|
||||||
sequences.private words memory kernel.private continuations io
|
vocabs sequences sequences.private words memory kernel.private
|
||||||
vocabs.loader system strings sets vectors quotations byte-arrays
|
continuations io vocabs.loader system strings sets vectors quotations
|
||||||
sorting compiler.units definitions generic generic.standard
|
byte-arrays sorting compiler.units definitions generic
|
||||||
generic.single tools.deploy.config combinators classes
|
generic.standard generic.single tools.deploy.config combinators
|
||||||
slots.private ;
|
classes slots.private ;
|
||||||
QUALIFIED: bootstrap.stage2
|
QUALIFIED: bootstrap.stage2
|
||||||
QUALIFIED: command-line
|
QUALIFIED: command-line
|
||||||
QUALIFIED: compiler.errors
|
QUALIFIED: compiler.errors
|
||||||
|
|
Loading…
Reference in New Issue