Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corelib is missing htmlescape #1657

Closed
DartBot opened this issue Feb 13, 2012 · 18 comments
Closed

corelib is missing htmlescape #1657

DartBot opened this issue Feb 13, 2012 · 18 comments
Labels
area-core-library SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries. type-enhancement A request for a change that isn't a bug

Comments

@DartBot
Copy link

DartBot commented Feb 13, 2012

This issue was originally filed by mattsh@google.com


Need a function to escape html somewhere in dart corelib.

Something like the following:

String htmlEscape(String text) {
  return text.replaceAll('&', '&').replaceAll(
      '>', '&gt;').replaceAll('<', '&lt;');
}

@DartBot
Copy link
Author

DartBot commented Feb 13, 2012

This comment was originally written by @seaneagan


To me it would make more sense in "dart:html", no ?

@munificent
Copy link
Member

At least right now, dart:html isn't available on the standalone VM and HTML escaping would definitely be useful there too. Ideally, I would be able to use dart:html on the server too, but that's a much bigger feature request. :)

@lrhn
Copy link
Member

lrhn commented Jun 14, 2012

It definitely belongs in some HTML-or-related library.
The dart:html library is really a document library, more than an HTML library, so it's bound to the browser.
I think we need an environment agnostic helper library for such things. Maybe it should also include HTTPStatus, which currently live in dart:io but is also useful in a browser.


Set owner to @lrhn.

@DartBot
Copy link
Author

DartBot commented Dec 10, 2012

This comment was originally written by jjinux...@google.com


What's the story with this, and how does it relate to:

http://code.google.com/searchframe#TDGadvYaD94/trunk/dart/pkg/htmlescape/lib/htmlescape.dart&q=htmlescape%20package:dart%5C.googlecode%5C.com&ct=rc&cd=1&sq=

I noticed that that library is still using pre-M1 syntax.

@DartBot
Copy link
Author

DartBot commented Jan 4, 2013

This comment was originally written by jjinux...@google.com


Can we up the priority of this? It seems like a critical function. I have several projects that need this functionality, and I've had to copy the same code into each of them.


Removed Priority-Medium label.
Added Priority-High label.

@dgrove
Copy link
Contributor

dgrove commented Jan 4, 2013

htmlescape went away as a separate library, because a single-function library doesn't make sense.

I agree with Lasse that what we really need is an agnostic library that can be used in all environments, rather than just dropping this into corelib.

@DartBot
Copy link
Author

DartBot commented Jan 8, 2013

This comment was originally written by jjinux...@google.com


I remember when this was added to Dojo. Some guy came along and added escape functions for HTML, JavaScript, etc.

@DartBot
Copy link
Author

DartBot commented Feb 4, 2013

This comment was originally written by jjinux...@google.com


Can we please fix this? Properly escaping HTML is really, really important, and not everyone uses Web UI. I don't see any packages for this on pub.

@dgrove
Copy link
Contributor

dgrove commented Feb 5, 2013

This isn't going to go into corelib. There's nothing stopping you from pushing this onto pub ;)

@DartBot
Copy link
Author

DartBot commented Feb 6, 2013

This comment was originally written by jjinux...@google.com


This seems like a really critical piece of functionality. For some reason, I just have the feeling that someone more important than me should push the package ;)

@lrhn
Copy link
Member

lrhn commented Apr 18, 2013

Removed Type-Defect label.
Added Type-Enhancement label.

@kevmoo
Copy link
Member

kevmoo commented May 12, 2013

There are 3 copies of this in pub packages (and I just copied one for my own project).

Would be good to DRY these up.

pkg/unittest/lib/html_enhanced_config.dart
pkg/unittest/lib/html_config.dart
pkg/intl/lib/bidi_formatter.dart

@floitschG
Copy link
Contributor

This feels like it should be part of dart:convert (or similar) together with all the other converters.


Added this to the M6 milestone.

@kevmoo
Copy link
Member

kevmoo commented May 28, 2013

Sure. Just somewhere shareable between client and server code.

@lrhn
Copy link
Member

lrhn commented Aug 23, 2013

Removed Priority-High label.
Added Priority-Medium label.

@floitschG
Copy link
Contributor

Removed the owner.
Removed this from the M6 milestone.
Added Ready-to-implement, Accepted labels.

@kevmoo
Copy link
Member

kevmoo commented Aug 26, 2013

@kevmoo
Copy link
Member

kevmoo commented Sep 5, 2013

r27211


Removed Ready-to-implement label.
Added Fixed label.

@DartBot DartBot added Type-Enhancement area-core-library SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries. labels Sep 5, 2013
@kevmoo kevmoo added type-enhancement A request for a change that isn't a bug and removed type-enhancement labels Mar 1, 2016
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-core-library SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries. type-enhancement A request for a change that isn't a bug
Projects
None yet
Development

No branches or pull requests

6 participants