
WebLink is a protocol designed to allow sites with downloads to appear to be just another part of the computer's hard drive. So far, only one browser that we know of supports WebLink, which is GoFoft.
All WebLink commands are embedded in HTML comments ( <!-- and --> )
Strings are enclosed in double qoutes.
<!-- % HREF = "download5.zip" % -->
Lists are enclosed in parentheses and do not need quotes around their items. Items are seperated by comma-space.
<!-- % FIELDS = (Field 1, Field 2) -->
Classes are defined groups. The main use for these are for setting field values with % FIELD ... %.
<!-- % FIELD Author = "Quentin Smith" % -->
This signifies the beginning of a WebLink download list and says that the document supports version 1 of the protocol. You may only have one download list on each page at this time. Browsers are encouraged to ignore download list commands before this tag.
This signifies the end of a WebLink download list. Browsers are encouraged to parse weblink documents even if they do not include this tag, but it is not required by this standard. Browsers are encouraged to ignore download list commands after this tag.
This tag identifies the information that you will provide about the downloads. It should be after the BEGIN DOWNLOAD LIST command but before the first item.
This tag signifies the beginning of information for an item. Browsers should consider this tag to signify the end of the previous item, if necessary.
This tag signifies the end of the information about an item. Browsers are encouraged to simply assume the current item ends when the next item begins if the end is not explicitly stated.
This tag identifies the file that this download should link to. The link may be relative, and if so, the same rules as for a link on the page should be applied. This tag is only valid within % BEGIN ITEM % and % END ITEM %.
This tag sets the value for a piece of information about a link. If multiple FIELD tags with the same name are in one item, the last tag will be the one accepted. This is only valid within % BEGIN ITEM % and % END ITEM %.