| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
webring++ is a logical extension of 1990s webring.
This spec provides a language-agnostic explanation of how to join a webring++.
In a traditional webring, websites in the collection form a linked list. Inserting into a linked list requires:
In a webring++, there is no ring at all - we instead abstract the idea to a digraph. Each site in the webring++ points to zero or more other sites. As such, to join an existing webring++, you just need one of the other nodes to add your site to its forward set.
webring++ only specifies forward links. webring++ clients can choose how to read, render, walk, or otherwise ignore members of the digraph.
To host forward links in webring++, you must host an endpoint that serves JSON matching the schema indicated below. webring++ endpoints are scoped by hostport, which means that the following are all the same:
The following are not valid, and are ignored:
The following are all valid, but fall into different hostports and so do not collide (they exist in parallel):
The top-level /webring++.json endpoint should serve JSON with the following schema:
| Key | Description |
|---|---|
| version | Number. Valid value is 0 or 1. |
| links | List of Strings. Each string should be a URI which represents a forward link. Anything after port should be ignored by the client. |
Clients must permit deserialisation of unknown object keys for forward-compatibility.
| Back | FazBrowse Home | New Git URL |