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

Side by Side Diff: sdk/lib/convert/html_escape.dart

Issue 23492002: adding HtmlEscape to dart:convert (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: chunked conversion 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') | sdk/lib/convert/line_splitter.dart » ('j') | 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> {
Bob Nystrom 2013/08/27 18:03:57 Document all of this.
10
11 const HtmlEscape();
12
13 String convert(String data) => _convert(data);
14
15 StringConversionSink startChunkedConversion(
16 ChunkedConversionSink<String> sink) {
17
18 if (sink is! StringConversionSink) {
19 sink = new StringConversionSink.from(sink);
20 }
21 return new _HtmlEscapeSink(sink);
22 }
23
24 static String _convert(String data) {
25 return data.replaceAll("&", "&amp;")
26 .replaceAll("<", "&lt;")
27 .replaceAll(">", "&gt;")
28 .replaceAll('"', "&quot;")
29 .replaceAll("'", "&apos;")
30 .replaceAll('\u00A0', '&nbsp;');
31 }
32
33 }
34
35 class _HtmlEscapeSink extends StringConversionSinkBase {
36 final StringConversionSink _sink;
37
38 _HtmlEscapeSink(this._sink);
39
40 void addSlice(String chunk, int start, int end, bool isLast) {
41 _sink.add(HtmlEscape._convert(chunk.substring(start, end)));
42 if (isLast) _sink.close();
43 }
44
45 void close() => _sink.close();
46 }
OLDNEW
« no previous file with comments | « sdk/lib/convert/convert_sources.gypi ('k') | sdk/lib/convert/line_splitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698