From: Lawrence A. <Law...@th...> - 2002-01-16 20:39:04
|
Anyone got the RSS feed from RecentChanges working on another site? I have been trying today. I think it is probably the site's fault (how could I doubt Jeff's code), but I was just wondering .... Lawrence-------------------------------------------------------- Confidentiality Notice The information contained in this e-mail is confidential. It is for the use of the named recipient only. If you are not the named recipient, please destroy and do not disclose the contents of this e-mail to any other person, or copy it. Thank you for your co-operation. |
From: Adam S. <ad...@pe...> - 2002-01-16 20:55:38
|
> Anyone got the RSS feed from RecentChanges working on another site? I > have been trying today. I think it is probably the site's fault (how could I doubt > Jeff's code), but I was just wondering .... not another site but it works fine in evolution's summary page. adam. |
From: Lawrence A. <la...@us...> - 2002-01-17 17:03:41
|
What is evolution?? Can I see the summary page with the wiki feed on it anywhere? Lawrence. At 20:55 16/01/2002, you wrote: > > Anyone got the RSS feed from RecentChanges working on another site? I > > have been trying today. I think it is probably the site's fault (how > could I doubt > > Jeff's code), but I was just wondering .... > >not another site but it works fine in evolution's summary page. > >adam. > > >_______________________________________________ >Phpwiki-talk mailing list >Php...@li... >https://lists.sourceforge.net/lists/listinfo/phpwiki-talk |
From: Jeff D. <da...@da...> - 2002-01-16 21:14:06
|
Lawrence Akka said: > Anyone got the RSS feed from RecentChanges working on another site? I > have been trying today. I think it is probably the site's fault (how > could I doubt Jeff's code), but I was just wondering .... What sort of trouble are you having? If you have a working RecentChanges page, it should "just work". If it doesn't, it's probably the fault of Jeff's code.... |
From: Lawrence A. <la...@us...> - 2002-01-17 17:02:59
|
I don't have a publicly viewable example at the moment. I can see the RSS page if click on the RSS icon on RecentChanges. However, I have a problem if I try to use the RSS feed on another site which is supposed to display RSS headlines (a bit like my.netscape used to). Nothing shows up. Now, I am perfectly prepared to believe that the fault lies with the other site, although it seems to have no problem with Linux Today/ Free BSD feeds and others, but I was just interested to know if anyone has got the wiki RSS feed incorporated into a site anywhere. In the meantime, I'll continue to bug hunt. Lawrence At 21:14 16/01/2002, you wrote: >Lawrence Akka said: > > Anyone got the RSS feed from RecentChanges working on another site? I > > have been trying today. I think it is probably the site's fault (how > > could I doubt Jeff's code), but I was just wondering .... > >What sort of trouble are you having? > >If you have a working RecentChanges page, it should "just work". If it >doesn't, it's probably the fault of Jeff's code.... > > > > >_______________________________________________ >Phpwiki-talk mailing list >Php...@li... >https://lists.sourceforge.net/lists/listinfo/phpwiki-talk |
From: Jeff D. <da...@da...> - 2002-01-17 17:16:14
|
Lawrence Akka said: > > However, I have a problem if I try to use the RSS feed on another site > which is supposed to display RSS headlines (a bit like my.netscape used > to). Nothing shows up. There are two flovors of RSS: RSS 1.0 (which is a well-defined, cleanly-extensible, subset of RDF) and RSS 0.9x (which started as a subset of RDF and quickly evolved to a hodge-podge mish-mash of adhoc not necessarily so well thought out stuff). (Can you tell which one I like?) In any case, PhpWiki only produces RSS 1.0. Some apps may not like that. As always, if you've got any examples of problems, I'd like to see them... |
From: Lawrence A. <la...@us...> - 2002-01-17 17:44:55
|
I think the problem is a 1.0/0.9 incompatibility The site can only manage 0.9, or possible 0.91 Hmmm ... At 17:16 17/01/2002, Jeff Dairiki wrote: >Lawrence Akka said: > > > > However, I have a problem if I try to use the RSS feed on another site > > which is supposed to display RSS headlines (a bit like my.netscape used > > to). Nothing shows up. > >There are two flovors of RSS: RSS 1.0 (which is a well-defined, >cleanly-extensible, subset of RDF) and RSS 0.9x (which started as a subset >of RDF and quickly evolved to a hodge-podge mish-mash of adhoc not >necessarily so well thought out stuff). (Can you tell which one I like?) > >In any case, PhpWiki only produces RSS 1.0. Some apps may not like that. > >As always, if you've got any examples of problems, I'd like to see them... > > > > >_______________________________________________ >Phpwiki-talk mailing list >Php...@li... >https://lists.sourceforge.net/lists/listinfo/phpwiki-talk |
From: Jeff D. <da...@da...> - 2002-01-17 17:58:18
|
Lawrence Akka said: > I think the problem is a 1.0/0.9 incompatibility > > The site can only manage 0.9, or possible 0.91 > > Hmmm ... I suspect there's on on-line converter somewhere which could be used to convert 1.0 feeds to 0.9x feeds on the fly. (But I don't know where it is...) It would be simple enough to write one (using Perls XML::RSS or similar) The problem with 0.9x (for wiki use) is that there's no clean way to include standard wiki meta-information. That said, I don't think it would be a big job to hack some sort of 0.9x support into PhpWiki. (I, for one, am not going to do it right now though --- to many other fish on the plate.) (See MeatBall:ModWiki for our latest efforts at standard wiki extensions for RSS 1.0.) |