[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-09-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Daniel Friesen  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||mediawiki-bugs@nadir-seen-f
   ||ire.com
 Resolution||INVALID

--- Comment #3 from Daniel Friesen  
2012-09-23 14:23:25 UTC ---
I'm going to just INVALID this. It's months old. We output HTML5 with . And 1.16 is obsolete.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-04-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Mark A. Hershberger  changed:

   What|Removed |Added

   Priority|Unprioritized   |Lowest
 CC||m...@everybody.org

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-04-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

hods9000-...@yahoo.co.uk changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-04-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

--- Comment #2 from hods9000-...@yahoo.co.uk 2012-04-13 13:10:03 UTC ---
(In reply to comment #1)
> Because it's in html5 mode (And html5 apparently allows you to have XHTML doc
> type, well still being an html5 document - see r59741. Basically this tricks 
> an
> XML parser into thinking its valid XML, well still being valid HTML5 at the
> same time). If you validate it is html5 it should have less errors and still 
> be
> conforming (I think anyways).
> 
> In any case if you really don't like it, you can put one of the following two
> things in LocalSettings.php :
> 
> $wgWellFormedXml = false;
> 
> This would make it output  instead of xhtml strict, which the
> validator might choke on less (however, both should be technically equally
> valid i think). However, this could break bots that want to think the document
> is xml, due to undefined entities. Probably not an issue unless you use things
> like pyWikipediaBot (I think) which parse pages as XML
> 
> Alternatively you can do:
> 
> $wgHtml5 = false;
> 
> Which will turn off html5 mode (and thus it will stop using some html5
> features), and restore the previous doctype (transitional by default, but
> configurable in LocalSettings.php)
> 
> In 1.17, we stop outputting html entities, which makes the xml well-formedness
> thingy less of an issue, so we just output  all the time, which
> makes this a non-issue. ($wgWellFormedXml still controls if we use some html5
> features that are invalid in xml, but starting 1.17 the html5 doctype is 
> always
> used when in html5 mode regardless of what $wgWellFormedXml is)
> 
> Thus I can't imagine we're going to change anything as the issue goes away on
> 1.17, so I'm going to close this invalid. (but feel free to re-open if you
> don't think i should close it)

Hi, I tried using both pieces of code you gave me but neither worked.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-04-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Krinkle  changed:

   What|Removed |Added

Version|1.16|1.16.x

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2012-04-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Krinkle  changed:

   What|Removed |Added

Version|1.16.5  |1.16

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2011-06-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Bawolff  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bawolff...@gmail.com
 Resolution||INVALID

--- Comment #1 from Bawolff  2011-06-11 19:22:07 UTC ---
Because it's in html5 mode (And html5 apparently allows you to have XHTML doc
type, well still being an html5 document - see r59741. Basically this tricks an
XML parser into thinking its valid XML, well still being valid HTML5 at the
same time). If you validate it is html5 it should have less errors and still be
conforming (I think anyways).

In any case if you really don't like it, you can put one of the following two
things in LocalSettings.php :

$wgWellFormedXml = false;

This would make it output  instead of xhtml strict, which the
validator might choke on less (however, both should be technically equally
valid i think). However, this could break bots that want to think the document
is xml, due to undefined entities. Probably not an issue unless you use things
like pyWikipediaBot (I think) which parse pages as XML

Alternatively you can do:

$wgHtml5 = false;

Which will turn off html5 mode (and thus it will stop using some html5
features), and restore the previous doctype (transitional by default, but
configurable in LocalSettings.php)

In 1.17, we stop outputting html entities, which makes the xml well-formedness
thingy less of an issue, so we just output  all the time, which
makes this a non-issue. ($wgWellFormedXml still controls if we use some html5
features that are invalid in xml, but starting 1.17 the html5 doctype is always
used when in html5 mode regardless of what $wgWellFormedXml is)

Thus I can't imagine we're going to change anything as the issue goes away on
1.17, so I'm going to close this invalid. (but feel free to re-open if you
don't think i should close it)

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29349] MediaWiki 1.16.5 does not produce valid XHTML

2011-06-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29349

Reedy  changed:

   What|Removed |Added

Summary|MediaWiki 1.16.5 does not   |MediaWiki 1.16.5 does not
   |product valid XHTML |produce valid XHTML

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l