bearmini (Takashi Oguma)
- Login: bearmini
- Email: bear.mini@gmail.com
- Registered on: 01/06/2014
- Last sign in: 04/18/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/30/2014
-
02:04 AM Ruby Bug #9367: REXML::XmlDecl doesn't use user specified quotes
- Hi,
I have updated my PR https://github.com/ruby/ruby/pull/496
Please review it and comment on that.
01/20/2014
-
02:07 PM Ruby Bug #9367: REXML::XmlDecl doesn't use user specified quotes
- Hi,
I'm working on this, and ran into another issue. i.e. should we be able to control single quote or double quote for DOCTYPE? If so, how?
According to http://www.w3.org/TR/xml/#NT-doctypedecl, DOCTYPE may contain ExternalID wh...
01/09/2014
-
12:49 PM Ruby Bug #9367: REXML::XmlDecl doesn't use user specified quotes
- @duerst, @kou,
Thanks for the comments!
I'll revise my patch to use :xml_declaration_quote and back to you soon.
01/07/2014
-
11:01 AM Ruby Bug #9367: REXML::XmlDecl doesn't use user specified quotes
- A direct reason is that my customer wants to have double quotes in the xml declaration because their handcrafted 'xml lint' tool complains the xml document produced by my ruby script contains single quotes. (Their convention requires all...
01/06/2014
-
05:11 PM Ruby Bug #9367 (Closed): REXML::XmlDecl doesn't use user specified quotes
- =begin
REXML uses double quotes for quoting attributes if :attribute_quote is specified as document's context like below:
doc = REXML::Document.new
doc.context[:attribute_quote] = :quote
This looks working well on all elements ...