From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Pipping Subject: Re: gitweb atom feeds broken (on repo.or.cz only?) Date: Mon, 28 Sep 2009 16:44:14 +0200 Message-ID: <4AC0CBBE.7020603@hartwork.org> References: <4ABFA258.8020301@hartwork.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: git@vger.kernel.org, Petr Baudis , Robert Buchholz To: Tay Ray Chuan X-From: git-owner@vger.kernel.org Mon Sep 28 16:56:51 2009 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1MsHeh-0005ET-Mj for gcvg-git-2@lo.gmane.org; Mon, 28 Sep 2009 16:56:48 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752486AbZI1O4i (ORCPT ); Mon, 28 Sep 2009 10:56:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752446AbZI1O4h (ORCPT ); Mon, 28 Sep 2009 10:56:37 -0400 Received: from smtprelay07.ispgateway.de ([80.67.29.7]:54815 "EHLO smtprelay07.ispgateway.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752258AbZI1O4h (ORCPT ); Mon, 28 Sep 2009 10:56:37 -0400 X-Greylist: delayed 744 seconds by postgrey-1.27 at vger.kernel.org; Mon, 28 Sep 2009 10:56:37 EDT Received: from [85.179.4.201] (helo=[192.168.0.3]) by smtprelay07.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1MsHSu-0002LR-5g; Mon, 28 Sep 2009 16:44:36 +0200 User-Agent: Thunderbird 2.0.0.22 (X11/20090820) In-Reply-To: X-Df-Sender: 874396 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: 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 tag is closed by a . It's actually a bit more, I just checked against the Relax NG schema of Atom v11 from RFC 4287. Neither nor / are allowed inside , and the '\n' isn't either. This is what we get: ============================================================================= andrea@dottout.com\n/git-favicon.png ============================================================================= This would be valid: ============================================================================= andrea@dottout.com /git-favicon.png ============================================================================= Petr, is the e-mail crippling a repo.or.cz-only thing? Sebastian