9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] rss replacement
@ 2006-08-08  0:57 Skip Tavakkolian
  2006-08-08 17:18 ` Micah Stetson
  0 siblings, 1 reply; 7+ messages in thread
From: Skip Tavakkolian @ 2006-08-08  0:57 UTC (permalink / raw)
  To: 9fans

i think an rss replacement in plan9 (or inferno) would be
relatively easy, useful and a good awarness building tool.
would anyone who uses or is involved in production/delivery
of rss care to offer an opinion?



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08  0:57 [9fans] rss replacement Skip Tavakkolian
@ 2006-08-08 17:18 ` Micah Stetson
  2006-08-08 17:34   ` Anselm R. Garbe
  0 siblings, 1 reply; 7+ messages in thread
From: Micah Stetson @ 2006-08-08 17:18 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> i think an rss replacement in plan9 (or inferno) would be
> relatively easy, useful and a good awarness building tool.
> would anyone who uses or is involved in production/delivery
> of rss care to offer an opinion?

Aside from not using XML, how would a plan9-ish RSS replacement look
different from RSS?

Micah


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08 17:18 ` Micah Stetson
@ 2006-08-08 17:34   ` Anselm R. Garbe
  2006-08-08 17:44     ` Skip Tavakkolian
  2006-08-08 17:55     ` Micah Stetson
  0 siblings, 2 replies; 7+ messages in thread
From: Anselm R. Garbe @ 2006-08-08 17:34 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Tue, Aug 08, 2006 at 10:18:12AM -0700, Micah Stetson wrote:
> >i think an rss replacement in plan9 (or inferno) would be
> >relatively easy, useful and a good awarness building tool.
> >would anyone who uses or is involved in production/delivery
> >of rss care to offer an opinion?
> 
> Aside from not using XML, how would a plan9-ish RSS replacement look
> different from RSS?

I think cat(1) and ls(1) would do the job quite fine, assumed
that the filename correponds to a headline, and the file
contents contain the associated document...

Regards,
-- 
 Anselm R. Garbe  ><><  www.ebrag.de  ><><  GPG key: 0D73F361


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08 17:34   ` Anselm R. Garbe
@ 2006-08-08 17:44     ` Skip Tavakkolian
  2006-08-08 18:44       ` Christoph Lohmann
  2006-08-08 17:55     ` Micah Stetson
  1 sibling, 1 reply; 7+ messages in thread
From: Skip Tavakkolian @ 2006-08-08 17:44 UTC (permalink / raw)
  To: 9fans

>> Aside from not using XML, how would a plan9-ish RSS replacement look
>> different from RSS?
> 
> I think cat(1) and ls(1) would do the job quite fine, assumed
> that the filename correponds to a headline, and the file
> contents contain the associated document...

yep. and no pushing, that means the content is always fresh
because you're getting it from the source (via aggregators).
could also build a Mail (acme interface not upas) ui to it.

authentication could follow russ' model for sources; readers
can be 'none' and syndicators require a login.

syndication is done with either exportfs or a "drawterm" like
gizmo from other os.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08 17:34   ` Anselm R. Garbe
  2006-08-08 17:44     ` Skip Tavakkolian
@ 2006-08-08 17:55     ` Micah Stetson
  1 sibling, 0 replies; 7+ messages in thread
From: Micah Stetson @ 2006-08-08 17:55 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> I think cat(1) and ls(1) would do the job quite fine, assumed
> that the filename correponds to a headline, and the file
> contents contain the associated document...

Duh...  Maybe I was still asleep this morning.  I couldn't come up
with that for anything.  I'm not sure I like having the headline as
the file name, but I see where you're going.

Micah


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08 17:44     ` Skip Tavakkolian
@ 2006-08-08 18:44       ` Christoph Lohmann
  2006-08-08 19:21         ` Skip Tavakkolian
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Lohmann @ 2006-08-08 18:44 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Good day.

Am Tue, 8 Aug 2006 10:44:56 -0700
Skip Tavakkolian <9nut@9netics.com> schrieb:

> > I think cat(1) and ls(1) would do the job quite fine, assumed
> > that the filename correponds to a headline, and the file
> > contents contain the associated document...
> 
> yep. and no pushing, that means the content is always fresh
> because you're getting it from the source (via aggregators).
> could also build a Mail (acme interface not upas) ui to it.

News(1) seems to be a good solution. What is needed, is a newsfs,
that registers internally, when a entry was entered, so you are
able to cp(1) one newfs to another and touch(1) is not able to
bring up old news.

 % 9fs sources;
 % news /n/sources/news/9fans;
 Someone wrote:
	My Plan 9 is better.
 Someone else wrote:
	Mine is even more better.
 % news /n/sources/news/patch;
 Patch add-mozilla:
	Added Mozilla to the default distribution.
 Patch add-mono:
	Added Mono to the default distribution.

So you can simply add it to your profile, if you want. This is a idea
and not yet implemented.

Sincerely,

Christoph




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [9fans] rss replacement
  2006-08-08 18:44       ` Christoph Lohmann
@ 2006-08-08 19:21         ` Skip Tavakkolian
  0 siblings, 0 replies; 7+ messages in thread
From: Skip Tavakkolian @ 2006-08-08 19:21 UTC (permalink / raw)
  To: 9fans

> News(1) seems to be a good solution. What is needed, is a newsfs,
> that registers internally, when a entry was entered, so you are
> able to cp(1) one newfs to another and touch(1) is not able to
> bring up old news.

right, i forgot that /acme/news is already there; probably the right
start for the ui.

i'm not sure if you'd need news(1); if incoming (exported by other
plan9 or drawterm) 9news were posted to /srv/9news.$syndicator then
aggregation would be a matter of building the right ns.



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-08-08 19:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-08  0:57 [9fans] rss replacement Skip Tavakkolian
2006-08-08 17:18 ` Micah Stetson
2006-08-08 17:34   ` Anselm R. Garbe
2006-08-08 17:44     ` Skip Tavakkolian
2006-08-08 18:44       ` Christoph Lohmann
2006-08-08 19:21         ` Skip Tavakkolian
2006-08-08 17:55     ` Micah Stetson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).