Page Index Toggle Pages: 1 Send TopicPrint
Hot Topic (More than 10 Replies) RSS Feed mod 1.1 beta 1 (Read 15798 times)
ironwing
God Member
*****
Offline


I love YaBB 1 Gold!

Posts: 2330
Location: Sonoran Desert
Joined: Nov 20th, 2001
RSS Feed mod 1.1 beta 1
Dec 25th, 2004 at 4:28am
Print Post  
Here is version 1.1b1 of the RSS Feed mod that creates an RSS Feed for a forum's most recent posts.  Works with SP 1.3.1 - 1.4.



The admin may set the categories and number of posts to syndicate.

You can try out a feed here, using an RSS Reader:

http://www.mineralarts.com/cgi/yabbsp1/YaBB.pl?action=rss


Details in the RSSFeedHelp file.


Changes from 1.0:
Fixed feed headers.  Feed now validates without problems.
Fixed euro symbol problem.
Fixed <yabb title> problem.
Added option to use regular YaBB thread display or simplified thread display.

Dan
  

Please include your forum address in all requests for assistance.  It greatly speeds things along.
Back to top
WWW  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: RSS Feed mod 1.1 beta 1
Reply #1 - Dec 26th, 2004 at 2:28am
Print Post  
MAybe it's the rum affecting my level of brain activity but.... what is an RSS Feed useful for. ???
  


Back to top
 
IP Logged
 
ironwing
God Member
*****
Offline


I love YaBB 1 Gold!

Posts: 2330
Location: Sonoran Desert
Joined: Nov 20th, 2001
Re: RSS Feed mod 1.1 beta 1
Reply #2 - Dec 26th, 2004 at 3:02am
Print Post  
Why, feeding your news aggregator, of course.  Grin

RSS Feeds are xml formatted documents read by news aggregators such as Read Feeder, Sharp Reader, and others.  The benefit is that you can view topic titles and usually article summaries from a bunch of different sources very quickly in a format that looks much like an email client.  The feeders poll the news feeds you select for updates, automatically.

Dan
  

Please include your forum address in all requests for assistance.  It greatly speeds things along.
Back to top
WWW  
IP Logged
 
Kong
God Member
*****
Offline


Is it just me or is my
back hairy???

Posts: 858
Joined: Aug 2nd, 2002
Gender: Male
Re: RSS Feed mod 1.1 beta 1
Reply #3 - Dec 26th, 2004 at 8:26pm
Print Post  
I'll have to take a look at it.  I know what the output of RSS looks like but never used a reader.  Can you suggest a simple, free, adware/spyware software to test? Smiley
  


Back to top
 
IP Logged
 
ccmehil
New Member
*
Offline


Life is too short! Live
it well!

Posts: 48
Location: Lippstadt
Joined: Oct 26th, 2002
Gender: Male
Re: RSS Feed mod 1.1 beta 1
Reply #4 - Dec 26th, 2004 at 9:35pm
Print Post  
BlogExpress or Abilon are good easy ones.  You can also look at http://www.snapfiles.com/freeware/misctools/fwrssreaders.html
  

Just making a little place for myself on the web and ranting every once and awhile...
Back to top
IP Logged
 
thecaretaker
Junior Member
**
Offline


I am thecaretaker

Posts: 87
Location: 1066 Country
Joined: Dec 5th, 2002
Gender: Male
Re: RSS Feed mod 1.1 beta 1
Reply #5 - Jan 2nd, 2005 at 9:58pm
Print Post  
http://www.feedreader.com/ I use feedreader. It's a nice free one! Wink
  

Growing old is mandatory. Growing up is optional!
Back to top
WWW  
IP Logged
 
ironwing
God Member
*****
Offline


I love YaBB 1 Gold!

Posts: 2330
Location: Sonoran Desert
Joined: Nov 20th, 2001
Re: RSS Feed mod 1.1 beta 1
Reply #6 - Jan 4th, 2005 at 4:18am
Print Post  
I have an alpha (really alpha) of the RSS Feed mod for YaBB 2 RC1 running on my test forum.  It validates on rss.scripting.com (feedvalidator.org is down tonight).  I would to feedback on how it works with different feed readers.

http://www.mineralarts.com/cgi/yabb2a/YaBB.pl?action=rss

Dan
  

Please include your forum address in all requests for assistance.  It greatly speeds things along.
Back to top
WWW  
IP Logged
 
DelaMn
Full Member
***
Offline


I love boardmod.org

Posts: 136
Joined: Nov 13th, 2004
Re: RSS Feed mod 1.1 beta 1
Reply #7 - Jan 4th, 2005 at 11:14pm
Print Post  
option to use regular YaBB thread display ??? (mean ... Code to patch manually from last release? )

Thanks anticipated again  Cheesy

DelaMn wrote on Dec 26th, 2004 at 7:55pm:
Thanks... what about the second question / "...option to use regular YaBB thread display or simplified thread display." thing?  Wink

so could patch manually?


  
Back to top
 
IP Logged
 
ironwing
God Member
*****
Offline


I love YaBB 1 Gold!

Posts: 2330
Location: Sonoran Desert
Joined: Nov 20th, 2001
Re: RSS Feed mod 1.1 beta 1
Reply #8 - Jan 5th, 2005 at 1:07am
Print Post  
Open the new RSS_Display.pl file and copy the new RRS_Manage and RSS_Manage2 subroutines into your old RSS_Display.pl file, overwriting the old routines.

Then find this line:
Code
Select All
		$rsstimestring = '20' . $rssyear . '-' . $rssmonth . '-' . $rssday . 'T' . $rsshour . ':' . $rssmin . ':' . $rsssec . $RSS_Timeoffset; 



and add these lines after:

Code
Select All
### set thread view format
		if( $RSS_Format == 1 ) { $rssformat = 'rssdisplay'; }else{ $rssformat = 'display'; } 



then find this line:

Code
Select All
<link>$scripturl?board=$board;action=$action;num=$tnum</link> 



and replace with this line:

Code
Select All
<link>$scripturl?board=$board;action=$rssformat;num=$tnum</link> 



Dan
  

Please include your forum address in all requests for assistance.  It greatly speeds things along.
Back to top
WWW  
IP Logged
 
DelaMn
Full Member
***
Offline


I love boardmod.org

Posts: 136
Joined: Nov 13th, 2004
Re: RSS Feed mod 1.1 beta 1
Reply #9 - Jan 8th, 2005 at 10:35pm
Print Post  
Not sure this time If I do understand the first part ...

Quote:
Open the new RSS_Display.pl file and copy the new RRS_Manage and RSS_Manage2 subroutines into your old RSS_Display.pl file, overwriting the old routines.


IŽll try anyway.

Thank you.
  
Back to top
 
IP Logged
 
Benjamin Keith
Guest


Re: RSS Feed mod 1.1 beta 1
Reply #10 - Mar 22nd, 2005 at 5:57pm
Print Post  
I can't seem to get this puppy to work.  ???

After some noobie type problems (wrong URL, forgetting to read the directions, etc etc) I still get the following in my SharpReader (good program BTW, thanks for the link!):

Error parsing RSS XML: Not a valid xml document: This is an unexpected token. The expected token is 'WHITESPACE'. Line 1, position 63.
Please try to validate this feed. If this feed validates as correct RSS, you can send an error report.


I'm willing to give access to resolve.  Please advise...

Thanks in advance!
  
Back to top
 
IP Logged
 
Squirrelman
Junior Member
**
Offline


The Squirerl Never Sleeps!

Posts: 59
Joined: Nov 8th, 2004
Gender: Male
Re: RSS Feed mod 1.1 beta 1
Reply #11 - Sep 6th, 2006 at 9:24pm
Print Post  
My YaBB version is 1.3.2

Two questions:

(1) Which version of this mod should I be using?  I loaded RSS_Feed_1.0 and it's working fine.

(2) Where is the "RSS Feed Logo" supposed to appear?  I don't see it anywhere.

Thanks in advance for your assistance.
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint