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-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


All times are GMT. The time now is 02:00 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.01337 seconds
  • Memory Usage 1,751KB
  • 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
  • (8)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete