ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
769
|
Thu Nov 11 01:04:01 2004 |
| Marc Neiger | m.neiger@synergie-inf.com | Info | All | 2.5.4-6 | Re: Announcement of RSS feeds |
Great, but what's the corresponding URL for the RSS feed itself
> I implemented experimentally RSS feeds into Elog. Before releasing this new
> addition, I would like to collect some experience with it. This forum now
> supports RSS feeds, for which you can subscribe with a RSS feed reader like
> Mozilla Firefox. Please give it a try and send me any feedback.
>
> For an introduction to RSS feeds, please see
>
> http://www.webreference.com/authoring/languages/xml/rss/intro/ |
773
|
Mon Nov 15 09:54:45 2004 |
| Marc Neiger | m.neiger@synergie-inf.com | Info | All | 2.5.4-6 | Re: Announcement of RSS feeds |
IE 6 chokes on the XML, below is what I get for
http://midas.psi.ch/elogs/Forum/elog.rdf
(sorry this is in french).
So I assume all rss reader parsing the file with the MS XML parser shall also
have a problem, this is the case with Avant Browser integrated RSS reader.
Cheer,
Marc
------------------------------------------------------
La page XML ne peut pas être affichée
Impossible d'afficher l'entrée XML en utilisant la feuille de style XSL.
Corrigez l'erreur, puis cliquez sur le bouton Actualiser ou réessayez
ultérieurement.
--------------------------------------------------------------------------------
Un caractère incorrect a été trouvé dans un contenu de texte. Erreur de
traitement de la ressource http://midas.psi.ch/elog...
<title>Re: $message id gives wrong value - Gernman traslalation of Back, posted
by Ulrich Tr |
774
|
Mon Nov 15 12:51:44 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Info | All | 2.5.4-6 | Re: Announcement of RSS feeds |
The problems came from the French accents and the German umlauts. I changed the XML
charset, so this should be fine now. New version is under CVS. |
777
|
Mon Nov 15 13:10:12 2004 |
| Marc Neiger | m.neiger@synergie-inf.com | Info | Windows | All | 2.5.4-6 | Re: Announcement of RSS feeds |
Hi Stefan,
The parsing now seems OK, IE downloads the XML and the RSS reader of Avant
Browser
accepts the feed.
I still have a problem however : below the header, only the first 3 items
are displayed and it seems only partially.
I included the HTML result so you can "visualize" what's going on (this may
also be on the avant browser side !).
Cheers,
Marc
> The problems came from the French accents and the German umlauts. I
changed the XML
> charset, so this should be fine now. New version is under CVS. |
Attachment 1: ELOG_Forum.htm
|
784
|
Mon Nov 15 15:43:37 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Info | Windows | All | 2.5.4-6 | Re: Announcement of RSS feeds |
> I included the HTML result so you can "visualize" what's going on (this may
> also be on the avant browser side !).
I believe it is on the avant browser side. Below is the same shown in the
SharpReader browser, where everything is displayed correctly. |
Attachment 1: sharpreader.gif
|
|
799
|
Wed Nov 17 18:52:40 2004 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | Bug report | Linux | 2.5.4-6 | compiling elog on AMD64 |
When compiling elogd on AMD64 (in 64 bit mode) there are many
warnings like these:
src/regex.c:3769: warning: cast from pointer to integer of different size
src/regex.c:3769: warning: cast from pointer to integer of different size
src/regex.c:3775: warning: cast to pointer from integer of different size
The reason is the (int) cast, which (I think) is not necessary. |
800
|
Thu Nov 18 09:40:25 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Linux | 2.5.4-6 | Re: compiling elog on AMD64 |
> When compiling elogd on AMD64 (in 64 bit mode) there are many
> warnings like these:
>
> src/regex.c:3769: warning: cast from pointer to integer of different size
> src/regex.c:3769: warning: cast from pointer to integer of different size
> src/regex.c:3775: warning: cast to pointer from integer of different size
>
> The reason is the (int) cast, which (I think) is not necessary.
Unfortunately I don't have a 64-bit compiler to try. Can you please check if
elogd.c has similar warnings or only regex.c? The ones in elogd.c I can fix,
but regex.c is straight from the GNU C library, so we would have to wait intil
they fix it. Or can you get it from the 64-bit C library? The point is that I
need the source code, so that I can compile it under Windows as well. Can you
try to compile elogd without regex.c, like
gcc -g -O -W -Wall -o elogd src/elogd.c
If that works fine, we don't have to compile regex.c under linux. But I guess
it's still needed fot Solaris and other non-GNU Unix brands. |
802
|
Sun Nov 21 00:46:28 2004 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | Bug report | Linux | 2.5.4-6 | Re: compiling elog on AMD64 |
> > When compiling elogd on AMD64 (in 64 bit mode) there are many
> > warnings like these:
> >
> > src/regex.c:3769: warning: cast from pointer to integer of different size
> > src/regex.c:3769: warning: cast from pointer to integer of different size
> > src/regex.c:3775: warning: cast to pointer from integer of different size
> >
> > The reason is the (int) cast, which (I think) is not necessary.
>
> Unfortunately I don't have a 64-bit compiler to try. Can you please check if
> elogd.c has similar warnings or only regex.c?
elogd.c shows the same warnings.
> The ones in elogd.c I can fix,
> but regex.c is straight from the GNU C library, so we would have to wait intil
> they fix it. Or can you get it from the 64-bit C library? The point is that I
> need the source code, so that I can compile it under Windows as well. Can you
> try to compile elogd without regex.c, like
>
> gcc -g -O -W -Wall -o elogd src/elogd.c
This works OK.
|