[issue11567] http.server error message format

2011-03-20 Thread Éric Araujo
Éric Araujo added the comment: Well, it is possible to disagree with the W3C on that particular point :) http://hixie.ch/advocacy/xhtml http://www.xml.com/pub/a/2004/07/21/dive.html http://www.cs.tut.fi/~jkorpela/html/empty.html http://diveintomark.org/archives/2004/01/14/thought_experiment --

[issue11567] http.server error message format

2011-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 135a0d7bc4db by Senthil Kumaran in branch '3.1': Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. http://hg.python.org/cpython/rev/135a0d7bc4db -- ___ Python tracker

[issue11567] http.server error message format

2011-03-19 Thread Senthil Kumaran
Senthil Kumaran added the comment: Ezio Melotti wrote: > This is just nitpicking, but serving XHTML as text/html is wrong. While, I thought this statement is correct and expected the Internet media-type should be something else (application/xhtml+xml), but as per w3c, it is not wrong to serv

[issue11567] http.server error message format

2011-03-19 Thread Éric Araujo
Éric Araujo added the comment: I agree with Ezio. I noticed the commit but didn’t comment: I wanted to bring up the subject of HTML-producing modules in the stdlib and advocate use of HTML 5 (for real, pragmatic reasons, not because of a mode effect—I’ll dig up a number of links that explain

[issue11567] http.server error message format

2011-03-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue11567] http.server error message format

2011-03-17 Thread Ezio Melotti
Ezio Melotti added the comment: This is just nitpicking, but serving XHTML as text/html is wrong. Also XHTML is not necessary here, so I would just use an HTML 4.01 strict doctype (and remove the xmlns). -- nosy: +ezio.melotti ___ Python tracker

[issue11567] http.server error message format

2011-03-17 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in 3.3 and 3.2. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ P

[issue11567] http.server error message format

2011-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset db4967095f10 by Senthil Kumaran in branch '3.2': Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Zlobin. http://hg.python.org/cpython/rev/db4967095f10 -- nosy: +python-dev __

[issue11567] http.server error message format

2011-03-16 Thread Gennadiy Zlobin
Gennadiy Zlobin added the comment: Hi guys, this is my first patch for the Python interpreter. Hope it is ok, but if it is not, be sure to comment and I'll fix it ASAP -- keywords: +patch Added file: http://bugs.python.org/file21262/11567.patch ___ P

[issue11567] http.server error message format

2011-03-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: go ahead. please submit a patch. -- assignee: -> orsenthil nosy: +orsenthil type: performance -> behavior versions: +Python 3.3 ___ Python tracker __

[issue11567] http.server error message format

2011-03-16 Thread gennad
gennad added the comment: I take this issue -- nosy: +gennad ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue11567] http.server error message format

2011-03-15 Thread Ivan Radigales Creus
New submission from Ivan Radigales Creus : The global variable DEFAULT_ERROR_MESSAGE on the module http.server is set to a non W3C standard value. It would be better to use something like: DEFAULT_ERROR_MESSAGE = """\ http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/