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

Side by Side 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, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/convert/convert_sources.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of dart.convert;
6
7 const HTML_ESCAPE = const HtmlEscape();
8
9 class HtmlEscape extends Converter<String, String> {
10
11 const HtmlEscape();
12
13 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
14 return data.replaceAll("&", "&amp;")
15 .replaceAll("<", "&lt;")
16 .replaceAll(">", "&gt;")
17 .replaceAll('"', "&quot;")
18 .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.
19 }
20 }
OLDNEW
« 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