]> 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.rpc-server help.syntax help.markup strings ;
2 QUALIFIED-WITH: modules.using m
3 IN: modules
4
5 HELP: service
6 { $syntax "IN: module service" }
7 { $description "Starts a server for requests for remote procedure calls." } ;
8
9 ARTICLE: { "modules" "remote-loading" } "Using the remote-loading vocabulary"
10 "If loaded, starts serving vocabularies, accessable through a " { $link POSTPONE: m:USING: } " form" ;
11
12 HELP: USING:
13 { $syntax "USING: rpc-server::module fetch-sever::module { module qualified-name } { module => word ... } ... ;" }
14 { $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 "
15 { $link POSTPONE: QUALIFIED: } " or " { $link POSTPONE: FROM: } " forms." } ;