Revision: 6719
http://winmerge.svn.sourceforge.net/winmerge/?rev=6719&view=rev
Author: gerundt
Date: 2009-05-08 16:59:58 +0000 (Fri, 08 May 2009)
Log Message:
-----------
BUG: [ 2783477 ] Generated Report: Inaccurate DOCTYPE
Modified Paths:
--------------
branches/R2_12/Docs/Users/ChangeLog.txt
branches/R2_12/Src/MergeDoc.cpp
Modified: branches/R2_12/Docs/Users/ChangeLog.txt
===================================================================
--- branches/R2_12/Docs/Users/ChangeLog.txt 2009-05-08 16:51:01 UTC (rev 6718)
+++ branches/R2_12/Docs/Users/ChangeLog.txt 2009-05-08 16:59:58 UTC (rev 6719)
@@ -7,6 +7,7 @@
Add more C/C++ types to syntax highlight (#2776705)
Bugfix: Reports had same left/right descriptions (#2772646)
Bugfix: When conflict file saved trailing line-ending was lost (#2550412)
+ Bugfix: File compare HTML reports use invald DOCTYPE (#2783477)
WinMerge 2.12.2 - 2009-04-01 (r6625)
Disable folder compare tree-view by default (#2714968)
Modified: branches/R2_12/Src/MergeDoc.cpp
===================================================================
--- branches/R2_12/Src/MergeDoc.cpp 2009-05-08 16:51:01 UTC (rev 6718)
+++ branches/R2_12/Src/MergeDoc.cpp 2009-05-08 16:59:58 UTC (rev 6719)
@@ -2897,8 +2897,8 @@
String header =
Fmt(
- _T("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n")
- _T("\t\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n")
+ _T("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n")
+ _T("\t\"http://www.w3.org/TR/html4/loose.dtd\">\n")
_T("<html>\n")
_T("<head>\n")
_T("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|