SF.net SVN: geany:[4312] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Wed Oct 14 12:43:51 UTC 2009


Revision: 4312
          http://geany.svn.sourceforge.net/geany/?rev=4312&view=rev
Author:   ntrel
Date:     2009-10-14 12:43:51 +0000 (Wed, 14 Oct 2009)

Log Message:
-----------
Fix wrong escaping (patch by dmaphy, thanks - closes 2878138).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/data/templates/files/file.html
    trunk/data/templates/files/file.php

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-10-14 12:21:18 UTC (rev 4311)
+++ trunk/ChangeLog	2009-10-14 12:43:51 UTC (rev 4312)
@@ -8,6 +8,8 @@
    plugins/geanyfunctions.h:
    Add document_get_notebook_page() to API.
    Minor edits of dox.
+ * data/templates/files/file.html, data/templates/files/file.php:
+   Fix wrong escaping (patch by dmaphy, thanks - closes 2878138).
 
 
 2009-10-13  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/data/templates/files/file.html
===================================================================
--- trunk/data/templates/files/file.html	2009-10-14 12:21:18 UTC (rev 4311)
+++ trunk/data/templates/files/file.html	2009-10-14 12:43:51 UTC (rev 4312)
@@ -1,16 +1,16 @@
 {fileheader}
-<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
-  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
-<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
 <head>
 	<title>{untitled}</title>
-	<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\" />
-	<meta name=\"generator\" content=\"{geanyversion}\" />
+	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
+	<meta name="generator" content="{geanyversion}" />
 </head>
 
 <body>
 	
 </body>
+
 </html>
-

Modified: trunk/data/templates/files/file.php
===================================================================
--- trunk/data/templates/files/file.php	2009-10-14 12:21:18 UTC (rev 4311)
+++ trunk/data/templates/files/file.php	2009-10-14 12:43:51 UTC (rev 4312)
@@ -1,20 +1,18 @@
-
 <?php
 {fileheader}
 ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
-<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
-  \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
-<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
-
 <head>
 	<title>{untitled}</title>
-	<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\" />
-	<meta name=\"generator\" content=\"{geanyversion}\" />
+	<meta http-equiv="content-type" content="text/html;charset=utf-8" />
+	<meta name="generator" content="{geanyversion}" />
 </head>
 
 <body>
 	
 </body>
-</html>
 
+</html>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list