Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8b4b60f

Browse files
committedJun 16, 2019
Remove links to rwweb.org (domain expired)
1 parent 3dc7686 commit 8b4b60f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project is kept alive as a demo but is not developed further in this form.
1010

1111
## Idea
1212

13-
Described [here](https://rwweb.org).
13+
Described [here](https://web.archive.org/web/20160303135717/http://read-write-web.org/).
1414

1515
## Try out
1616

@@ -46,7 +46,7 @@ The code is designed somewhat modular, and could be seen as three repos in one:
4646
* Knows nothing of an item's content, except its `docId` given by the top level app. It simply passes this `docId` to the configured component (`StemItem` in this app), so the top level app decides what to draw inside an item.
4747

4848
### Storage ([`src/storage`](src/storage))
49-
* Keeps a persistent collection of documents (currently just simple webmarks and text notes, e.g. `{url: 'https://rwweb.org'}`), and a collection links between them (simple `{sourceDocId, targetDocId}` pairs).
49+
* Keeps a persistent collection of documents (currently just simple webmarks and text notes, e.g. `{url: 'https://webmemex.org'}`), and a collection links between them (simple `{sourceDocId, targetDocId}` pairs).
5050
* Not to be confused with the Redux store (`src/store.js`), which manages the application state, and thus also contains the (non-persistent) canvas state.
5151
* Storage is currently implemented as part of the redux store, using [`redux-pouchdb`](https://github.com/vicentedealencar/redux-pouchdb) for synchronising its state in Redux with a [PouchDB] database in the browser's offline storage.
5252

‎src/actions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function initCanvas() {
5454
dispatch(storage.addNote({docId: 'aboutNote', 'text': aboutNote}))
5555

5656
const demoDocs = {
57-
'demoDoc_rwweb': 'https://rwweb.org',
57+
'demoDoc_rwweb': 'https://web.archive.org/web/20160303135717id_/http://read-write-web.org/',
5858
'demoDoc_www': 'https://www.w3.org/People/Berners-Lee/WorldWideWeb.html',
5959
'demoDoc_proposal': 'https://www.w3.org/History/1989/proposal.html',
6060
'demoDoc_aswemaythink': 'http://www.theatlantic.com/magazine/archive/1945/07/as-we-may-think/303881/',

0 commit comments

Comments
 (0)
Please sign in to comment.