remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / core / vocabs / loader / loader-docs.factor
blobce3b5ea024154940291a1fa8b636ae4731c96ec6
1 USING: vocabs vocabs.loader.private help.markup help.syntax
2 words strings io ;
3 IN: vocabs.loader
5 ARTICLE: "add-vocab-roots" "Working with code outside of the Factor source tree"
6 "You can work with code outside of the Factor source tree by adding additional directories to the list of vocabulary roots."
7 $nl
8 "There are three ways of doing this."
9 $nl
10 "The first way is to use an environment variable. Factor looks at the " { $snippet "FACTOR_ROOTS" } " environment variable for a list of " { $snippet ":" } "-separated paths (on Unix) or a list of " { $snippet ";" } "-separated paths (on Windows)."
11 $nl
12 "The second way is to create a configuration file. You can list additional vocabulary roots in a file that Factor reads at startup:"
13 { $subsection "factor-roots" }
14 "Finally, you can add vocabulary roots dynamically using a word:"
15 { $subsection add-vocab-root } ;
17 ARTICLE: "vocabs.roots" "Vocabulary roots"
18 "The vocabulary loader searches for it in one of the root directories:"
19 { $subsection vocab-roots }
20 "The default set of roots includes the following directories in the Factor source directory:"
21 { $list
22     { { $snippet "core" } " - essential system vocabularies such as " { $vocab-link "parser" } " and " { $vocab-link "sequences" } ". The vocabularies in this root constitute the boot image; see " { $link "bootstrap.image" } "." }
23     { { $snippet "basis" } " - useful libraries and tools, such as " { $vocab-link "compiler" } ", " { $vocab-link "ui" } ", " { $vocab-link "calendar" } ", and so on." }
24     { { $snippet "extra" } " - additional contributed libraries." }
25     { { $snippet "work" } " - a root for vocabularies which are not intended to be contributed back to Factor." }
27 "You can store your own vocabularies in the " { $snippet "work" } " directory."
28 { $subsection "add-vocab-roots" } ;
30 ARTICLE: "vocabs.loader" "Vocabulary loader"
31 "The vocabulary loader is defined in the " { $vocab-link "vocabs.loader" } " vocabulary."
32 $nl
33 "Vocabularies are searched for in vocabulary roots."
34 { $subsection "vocabs.roots" }
35 "Vocabulary names map directly to source files. A vocabulary named " { $snippet "foo.bar" } " must be defined in a " { $snippet "bar" } " directory nested inside a " { $snippet "foo" } " directory of a vocabulary root. Any level of vocabulary nesting is permitted."
36 $nl
37 "The vocabulary directory - " { $snippet "bar" } " in our example - can contain the following files; the first is required while the rest are optional:"
38 { $list
39     { { $snippet "foo/bar/bar.factor" } " - the source file, defines words in the " { $snippet "foo.bar" } " vocabulary" }
40     { { $snippet "foo/bar/bar-docs.factor" } " - documentation, see " { $link "writing-help" } }
41     { { $snippet "foo/bar/bar-tests.factor" } " - unit tests, see " { $link "tools.test" } }
42     { { $snippet "foo/bar/summary.txt" } " - a one-line description" }
43     { { $snippet "foo/bar/tags.txt" } " - a whitespace-separated list of tags which classify the vocabulary" }
45 "While " { $link POSTPONE: USE: } " and " { $link POSTPONE: USING: } " load vocabularies which have not been loaded before adding them to the search path, it is also possible to load a vocabulary without adding it to the search path:"
46 { $subsection require }
47 "Forcing a reload of a vocabulary, even if it has already been loaded:"
48 { $subsection reload }
49 "Application vocabularies can define a main entry point, giving the user a convenient way to run the application:"
50 { $subsection POSTPONE: MAIN: }
51 { $subsection run }
52 { $see-also "vocabularies" "parser-files" "source-files" } ;
54 ABOUT: "vocabs.loader"
56 HELP: load-vocab
57 { $values { "name" "a string" } { "vocab" "a hashtable or " { $link f } } }
58 { $description "Outputs a named vocabulary. If the vocabulary does not exist, throws a restartable " { $link no-vocab } " error. If the user invokes the restart, this word outputs " { $link f } "." }
59 { $error-description "Thrown by " { $link POSTPONE: USE: } " and " { $link POSTPONE: USING: } " when a given vocabulary does not exist. Vocabularies must be created by " { $link POSTPONE: IN: } " before being used." } ;
61 HELP: vocab-main
62 { $values { "vocab-spec" "a vocabulary specifier" } { "main" word } }
63 { $description "Outputs the main entry point for a vocabulary. The entry point can be executed with " { $link run } " and set with " { $link POSTPONE: MAIN: } "." } ;
65 HELP: vocab-roots
66 { $var-description "A sequence of pathname strings to search for vocabularies." } ;
68 HELP: add-vocab-root
69 { $values { "root" "a pathname string" } }
70 { $description "Adds a directory pathname to the list of vocabulary roots." }
71 { $see-also "factor-roots" } ;
73 HELP: find-vocab-root
74 { $values { "vocab" "a vocabulary specifier" } { "path/f" "a pathname string" } }
75 { $description "Searches for a vocabulary in the vocabulary roots." } ;
77 HELP: no-vocab
78 { $values { "name" "a vocabulary name" } } 
79 { $description "Throws a " { $link no-vocab } "." }
80 { $error-description "Thrown when a " { $link POSTPONE: USE: } " or " { $link POSTPONE: USING: } " form refers to a non-existent vocabulary." } ;
82 HELP: load-help?
83 { $var-description "If set to a true value, documentation will be automatically loaded when vocabularies are loaded. This variable is usually on, except when Factor has been bootstrapped without the help system." } ;
85 HELP: load-source
86 { $values { "vocab" "a vocabulary specifier" } }
87 { $description "Loads a vocabulary's source code." } ;
89 HELP: load-docs
90 { $values { "vocab" "a vocabulary specifier" } }
91 { $description "If " { $link load-help? } " is on, loads a vocabulary's documentation." } ;
93 HELP: reload
94 { $values { "name" "a vocabulary name" } }
95 { $description "Loads it's source code and documentation." }
96 { $errors "Throws a " { $link no-vocab } " error if the vocabulary does not exist on disk." } ;
98 HELP: require
99 { $values { "vocab" "a vocabulary specifier" } }
100 { $description "Loads a vocabulary if it has not already been loaded." }
101 { $notes "To unconditionally reload a vocabulary, use " { $link reload } ". To reload changed source files only, use the words in " { $link "tools.vocabs" } "." } ;
103 HELP: run
104 { $values { "vocab" "a vocabulary specifier" } }
105 { $description "Runs a vocabulary's main entry point. The main entry point is set with the " { $link POSTPONE: MAIN: } " parsing word." } ;
107 HELP: vocab-source-path
108 { $values { "vocab" "a vocabulary specifier" } { "path/f" "a pathname string or " { $link f } } }
109 { $description "Outputs a pathname where source code for " { $snippet "vocab" } " might be found. Outputs " { $link f } " if the vocabulary does not have a directory on disk." } ;
111 HELP: vocab-docs-path
112 { $values { "vocab" "a vocabulary specifier" } { "path/f" "a pathname string or " { $link f } } }
113 { $description "Outputs a pathname where the documentation for " { $snippet "vocab" } " might be found. Outputs " { $link f } " if the vocabulary does not have a directory on disk." } ;