* gitweb atom feeds broken (on repo.or.cz only?)
@ 2009-09-27 17:35 Sebastian Pipping
2009-09-28 7:23 ` Tay Ray Chuan
0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Pipping @ 2009-09-27 17:35 UTC (permalink / raw)
To: git, Petr Baudis; +Cc: Robert Buchholz
hello git list, hello petr!
i noticed that the atom feeds generated by repo.or.cz's gitweb (e.g.
[1]) show no content in firefox 3.5.2. this seems to be due to invalid
xml in it as shown by running [1] through feedvalidator, results at [2].
their rss neighbors seemed not to be affected where i looked.
a fix would be cool still, as the atom feeds contain more detailed content.
sorry for the noise in case repo.or.cz runs customized atom generation.
sebastian
[1] http://repo.or.cz/w/dottout.git?a=atom
[2]
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Frepo.or.cz%2Fw%2Fdottout.git%3Fa%3Datom
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-09-27 17:35 gitweb atom feeds broken (on repo.or.cz only?) Sebastian Pipping
@ 2009-09-28 7:23 ` Tay Ray Chuan
2009-09-28 14:44 ` Sebastian Pipping
0 siblings, 1 reply; 7+ messages in thread
From: Tay Ray Chuan @ 2009-09-28 7:23 UTC (permalink / raw)
To: Sebastian Pipping; +Cc: git, Petr Baudis, Robert Buchholz
Hi,
On Mon, Sep 28, 2009 at 1:35 AM, Sebastian Pipping
<webmaster@hartwork.org> wrote:
> i noticed that the atom feeds generated by repo.or.cz's gitweb (e.g.
> [1]) show no content in firefox 3.5.2. this seems to be due to invalid
> xml in it as shown by running [1] through feedvalidator, results at [2].
it's a case of a misspelled tag. In the <author> tag <B> is closed by a </b>.
--
Cheers,
Ray Chuan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-09-28 7:23 ` Tay Ray Chuan
@ 2009-09-28 14:44 ` Sebastian Pipping
2009-10-13 12:14 ` Sebastian Pipping
0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Pipping @ 2009-09-28 14:44 UTC (permalink / raw)
To: Tay Ray Chuan; +Cc: git, Petr Baudis, Robert Buchholz
Tay Ray Chuan wrote:
>> i noticed that the atom feeds generated by repo.or.cz's gitweb (e.g.
>> [1]) show no content in firefox 3.5.2. this seems to be due to invalid
>> xml in it as shown by running [1] through feedvalidator, results at [2].
>
> it's a case of a misspelled tag. In the <author> tag <B> is closed by a </b>.
It's actually a bit more, I just checked against the Relax NG schema of
Atom v11 from RFC 4287.
Neither <span> nor <b>/<B> are allowed inside <name>, and the '\n' isn't
either. This is what we get:
=============================================================================
<author><name>andrea<!-- @
-->@dottout<span><B>.</b></span>com</name></author>\n<icon>/git-favicon.png</icon>
=============================================================================
This would be valid:
=============================================================================
<author>
<name>andrea<!-- @ -->@dottout.com</name>
</author>
<icon>/git-favicon.png</icon>
=============================================================================
Petr, is the e-mail crippling a repo.or.cz-only thing?
Sebastian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-09-28 14:44 ` Sebastian Pipping
@ 2009-10-13 12:14 ` Sebastian Pipping
2009-10-14 14:17 ` Petr Baudis
0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Pipping @ 2009-10-13 12:14 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
Petr, any news on this one?
I just check and it still seems broken.
Sebastian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-10-13 12:14 ` Sebastian Pipping
@ 2009-10-14 14:17 ` Petr Baudis
2009-10-14 14:35 ` Sebastian Pipping
0 siblings, 1 reply; 7+ messages in thread
From: Petr Baudis @ 2009-10-14 14:17 UTC (permalink / raw)
To: Sebastian Pipping; +Cc: git
On Tue, Oct 13, 2009 at 02:14:48PM +0200, Sebastian Pipping wrote:
> Petr, any news on this one?
>
> I just check and it still seems broken.
Fixed, it's a HTML::Email::Obfuscate bug.
--
Petr "Pasky" Baudis
A lot of people have my books on their bookshelves.
That's the problem, they need to read them. -- Don Knuth
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-10-14 14:17 ` Petr Baudis
@ 2009-10-14 14:35 ` Sebastian Pipping
2009-10-14 14:40 ` Petr Baudis
0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Pipping @ 2009-10-14 14:35 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
Petr Baudis wrote:
> On Tue, Oct 13, 2009 at 02:14:48PM +0200, Sebastian Pipping wrote:
>> Petr, any news on this one?
>>
>> I just check and it still seems broken.
>
> Fixed, it's a HTML::Email::Obfuscate bug.
Though the feed works in Firefox now I wouldn't call it fixed, yet,
As I elaborated earlier in this thread the Atom you generate is not
valid. I cannot put it better than feedvalidator:
http://feedvalidator.org/check.cgi?url=http%3A%2F%2Frepo.or.cz%2Fw%2Fdottout.git%3Fa%3Datom
Please fix that, too.
Sebastian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: gitweb atom feeds broken (on repo.or.cz only?)
2009-10-14 14:35 ` Sebastian Pipping
@ 2009-10-14 14:40 ` Petr Baudis
0 siblings, 0 replies; 7+ messages in thread
From: Petr Baudis @ 2009-10-14 14:40 UTC (permalink / raw)
To: Sebastian Pipping; +Cc: git
On Wed, Oct 14, 2009 at 04:35:17PM +0200, Sebastian Pipping wrote:
> Petr Baudis wrote:
> > On Tue, Oct 13, 2009 at 02:14:48PM +0200, Sebastian Pipping wrote:
> >> Petr, any news on this one?
> >>
> >> I just check and it still seems broken.
> >
> > Fixed, it's a HTML::Email::Obfuscate bug.
>
> Though the feed works in Firefox now I wouldn't call it fixed, yet,
>
> As I elaborated earlier in this thread the Atom you generate is not
> valid. I cannot put it better than feedvalidator:
>
> http://feedvalidator.org/check.cgi?url=http%3A%2F%2Frepo.or.cz%2Fw%2Fdottout.git%3Fa%3Datom
>
> Please fix that, too.
I'm sorry, I don't have time for fixing that. Feel free to send me a
patch.
Kind regards,
--
Petr "Pasky" Baudis
A lot of people have my books on their bookshelves.
That's the problem, they need to read them. -- Don Knuth
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-10-14 14:42 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-27 17:35 gitweb atom feeds broken (on repo.or.cz only?) Sebastian Pipping
2009-09-28 7:23 ` Tay Ray Chuan
2009-09-28 14:44 ` Sebastian Pipping
2009-10-13 12:14 ` Sebastian Pipping
2009-10-14 14:17 ` Petr Baudis
2009-10-14 14:35 ` Sebastian Pipping
2009-10-14 14:40 ` Petr Baudis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).