Skip to content

A simple alternative to ActivityStreams for representing updates to a site inspired by wiki style RecentChanges.

Notifications You must be signed in to change notification settings

converspace/recentchanges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 

Repository files navigation

RecentChanges

A simple alternative to ActivityStreams for representing updates to a site inspired by wiki style RecentChanges.

  • Every resource (URL) SHOULD have a RecentChanges endpoint.
GET /some-resource HTTP/1.1
Host: sandeep.shetty.in
HTTP/1.1 200 OK
Link: <http://sandeep.shetty.in/recentchanges-endpoint?res=/some-resource>; rel="http://example.com/TDB"

<html>
...
<link href="http://sandeep.shetty.in/recentchanges-endpoint?res=/some-resource" rel="http://example.com/TDB" />
...
  • The RecentChanges endpoint at each level of the (URL) hierarchy SHOULD aggregate all RecentChanges under it.
  • The RecentChanges endpoint of the site MUST aggregates site-wide RecentChanges.
GET / HTTP/1.1
Host: sandeep.shetty.in
HTTP/1.1 200 OK
Link: <http://sandeep.shetty.in/recentchanges-endpoint>; rel="http://example.com/TDB"

<html>
...
<link href="http://sandeep.shetty.in/recentchanges-endpoint" rel="http://example.com/TDB" />
...
  • The RecentChanges endpoint could return HTML (marked up with microformats) or JSON.
  • RecentChanges only requires/uses 4 verbs: Post, Update, Respond, Delete (PURD). (open to renaming these but the key idea is that we only need a limited number of verbs: 4 based on use cases below)
  • Use-cases:
  • New Post:
    Sandeep Shetty posted Foobar
  • Edit an existing post:
[Sandeep Shetty](http://sandeep.shetty.in/) updated [Foobar](http://example.com/foobar) with http://example.com/diff/v1-vs-v2 

TODO

  • Instead of a separate RecentChanges endpoint, it could just be microformats on the same page.
  • microformats for marking up RecentChanges.
  • JSON format for RecentChanges (could just go with the microformats and skip this - DRY)

References

About

A simple alternative to ActivityStreams for representing updates to a site inspired by wiki style RecentChanges.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published