Re: [fossil-users] Fossil Timeline RSS Feed

2010-05-31 Thread James Bremner
Joshua,

Shows how often I deal with RSS feeds!  Now I remember that this is indeed the 
standard place for them to show

I will have to look for a C or C++ library.  Or perhaps Python - I have been 
looking for an excuse to dive deeper into Python.


At a glance, it looks like the RSS feed does NOT include the username who is 
responsible for the event.  This is a snag.  I want to filter out my own 
updates, so I only get an alert when someone else posts to one of my projects.
 James Bremner



- Original Message 
From: Joshua Paine jos...@letterblock.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:12:26 PM
Subject: Re: [fossil-users] Praise for fossil

On 05/31/2010 04:59 PM, James Bremner wrote:
 It is in a little button on the browser
 navigation toolbar when at the timeline.  Wow, that is obscure!

That's the pretty standard place to find an RSS feed, actually--not 
obscure at all... *if* you know that an RSS feed is what you need.

 Well, this should simplify the design of a timeline monitor tool, if
 I can find some handy code to consume RSS feeds so I can consolidate
 and filter out my own updates.

In PHP, I have used the feed reading classes from Zend Framework with 
success.

If possible, please share the solution you come up with. This is one of 
those things I've been hoping to get around to doing eventually.

-- 
Joshua Paine
LetterBlock: Web applications built with joy
http://letterblock.com/
301-576-1920
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil Timeline RSS Feed

2010-05-31 Thread James Bremner
Well, it looks like I do not need any fancy RSS libraries.  Simply send a GET 
to base_url/timeline.rss and everything simply shows up.  Guess that is why 
the call it 'Real Simple'

But how do I get the user who created the event?

 James Bremner



- Original Message 
From: James Bremner ravenspo...@yahoo.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:26:05 PM
Subject: Re: [fossil-users] Fossil Timeline RSS Feed

Joshua,

Shows how often I deal with RSS feeds!  Now I remember that this is indeed the 
standard place for them to show

I will have to look for a C or C++ library.  Or perhaps Python - I have been 
looking for an excuse to dive deeper into Python.


At a glance, it looks like the RSS feed does NOT include the username who is 
responsible for the event.  This is a snag.  I want to filter out my own 
updates, so I only get an alert when someone else posts to one of my projects.
James Bremner



- Original Message 
From: Joshua Paine jos...@letterblock.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:12:26 PM
Subject: Re: [fossil-users] Praise for fossil

On 05/31/2010 04:59 PM, James Bremner wrote:
 It is in a little button on the browser
 navigation toolbar when at the timeline.  Wow, that is obscure!

That's the pretty standard place to find an RSS feed, actually--not 
obscure at all... *if* you know that an RSS feed is what you need.

 Well, this should simplify the design of a timeline monitor tool, if
 I can find some handy code to consume RSS feeds so I can consolidate
 and filter out my own updates.

In PHP, I have used the feed reading classes from Zend Framework with 
success.

If possible, please share the solution you come up with. This is one of 
those things I've been hoping to get around to doing eventually.

-- 
Joshua Paine
LetterBlock: Web applications built with joy
http://letterblock.com/
301-576-1920
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil Timeline RSS Feed

2010-05-31 Thread James Bremner
Oh, getting the author is easy too.  For some reason it does not show up in a 
web browser, but it is right there in the return from the GET
pre

item
  titleadbsolute link to WEBEM home page from source documentation/title
  
linkhttp://66.199.140.183/cgi-bin/webem.cgi/ci/f911d7b30ab6aa8ddb1129642e4a95b07f9be304/link
  descriptionadbsolute link to WEBEM home page from source 
documentation/description
  pubDateMon, 31 May 2010 15:21:17 GMT/pubDate
  authorjames/author
  
guidhttp://66.199.140.183/cgi-bin/webem.cgi/ci/f911d7b30ab6aa8ddb1129642e4a95b07f9be304/guid
/item
/pre

OK, I am in business!

 James Bremner



- Original Message 
From: James Bremner ravenspo...@yahoo.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:37:03 PM
Subject: Re: [fossil-users] Fossil Timeline RSS Feed

Well, it looks like I do not need any fancy RSS libraries.  Simply send a GET 
to base_url/timeline.rss and everything simply shows up.  Guess that is why 
the call it 'Real Simple'

But how do I get the user who created the event?

James Bremner



- Original Message 
From: James Bremner ravenspo...@yahoo.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:26:05 PM
Subject: Re: [fossil-users] Fossil Timeline RSS Feed

Joshua,

Shows how often I deal with RSS feeds!  Now I remember that this is indeed the 
standard place for them to show

I will have to look for a C or C++ library.  Or perhaps Python - I have been 
looking for an excuse to dive deeper into Python.


At a glance, it looks like the RSS feed does NOT include the username who is 
responsible for the event.  This is a snag.  I want to filter out my own 
updates, so I only get an alert when someone else posts to one of my projects.
James Bremner



- Original Message 
From: Joshua Paine jos...@letterblock.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:12:26 PM
Subject: Re: [fossil-users] Praise for fossil

On 05/31/2010 04:59 PM, James Bremner wrote:
 It is in a little button on the browser
 navigation toolbar when at the timeline.  Wow, that is obscure!

That's the pretty standard place to find an RSS feed, actually--not 
obscure at all... *if* you know that an RSS feed is what you need.

 Well, this should simplify the design of a timeline monitor tool, if
 I can find some handy code to consume RSS feeds so I can consolidate
 and filter out my own updates.

In PHP, I have used the feed reading classes from Zend Framework with 
success.

If possible, please share the solution you come up with. This is one of 
those things I've been hoping to get around to doing eventually.

-- 
Joshua Paine
LetterBlock: Web applications built with joy
http://letterblock.com/
301-576-1920
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil Timeline RSS Feed

2010-05-31 Thread zachtodd
Hi James,

If you want events along with usernames, you could query the Fossil repo.

select * from event where type='ci' and user!='' order by mtime;

Filling in the user field, you could exclude yourself.  

-Original Message-
From: James Bremner ravenspo...@yahoo.com
Sent: Monday, May 31, 2010 5:37pm
To: fossil-users@lists.fossil-scm.org
Subject: Re: [fossil-users] Fossil Timeline RSS Feed

Well, it looks like I do not need any fancy RSS libraries.  Simply send a GET 
to base_url/timeline.rss and everything simply shows up.  Guess that is why 
the call it 'Real Simple'

But how do I get the user who created the event?

 James Bremner



- Original Message 
From: James Bremner ravenspo...@yahoo.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:26:05 PM
Subject: Re: [fossil-users] Fossil Timeline RSS Feed

Joshua,

Shows how often I deal with RSS feeds!  Now I remember that this is indeed the 
standard place for them to show

I will have to look for a C or C++ library.  Or perhaps Python - I have been 
looking for an excuse to dive deeper into Python.


At a glance, it looks like the RSS feed does NOT include the username who is 
responsible for the event.  This is a snag.  I want to filter out my own 
updates, so I only get an alert when someone else posts to one of my projects.
James Bremner



- Original Message 
From: Joshua Paine jos...@letterblock.com
To: fossil-users@lists.fossil-scm.org
Sent: Mon, May 31, 2010 5:12:26 PM
Subject: Re: [fossil-users] Praise for fossil

On 05/31/2010 04:59 PM, James Bremner wrote:
 It is in a little button on the browser
 navigation toolbar when at the timeline.  Wow, that is obscure!

That's the pretty standard place to find an RSS feed, actually--not 
obscure at all... *if* you know that an RSS feed is what you need.

 Well, this should simplify the design of a timeline monitor tool, if
 I can find some handy code to consume RSS feeds so I can consolidate
 and filter out my own updates.

In PHP, I have used the feed reading classes from Zend Framework with 
success.

If possible, please share the solution you come up with. This is one of 
those things I've been hoping to get around to doing eventually.

-- 
Joshua Paine
LetterBlock: Web applications built with joy
http://letterblock.com/
301-576-1920
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users



  
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users