Syntax of URLs |
This section gives some detail on the syntax of URLs, as used by Big Brother. These rules should be obeyed when supplying URLs to Big Brother.
There are two kinds of URLs: remote (http
) and local (file
) URLs. Remote URLs have the following syntax:
http://
server name /
relative path
file:///
relative path
file://
drive /
relative path
These rules correspond to absolute URLs. A URL can also be relative, that is, depend on another URL. In
that case, it only consists of a relative path, such as ../pics/bob.gif
. Note that some characters are illegal
in URLs and must be encoded using a percent sign followed by their hexadecimal ASCII code. For instance, if a URL
contains a space, it should be encoded as %20
.
Syntax of URLs |