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

Issue 23492002: adding HtmlEscape to dart:convert (Closed)

Created:
7 years, 3 months ago by kevmoo-old
Modified:
7 years, 3 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

adding HtmlEscape to dart:convert BUG=https://code.google.com/p/dart/issues/detail?id=1657 R=blois@google.com, floitsch@google.com, rnystrom@google.com Committed: https://code.google.com/p/dart/source/detail?r=27211

Patch Set 1 #

Total comments: 7

Patch Set 2 : progress #

Patch Set 3 : chunked conversion #

Total comments: 1

Patch Set 4 : starting on modes, using string buffer #

Patch Set 5 : element mode, removed print in test #

Total comments: 10

Patch Set 6 : rebase to master #

Patch Set 7 : testing escape in first and last char #

Patch Set 8 : nits #

Patch Set 9 : optimized addSlice #

Patch Set 10 : documentation TODOs #

Total comments: 8
Unified diffs Side-by-side diffs Delta from patch set Stats (+206 lines, -36 lines) Patch
M pkg/intl/lib/bidi_formatter.dart View 2 chunks +3 lines, -13 lines 0 comments Download
M pkg/intl/lib/intl.dart View 1 chunk +2 lines, -0 lines 0 comments Download
M pkg/intl/pubspec.yaml View 1 chunk +1 line, -0 lines 0 comments Download
M pkg/unittest/lib/html_config.dart View 2 chunks +3 lines, -9 lines 0 comments Download
M pkg/unittest/lib/html_enhanced_config.dart View 1 2 3 4 5 3 chunks +3 lines, -10 lines 0 comments Download
M sdk/lib/convert/convert.dart View 1 1 chunk +1 line, -0 lines 0 comments Download
M sdk/lib/convert/convert_sources.gypi View 1 1 chunk +1 line, -0 lines 0 comments Download
A sdk/lib/convert/html_escape.dart View 1 2 3 4 5 6 7 8 9 1 chunk +100 lines, -0 lines 8 comments Download
M sdk/lib/convert/line_splitter.dart View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
A tests/lib/convert/html_escape_test.dart View 1 2 3 4 5 6 7 8 1 chunk +85 lines, -0 lines 0 comments Download
M tests/lib/convert/line_splitter_test.dart View 1 2 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 18 (0 generated)
kevmoo-old
Getting started on this...FYI at the moment
7 years, 3 months ago (2013-08-26 22:52:43 UTC) #1
kevmoo-old
This replaces copy-paste impls in pkg classes Looking at html5lib - https://github.com/dart-lang/html5lib/blob/32980d2eee3fb55e7c8d2c9abc2b70040812c206/lib/dom_parsing.dart#L135 Open questions: - ...
7 years, 3 months ago (2013-08-26 22:59:32 UTC) #2
Jennifer Messerly
https://codereview.chromium.org/23492002/diff/1/sdk/lib/convert/html.dart File sdk/lib/convert/html.dart (right): https://codereview.chromium.org/23492002/diff/1/sdk/lib/convert/html.dart#newcode13 sdk/lib/convert/html.dart:13: String convert(String data) { I wonder if this impl ...
7 years, 3 months ago (2013-08-26 23:01:28 UTC) #3
Jennifer Messerly
On 2013/08/26 23:01:28, John Messerly wrote: > https://codereview.chromium.org/23492002/diff/1/sdk/lib/convert/html.dart > File sdk/lib/convert/html.dart (right): > > https://codereview.chromium.org/23492002/diff/1/sdk/lib/convert/html.dart#newcode13 ...
7 years, 3 months ago (2013-08-26 23:02:26 UTC) #4
Lasse Reichstein Nielsen
Definitely attributeMode, but an enum, not a bool. We want both single-quoted and double-quoted, and ...
7 years, 3 months ago (2013-08-27 06:07:40 UTC) #5
Lasse Reichstein Nielsen
And we want a mode "UNKNOWN", which is the default and escapes everything, ofcourse.
7 years, 3 months ago (2013-08-27 06:10:34 UTC) #6
Bob Nystrom
Unittest changes LGTM. https://codereview.chromium.org/23492002/diff/12001/sdk/lib/convert/html_escape.dart File sdk/lib/convert/html_escape.dart (right): https://codereview.chromium.org/23492002/diff/12001/sdk/lib/convert/html_escape.dart#newcode9 sdk/lib/convert/html_escape.dart:9: class HtmlEscape extends Converter<String, String> { ...
7 years, 3 months ago (2013-08-27 18:03:57 UTC) #7
Jennifer Messerly
btw, thinking about this more, the html5 escaper might be a starting point, but it's ...
7 years, 3 months ago (2013-08-27 18:26:17 UTC) #8
kevmoo-old
Using StringBuffer, better tests, introduced enum still cranking on this. I'll let you know when ...
7 years, 3 months ago (2013-08-27 20:52:22 UTC) #9
floitsch
LGTM. Please add test that must escape the first and/or last character of a string. ...
7 years, 3 months ago (2013-08-30 15:52:00 UTC) #10
Jennifer Messerly
https://codereview.chromium.org/23492002/diff/24001/sdk/lib/convert/html_escape.dart File sdk/lib/convert/html_escape.dart (right): https://codereview.chromium.org/23492002/diff/24001/sdk/lib/convert/html_escape.dart#newcode38 sdk/lib/convert/html_escape.dart:38: var ch = text[i]; On 2013/08/30 15:52:00, floitsch wrote: ...
7 years, 3 months ago (2013-08-30 18:13:59 UTC) #11
blois
lgtm
7 years, 3 months ago (2013-09-04 15:59:58 UTC) #12
floitsch
One last request: could you please create an issue "Document html_escape" and add TODOs(issueNumber) to ...
7 years, 3 months ago (2013-09-04 16:37:28 UTC) #13
kevmoo-old
https://codereview.chromium.org/23492002/diff/24001/tests/lib/convert/html_escape_test.dart File tests/lib/convert/html_escape_test.dart (right): https://codereview.chromium.org/23492002/diff/24001/tests/lib/convert/html_escape_test.dart#newcode14 tests/lib/convert/html_escape_test.dart:14: const _OUTPUT_ATTRIBUTE = "A <test> of &nbsp; &quot;double&quot; &amp; ...
7 years, 3 months ago (2013-09-05 19:14:20 UTC) #14
kevmoo-old
Optimized addSlice in latest commit https://codereview.chromium.org/23492002/diff/24001/sdk/lib/convert/html_escape.dart File sdk/lib/convert/html_escape.dart (right): https://codereview.chromium.org/23492002/diff/24001/sdk/lib/convert/html_escape.dart#newcode76 sdk/lib/convert/html_escape.dart:76: _sink.add(_escape.convert(chunk.substring(start, end))); On 2013/08/30 ...
7 years, 3 months ago (2013-09-05 20:30:05 UTC) #15
kevmoo-old
Committed patchset #10 manually as r27211 (presubmit successful).
7 years, 3 months ago (2013-09-05 20:31:21 UTC) #16
Jennifer Messerly
drive by comments https://codereview.chromium.org/23492002/diff/5001/sdk/lib/convert/html_escape.dart File sdk/lib/convert/html_escape.dart (right): https://codereview.chromium.org/23492002/diff/5001/sdk/lib/convert/html_escape.dart#newcode10 sdk/lib/convert/html_escape.dart:10: class HtmlEscapeMode { nit: I think ...
7 years, 3 months ago (2013-09-05 20:41:36 UTC) #17
kevmoo-old
7 years, 3 months ago (2013-09-07 20:34:15 UTC) #18
Message was sent while issue was closed.
Replies a couple of John's comments.

Stay tuned for a new CL for comments.

https://codereview.chromium.org/23492002/diff/5001/sdk/lib/convert/html_escap...
File sdk/lib/convert/html_escape.dart (right):

https://codereview.chromium.org/23492002/diff/5001/sdk/lib/convert/html_escap...
sdk/lib/convert/html_escape.dart:22: const HtmlEscapeMode._('attribute', false,
true, false);
On 2013/09/05 20:41:37, John Messerly wrote:
> Shouldn't this include less than and greater than as well? even the relatively
> minimalist DOM serializer escapes those even in doube quoted attributes

The argument is that they are unneeded. Only in elements. If one wants to be
paranoid, use the default behavior.

https://codereview.chromium.org/23492002/diff/5001/sdk/lib/convert/html_escap...
sdk/lib/convert/html_escape.dart:29: const HtmlEscapeMode._(this._name,
this.escapeLtGt, this.escapeQuot,
On 2013/09/05 20:41:37, John Messerly wrote:
> named arguments to make call the definitions more readable?

Agreed.

Powered by Google App Engine
This is Rietveld 408576698