]> gitweb.factorcode.org Git - factor.git/blob - unmaintained/modules/using/using-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / unmaintained / modules / using / using-docs.factor
1 USING: modules.using modules.rpc-server help.syntax help.markup strings ;
2 IN: modules
3
4 HELP: service
5 { $syntax "IN: module service" }
6 { $description "Starts a server for requests for remote procedure calls." } ;
7
8 ARTICLE: { "modules" "remote-loading" } "Using the remote-loading vocabulary"
9 "If loaded, starts serving vocabularies, accessable through a " { $link POSTPONE: USING: } " form" ;
10
11 HELP: USING:
12 { $syntax "USING: rpc-server::module fetch-sever::module { module qualified-name } { module => word ... } ... ;" }
13 { $description "Adds vocabularies to the front of the search path.  Vocabularies can be fetched remotely, if preceded by a valid hostname.  Name pairs facilitate imports like in the "
14 { $link POSTPONE: QUALIFIED: } " or " { $link POSTPONE: FROM: } " forms." } ;