T O P I C R E V I E W |
nickw |
Posted - 02 May 2006 : 14:33:10 Hi all,
Please can someone show me how to edit the header of snitz so that I can publish Feeds in IE7. I see someone implemented this here recently....
<moved to="MOD Add-On Forum (W/O Code)" by="Shaggy" />
< |
15 L A T E S T R E P L I E S (Newest First) |
AnonJr |
Posted - 04 May 2006 : 14:24:17 Glad you got everything working. < |
nickw |
Posted - 04 May 2006 : 13:13:42 That worked! :) Thanks< |
nickw |
Posted - 02 May 2006 : 20:14:20 Cool... I'll give it a go ;) < |
AnonJr |
Posted - 02 May 2006 : 17:49:11 I disabled the "toast" notification. While searching for coding answers it gets rather anoying... but with it enabled or disabled I don't see the notification in the status bar...
I do appreciate the help, but this isn't a high priority - just really annoying.
Nick, I'd imagine that it would be similar to what you did to add the forum:'## RSS Mod for IE Glow
'## Add this line so that feed icon glows even when there is no page specified
Response.Write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">" & vbNewline
'## Marcels Code for feeds to change live with forum ID.
if Instr(strScriptName,"default.asp") > 0 or Instr(strScriptName,"forums.asp") > 0 or Instr(strScriptName,"forum.asp") > 0 or Instr(strScriptName,"index.asp") > 0 then
if request.querystring("forum_id") <> "" and IsNumeric(forum_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp?FORUM_ID=" & request.querystring("FORUM_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
elseif request.querystring("cat_id") <> "" and IsNumeric(cat_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp?CAT_ID=" & request.querystring("CAT_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
else
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">"
end if
end if < |
MarcelG |
Posted - 02 May 2006 : 17:24:21 quote: Originally posted by AnonJr
Got the latest version of Maxthon myself (or is 1.5.2b21 no longer the latest?), and the RSS reader still doesn't pick up Oxle or my own (which I temporarily hacked back to v0.92 to see if that was the issue). Wonder whats up...
The 'toast style' notification doesn't allways pop up. You should however see the small soapy icon in the bottom status bar: For example like this: (click for larger version) < |
nickw |
Posted - 02 May 2006 : 16:48:01 Nearly there.... I have now added your code, and a single line so that when you have myforum/ (no default.asp etc) it shows the default feed in IE7.
I ended up with this:
'## RSS Mod for IE Glow
'## Add this line so that feed icon glows even when there is no page specified
Response.Write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">" & vbNewline
'## Marcels Code for feeds to change live with forum ID.
if Instr(strScriptName,"default.asp") > 0 or Instr(strScriptName,"forums.asp") > 0 or Instr(strScriptName,"forum.asp") > 0 or Instr(strScriptName,"index.asp") > 0 then
if request.querystring("forum_id") <> "" and IsNumeric(forum_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp?FORUM_ID=" & request.querystring("FORUM_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
else
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://web2.minasi.com/forum/rss.asp"" title=""Minasi Forum Feed (Main)"">"
end if
end if
The only thing remaining is to get it working by forum category... could this be done?
In your Debt.< |
AnonJr |
Posted - 02 May 2006 : 16:41:12 Got the latest version of Maxthon myself (or is 1.5.2b21 no longer the latest?), and the RSS reader still doesn't pick up Oxle or my own (which I temporarily hacked back to v0.92 to see if that was the issue). Wonder whats up...< |
nickw |
Posted - 02 May 2006 : 16:38:12 Oh Man!
First, for other people like me who are not used to the code... there are TWO sections in the code that refer to the copyright, put your code under the second...
Marcel! Thanks man... appreciate this! Ill report back.< |
MarcelG |
Posted - 02 May 2006 : 16:35:52 Guys, sorry to dissapoint you but the oxle rss feeds do show up in Maxthon, at least in the latest release of Maxthon. Works as a charm. And, Nick, yes, the code I used changes the rss feed to the forumspecific rss feed. For example on oxle.com:
<link rel="alternate" type="application/rss+xml" href="http://oxle.com/rss.asp" title="RSS: oxle.com"> on the subforum 'the pub' on oxle.com
<link rel="alternate" type="application/rss+xml" href="http://oxle.com/rss.asp?FORUM_ID=35" title="RSS: oxle - the pub">
The code I use is this (removed the language dependant code):
if Instr(strScriptName,"default.asp") > 0 or Instr(strScriptName,"forums.asp") > 0 or Instr(strScriptName,"forum.asp") > 0 or Instr(strScriptName,"index.asp") > 0 then
if request.querystring("forum_id") <> "" and IsNumeric(forum_id) = true then
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://oxle.com/rss.asp?FORUM_ID=" & request.querystring("FORUM_ID") & """ title=""RSS: " & GetNewTitle(strScriptName) & """>"
else
response.write "<link rel=""alternate"" type=""application/rss+xml"" href=""http://oxle.com/rss.asp"" title=""RSS: oxle.com"">"
end if
end if I've that piece of code in inc_header.asp in the second block of HTML meta tags.< |
nickw |
Posted - 02 May 2006 : 16:26:55 I See the IE instructions for HTML are here if that helps? http://blogs.msdn.com/rssteam/articles/PublishersGuide.aspx < |
nickw |
Posted - 02 May 2006 : 16:23:41 Anything is possible. For the moment I have added another menu item to the default linking to the feed. I really wish I was a coder then I could write a Mod :)
Until then... I'll have to wait for you clever lot :)< |
AnonJr |
Posted - 02 May 2006 : 16:20:55 I wonder if the RSS version is at issue here. I just took a closer look and noticed that the Snitz RSS feed is <rss version="0.92"> and mine is <rss version="2.0">
I can manually add the feed to my reader and all is good, it just doesn't get picked up automatically. Since it hasn't been a high priority at the moment, I haven't really thought too much about it; but since we've got some people ready to look at it... < |
nickw |
Posted - 02 May 2006 : 16:05:13 Its odd, I also have this same issue. Oxle does not show, but the one here does... Mind you, I cannot get either to work on my forum :(< |
AnonJr |
Posted - 02 May 2006 : 15:58:12 I never was able to get any of my RSS readers to pick it up...
Funny thing is that the one built in to Maxthon picks up the Snitz RSS, but not the Oxle or the one I set up internally.... same syntax and all.
nickw, it is possible to have a different feed for each forum. It appears MarcelG has it set up that way on Oxle. The main thing is that he's generating essentially the same code you posted above... just having it modified depending on where you are and such.< |
nickw |
Posted - 02 May 2006 : 15:54:33 For the moment, to make it simple, I can see that this forum as this code added just below the licence:
<link rel="alternate" type="application/rss+xml" href="http://forum.snitz.com/forum/rssfeed.asp" title="Active Topics on Snitz Forums 2000">
So, how can I add a simular line to our forums?< |