[Pkg-javascript-commits] [ltx] 30/80: Drop obsolete patch ch.
Jonas Smedegaard
dr at jones.dk
Sun Feb 28 10:50:10 UTC 2016
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository ltx.
commit bb43781526b2762d4b83dafba8bb5853eeccef50
Author: Jonas Smedegaard <dr at jones.dk>
Date: Wed Nov 30 00:00:11 2011 +0700
Drop obsolete patch ch.
---
debian/patches/020110802~cbc7c85.patch | 32 --------------------------------
debian/patches/series | 1 -
2 files changed, 33 deletions(-)
diff --git a/debian/patches/020110802~cbc7c85.patch b/debian/patches/020110802~cbc7c85.patch
deleted file mode 100644
index 8a80401..0000000
--- a/debian/patches/020110802~cbc7c85.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Description: Don't quote ' and " for vanilla text nodes
-Origin: upstream, https://github.com/astro/ltx/commit/cbc7c85
-Author: Astro <astro at spaceboyz.net>
-Last-Date: 2011-08-21
-
---- a/lib/element.js
-+++ b/lib/element.js
-@@ -197,9 +197,9 @@
- if (child.write)
- child.write(writer);
- else if (typeof child === 'string')
-- writer(escapeXml(child));
-+ writer(escapeXmlText(child));
- else
-- writer(escapeXml(child.toString()));
-+ writer(escapeXmlText(child.toString()));
- });
- writer("</");
- writer(this.name);
-@@ -216,5 +216,12 @@
- replace(/'/g, ''');
- };
-
-+function escapeXmlText(s) {
-+ return s.
-+ replace(/\&/g, '&').
-+ replace(/</g, '<').
-+ replace(/>/g, '>');
-+};
-+
- exports.Element = Element;
- exports.escapeXml = escapeXml;
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index a79fd21..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-020110802~cbc7c85.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/ltx.git
More information about the Pkg-javascript-commits
mailing list