news and thoughts on and around the development
of the iCite net
by Jay Fienberg
posted: May 24, 2003 11:18:10 PM
I had to post this idea, while it was in my head:
Write a HTML / JavaScript interface that is a "blog post" form--so title, body, creator, category. Add to it username and password fields. Have preview and post buttons
On "post": take the values of the title, body, creator, and category fields and form them into a string that looks like an RSS document. (So, need some other info like URL. Can timestamp the post in the script.) Then, do an HTTP Post to a server with the RSS document as the data.
On the server, read the document and turn it into a live blog posting. Use the username and password fields to authenticate (could do basic with the username and password in the URL, or pass them as values that would be processed on the server--could also use SSL).
Other conveniences: site, creator, and user info could be stored in a cookie, so persistent. An editor could be created that pulls from an RSS feed and transforms it into an editable post.
I think it would be cool to somehow do this all in a single HTML file that someone could post on their server or save locally on a desktop.
Maybe as a prototype, build a basic client UI in HTML and a simple servlet that returns the RSS document linked to a style sheet that displays it nicely in HTML--just as a proof of concept that shows that the RSS makes it to the server and could be parsed there.
permalink | comments {1} · trackbacks {0}
also available as: rss · rss2 · rdf · atom
Note: All comments and trackbacks are moderated. Spam is deleted. Other comments are approved as promptly as possible.
Note: Older posts no longer accept new comments or trackbacks.
« prev post
Weblog APIs and RSS as Weblog API
» next post
No work today, just fun
blog archive
2006: jan · feb · mar · apr may · jun · jul · aug sep · oct · nov · dec 2005: jan · feb · mar · apr may · jun · jul · aug sep · oct · nov · dec 2004: jan · feb · mar · apr may · jun · jul · aug sep · oct · nov · dec 2003: may · jun · jul · aug sep · oct · nov · dec first post: April 30, 2003 highlight views: Spammers' Choice
Jay elsewhere online
Jay Fienberg - the official home page
Wrong Notes - the music blog of the Ear Reverends
Fine & Full, aka, a fine and full burger
Sociomobilepoetextologia (moblog, currently inactive due to lack of proper mobile)
to enjoy roll
sites I like to read when I start from here
· Anastasia Fuller
· Andy Baio
· Biz Stone
· Boris Mann
· Bre Pettis
· Chris Dent
· Danny Ayers
· Dare Obasanjo
· David Czarnecki
· David Weinberger
· Don Park
· Evan Williams
· Greg Narain
· Jason Kottke
· Jim Benson
· Lucas Gonze
· Marc Canter
· Matt May
· Matt Mullenweg
· Michal Migurski
· Nancy White
· Rebecca Blood
· Reg Cheramy
· Richard MacManus
· Sam Ruby
· Shelley Powers
· Tim Bray
· danah boyd
Comment by: Danny · http://dannyayers.com
posted: May 26, 2003 10:04:03 AM
I reckon you're hitting an important nail by talking of *submitting* the post as RSS. This could be seen as an example of what Tim Berners-Lee's been on about with using parcels of RDF for web services. The requirements for what you're talking are all pretty much available - on the server you have an RDF store, to which your form posts some data. A query/view of the the store provides a blog-style page.