Actions
Bug #6213
closedBuilder::XmlMarkup drops html_safe
Bug #6213:
Builder::XmlMarkup drops html_safe
Status:
Third Party's Issue
Assignee:
-
Target version:
-
ruby -v:
1.9.2
Backport:
Actions
Added by eike.rb (Eike Dierks) over 14 years ago. Updated over 14 years ago.
What is Builder::XmlMarkup?
I guess it is the builder gem.
shyouhei (Shyouhei Urabe) wrote:
I guess it is the builder gem.
Hi Shyouhei,
you're probably right that this is in a third party gem,
but the xml builder is quite a central gem.
so you might want to give me some advice,
to whom I'd should report this?
Thinking about that,
I'd really want to get the builder into the core of ruby.
So that we can improve on the builder within here.
I'd like to improve the builder, so that it would work nicely
with the html_safe of rails3
Which actually boils down to not escaping things,
that do have the safe flag set.
And declaring all output of the xmlbuilder html_safe
by definition.
It was not really easy to inject into the current xmlbuilder.
And it's not yet really safe.
I want to get the builder into the core of ruby (and rails)
and to make it a first line aproach for building markup.
And I want to make it really safe.
I had a close look at the code base of the builder,
(it works quite well as of today)
But we might need to rewrite that.
But the builder concept is big!
eike.rb (Eike Dierks) wrote:
you're probably right that this is in a third party gem,
but the xml builder is quite a central gem.
so you might want to give me some advice,
to whom I'd should report this?
Why don't you google it?
=begin
"metadata" in builder-3.0.0.gem contains:
authors:
Hi nobu,
I wrote to jim
I want to make this builder concept
into the core of ruby.
I just love this idea,
of an object of being in full controll
of all and any messages send to it.
That's a proxy