RSS TodoList
Add an URL to your feed
1. By using that form :
Please note that feed "somename" is limited to links from "http://en.wikipedia.org" to prevent spam
2. By calling an URL :
add?name=somename&url=http://www.google.com/
- By default, the feed title will be fetched from the web page title. You may force it by using the "&title" parameter.
- Also, by default, your feed will contain 25 items. You can change that by setting "&limit" parameter from 1 to 100.
- A description for the link may be added by using the "description" parameter
- You may also use short parameters like "n" for "name", "u" for "url", "t" for "title", "l" for "limit" or "d" for "description" like that : add?n=somename&u=http://www.google.com/
3. By using that bookmarklet :
Create a new bookmarklet and paste the following code in the URL field :
javascript:var rss=prompt('RSS feed name ?');var r=new XMLHttpRequest();r.open('GET','BASEadd?n='+rss+'&url='+encodeURIComponent(window.location),true);r.setRequestHeader('Content-Type','text/plain;charset=UTF-8');r.onreadystatechange=function(){if(r.readyState==4){alert("Request sent : "+(r.status===200)+" ("+r.status+")");}};r.send(null);
Then, clicking on that bookmark will add current page to the RSS feed.
4. By using a Firefox extension :
A Firefox extension is available.
Get your feed :
Remove an URL from your feed
By calling an URL :
del?name=somename&url=http://www.google.com/
Feedback
Contact me on twitter (@paulgreg) or at gmail (my username is paulgreg).
Source code
Source code can be found :
- at github.com/paulgreg/rsstodolist-server/ : source for that django version,
- at github.com/paulgreg/rsstodolist-firefox/ : new version of Firefox Add-on.
- at code.google.com/p/rsstodolist/ : rsstodolist Google App Engine version, Chrome extension and old version of Firefox add-on sources.