vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   RSS autodiscovery (https://vborg.vbsupport.ru/showthread.php?t=68785)

58sniper 08-26-2004 10:00 PM

RSS autodiscovery
 
This mod will trigger autodiscovery in news aggregators that support autodiscovery (most do).

In AdminCP, in the headinclude, find (usually about 3-4 lines from the top):
Code:

<meta name="description" content="$vboptions[description]" />
add the following below:
Code:

<link title="$vboptions[bbtitle] RSS Feed" href="$vboptions[bburl]/external.php?type=php" type="application/rss+xml" rel="alternate" />
That's it. Simple.

Let me know if you have any questions.

pjdaley 08-27-2004 09:35 PM

i may sound rude to some, or wierd to others... but what exactly does this do?

MrNase 08-27-2004 09:47 PM

Most news aggregators like FeedDemon have a feature that allows you to just insert the url to the website and the software detects the url to the xml file on it self and you don't need to find out where exactly the newsfeed is.

This little code snippet (its a template mod for vbulletintemplates.com) tells the software where the newsfeed is. It's really handy.

Here's a practical demonstration:

Imagin vbulletin.com has this 'hack' installed. Now you install FeedDemon and you only need to enter www.vbulletin.com/forum and FeedDemon automatically finds out where the newsfeed is. :)

SnowBot 08-27-2004 09:52 PM

This isnt a hack, its a template Mod. A nice one but still a template mod.

58sniper 08-27-2004 09:56 PM

Quote:

Originally Posted by MrNase
Most news aggregators like FeedDemon have a feature that allows you to just insert the url to the website and the software detects the url to the xml file on it self and you don't need to find out where exactly the newsfeed is.

This little code snippet (its a template mod for vbulletintemplates.com) tells the software where the newsfeed is. It's really handy.

Here's a practical demonstration:

Imagin vbulletin.com has this 'hack' installed. Now you install FeedDemon and you only need to enter www.vbulletin.com/forum and FeedDemon automatically finds out where the newsfeed is. :)

Also, some news aggregators, like News Crawler, watch IE. If you open a site with this hack installed in IE, News Crawler automatically discovers the RSS feed.

I agree, I probably should post this at vbulletintemplates.com....

Demo - turn on your news reader before visiting http://www.efhs84.com/

MrNase 08-28-2004 12:29 AM

I think it should be standard in 3.0.4 :)

ChessMess 08-29-2004 04:31 AM

Quote:

Originally Posted by MrNase
I think it should be standard in 3.0.4 :)

Feedster doesn't seem to recognize the demo you gave:

http://feedster.com/feedfinder.php?a....efhs84.com%2F

ChessMess 08-29-2004 05:29 AM

Quote:

Originally Posted by ChessMess
Feedster doesn't seem to recognize the demo you gave:

http://feedster.com/feedfinder.php?a....efhs84.com%2F

Also, how well does this work in conjunction with this mod:

https://vborg.vbsupport.ru/showthrea...2&page=1&pp=15

[vB 3.0.1] - RSS Output Mod & Icon

58sniper 08-29-2004 05:33 AM

Quote:

Originally Posted by ChessMess
Feedster doesn't seem to recognize the demo you gave:

http://feedster.com/feedfinder.php?a....efhs84.com%2F

That's because Feedster is looking for /rss.xml, which doesn't exist. I have no idea how it's coming up with THAT file name. The source code of my demo is correct.

ChessMess 08-29-2004 06:58 AM

How does it integrate with the mod I mentioned above? Since each page has its own discovery now, can your mod be modified to work with that mod?

58sniper 08-29-2004 01:55 PM

Hmmmm..... let me look into that. My mod just gives the generic external.php link. I'm sure it can be modified. Gimme some time...

Also - please click INSTALL if you guys use this.

58sniper 08-30-2004 02:47 AM

I'm going to continue this mod in the thread over at vbulletintemplates.com. Check it out at http://www.vbulletintemplates.com/mo...ead.php?t=6996

The mod now includes a conditional, as well as some other info.

buro9 09-15-2004 01:41 PM

For the record, I use a very similar technique to activate Firefox Live Bookmarks

I'm only posting this so that anyone who wants a hack to enable Live Bookmarks will realise that this achieves that too :)

michaelab 09-20-2004 01:13 PM

Quote:

Originally Posted by buro9
For the record, I use a very similar technique to activate Firefox Live Bookmarks

I've been trying to do that and can't get it to work. The RSS icon appears on the status bar and clicking it adds the live bookmark (with the correct URL) but all I get in FireFox under the bookmark is "Live bookmark feed failed to load."

I'm on vB 3.0.1 - do I need to upgrade to 3.0.3 for this to work?

btw, I have live bookmark feeds working on other sites (eg BBC News).

Any ideas??

Michael.

buro9 09-20-2004 01:54 PM

Quote:

Originally Posted by michaelab
I've been trying to do that and can't get it to work. The RSS icon appears on the status bar and clicking it adds the live bookmark (with the correct URL) but all I get in FireFox under the bookmark is "Live bookmark feed failed to load."

I'm on vB 3.0.1 - do I need to upgrade to 3.0.3 for this to work?

btw, I have live bookmark feeds working on other sites (eg BBC News).

Any ideas??

Michael.

In the headinclude template put the following, obviously modifying the URL for your forum, and the name of the forum too:

Code:


<link href="http://www.bowlie.com/forum/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="Bowlie - Latest Posts">
<if condition="$foruminfo[forumid] != ''">
<link href="http://www.bowlie.com/forum/external.php?type=rss2&amp;forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="Bowlie - Latest Posts in $foruminfo[title]">
</if>

You need full URLs, not relative.

RSS2 is prefered.

I have made it so that two feeds are available, a global one... and a per-forum one. Global feed of all latest posts is on every page, and the forum specific feed is on any page that can provide forum info (such as forumdiaply.php or showthread.php ;)).

That should work, does on mine :)

buro9 09-20-2004 01:57 PM

I'm also going to work on a Calendar RSS feed if no-one else does.

And a proper version of "Latest posts" that provides the last posts content in the RSS rather than the first post of the thread.

Oh, and in external.php, I've changed the query just below "// query last 15 threads from visible / chosen forums" to order by thread.lastpost and NOT thread.dateline. As this way the threads in the RSS match perfectly the threads in the "Get Latest" page on the forum.

58sniper 09-20-2004 02:32 PM

Quote:

Originally Posted by buro9
In the headinclude template put the following, obviously modifying the URL for your forum, and the name of the forum too:

Code:


<link href="http://www.bowlie.com/forum/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="Bowlie - Latest Posts">
<if condition="$foruminfo[forumid] != ''">
<link href="http://www.bowlie.com/forum/external.php?type=rss2&amp;forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="Bowlie - Latest Posts in $foruminfo[title]">
</if>

You need full URLs, not relative.

RSS2 is prefered.

I have made it so that two feeds are available, a global one... and a per-forum one. Global feed of all latest posts is on every page, and the forum specific feed is on any page that can provide forum info (such as forumdiaply.php or showthread.php ;)).

That should work, does on mine :)

Nice work. This would be a more generic version of the above that shouldn't require editing. Plug and play.

Code:

<if condition="$vboptions[externalrss]">
<link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts" />
<if condition="$foruminfo[forumid] != ''">
<link href="$vboptions[bburl]/external.php?type=rss2&amp;forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]" />
</if>
</if>


KW802 09-20-2004 05:34 PM

Quote:

Originally Posted by 58sniper
Nice work. This would be a more generic version of the above that shouldn't require editing. Plug and play.

Code:

<if condition="$vboptions[externalrss]">
<link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts">
<if condition="$foruminfo[forumid] != ''">
<link href="$vboptions[bburl]/external.php?type=rss2&amp;forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]">
</if>
</if>


:cool: Thanks! I just updated mine to have the forums change. I stuck mine in a else conditional though.
Code:

<if condition="$vboptions[externalrss]">
  <if condition="$foruminfo[forumid] != ''">
          <link href="$vboptions[bburl]/external.php?type=rss2&forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]">
  <else/>
          <link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts">
  </if>
</if>

I seem to remember coming across an external.php hack somewhere that will accomodate sub-forums so I'm searching for that now. BTW: Thanks to you I'm now playing around with Opera as part of my standard testing. :p

michaelab 09-20-2004 07:45 PM

Thanks guys. Upgrading to vB 3.0.3 fixed the problem. Must have been something funky in the way RSS was being generated in 3.0.1.

Michael.

ShiningArcanine 09-20-2004 09:07 PM

I wrote my own version of this:

Code:

<if condition="$vboptions[externalrss]">
<link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="<phrase 1="$vboptions[hometitle]">$vbphrase[x_dash_latest_posts]</phrase>" />
<if condition="$foruminfo[forumid]">
<link href="$vboptions[bburl]/external.php?type=rss2&amp;forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="<phrase 1="$vboptions[hometitle]" 2="$foruminfo[title]">$vbphrase[x_dash_latest_posts_in_y]</phrase>" />
</if>
</if>

It uses the phrase system and the settings in vBulletin options. Anyone who wants to use this without modifying it would want to create two custom phrases. One would be named: x_dash_latest_posts and have this content:

Code:

{1} - Latest Posts
The other would be named x_dash_latest_posts_in_y and have this content:

Code:

{1} - Latest Posts in {2}
I hope that helps someone

58sniper 09-20-2004 09:37 PM

Quote:

Originally Posted by KW802
:cool: Thanks! I just updated mine to have the forums change. I stuck mine in a else conditional though.
Code:

<if condition="$vboptions[externalrss]">
  <if condition="$foruminfo[forumid] != ''">
          <link href="$vboptions[bburl]/external.php?type=rss2&forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]">
  <else/>
          <link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts">
  </if>
</if>

I seem to remember coming across an external.php hack somewhere that will accomodate sub-forums so I'm searching for that now. BTW: Thanks to you I'm now playing around with Opera as part of my standard testing. :p

Cool! One thing I just corrected in mine was the correct XHTML closing slash. So, your example would be this:

Code:

<if condition="$vboptions[externalrss]">
  <if condition="$foruminfo[forumid] != ''">
          <link href="$vboptions[bburl]/external.php?type=rss2&forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]" />
  <else/>
          <link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts" />
  </if>
</if>


58sniper 10-01-2004 01:01 AM

Just a follow up note:

By the way, KW802 posted a modified external.php file that adds some feature and standards compliance. Check it out at

FPS_EXTERNAL.PHP -- New options added & RSS compliant version of external.php

It's a nice addition to this hack.

BigCheeze 12-15-2004 06:16 PM

Hey thanks... I just enabled RSS on my site, and installed this, and Firefox likes it :D

ataraxia 05-19-2005 04:18 PM

Quote:

Originally Posted by buro9
I'm also going to work on a Calendar RSS feed if no-one else does.

Did anything ever come of this?

An RSS feed for the Calendar would be very useful!

buro9 05-23-2005 06:31 PM

Quote:

Originally Posted by ataraxia
Did anything ever come of this?

An RSS feed for the Calendar would be very useful!

No, afraid not.

I usually come up with great ideas when I'm on the bench... and then before I get anywhere with them I'm thrown on a client site far from home.

So nope... didn't start this one.

kingwoodtalk 05-28-2005 09:01 PM

The calendar feed is a great idea. Wish there was some way I could help but am "original coding challenged". Hope something comes of this.


All times are GMT. The time now is 01:39 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01370 seconds
  • Memory Usage 1,812KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (12)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (26)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete