Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Unified Diff: sdk/lib/convert/html.dart

Issue 23492002: adding HtmlEscape to dart:convert (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/convert/convert_sources.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/html.dart
diff --git a/sdk/lib/convert/html.dart b/sdk/lib/convert/html.dart
new file mode 100644
index 0000000000000000000000000000000000000000..88474725a5fa6e64cc725f47b928548b534bc95b
--- /dev/null
+++ b/sdk/lib/convert/html.dart
@@ -0,0 +1,20 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+part of dart.convert;
+
+const HTML_ESCAPE = const HtmlEscape();
+
+class HtmlEscape extends Converter<String, String> {
+
+ const HtmlEscape();
+
+ String convert(String data) {
Jennifer Messerly 2013/08/26 23:01:28 I wonder if this impl should be based on HTML5 spe
Lasse Reichstein Nielsen 2013/08/27 06:07:40 We could have different escapes for different cont
Jennifer Messerly 2013/08/27 18:26:17 Using an enum for context SGTM. For attribute cont
+ return data.replaceAll("&", "&amp;")
+ .replaceAll("<", "&lt;")
+ .replaceAll(">", "&gt;")
+ .replaceAll('"', "&quot;")
+ .replaceAll("'", "&apos;");
Lasse Reichstein Nielsen 2013/08/27 06:07:40 This is horribly inefficient. It's ok as a first g
Jennifer Messerly 2013/08/27 18:26:17 +1
kevmoo-old 2013/08/27 20:52:23 Done.
kevmoo-old 2013/08/27 20:52:23 Done.
+ }
+}
« no previous file with comments | « sdk/lib/convert/convert_sources.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698