Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
269 views

How can I insert an xml comment with Groovy MarkupBuilder?

I would like to insert comments into my xml document with a Groovy MarkupBuilder. How is it possible?
2
votes
1answer
154 views

Omit empty attributes with groovy DOMBuilder

Groovy's MarkupBuilder has an omitNullAttributes and an omitEmptyAttributes. But DOMBuilder doesn't. This is the code I have >>> def xml = DOMBuilder.newInstance() >>> def ...
2
votes
1answer
330 views

Detecting first and last item inside a Groovy each{} closure

I am using Groovy's handy MarkupBuilder to build an HTML page from various source data. One thing I am struggling to do nicely is build an HTML table and apply different style classes to the first ...
2
votes
1answer
782 views

Create groovy xml with an “envelop” - add nodes in the middle of a xml structure

(sorry for the weird title...) I want to use the groovy builder system to create a xml. My problem is that i want to have some kind of envelop around, which the user dont has to care about. An ...
2
votes
3answers
953 views

Can I just hand groovy's markupbuilder a node list?

I'm doing some XML processing with groovy. Specifically, I'm inhaling an XML file via XMLParser, doing a whole batch of in-memory processing, and then serializing the resulting data back out to XML ...
1
vote
1answer
71 views

MarkupBuilder Rendering From String

I'm using MarkupBuilder to render some HTML from a taglib like so (stripped down for clarity): def formContainer = new MarkupBuilder(out) formConainer.form() { input() { } input() { } } Now ...
1
vote
1answer
71 views

Passing Parent Element to Method from MarkupBuilder

I have a custom taglib in Grails and I am using MarkupBuilder to help drive some dynamic forms. I need to pull some of this form creation code out into their own classes/methods so they can be reused ...
1
vote
1answer
331 views

Use of Namespaces in Groovy MarkupBuilder

I want have the following output: <?xml version="1.0" encoding="UTF-8"?> <structure:structuralDataRoot xmlns:register="http://www.test.ch/register/1" ...
0
votes
1answer
67 views

Omit empty elements with groovy StreamingMarkupBuilder

Groovy's MarkupBuilder has an omitNullAttributes and an omitEmptyAttributes. But StreamingMarkupBuilder doesn't. I have tag like that one <foo /> Could I omit them from final output? P.S. ...
0
votes
1answer
63 views

Grails: Creating XML nodes with variables

I can't seem to figure out how to create nodes that are not hardcoded. Example: def aval = "someValue" def xml = new MarkupBuilder() xml.outTag(attr: aval) // outTag is hardcoded My problem is: ...
0
votes
1answer
61 views

MarkupBuilder Rendering HTML SELECT Element

I have the following in a TagLib select(name:"foo", value: "1") { option(value: "1", "hoo") option(value: "2", "goo") } When the page renders using this taglib, I'm not getting a SELECT ...
0
votes
4answers
157 views

How to write xml into a file using MarkupBuilder

I created an xml using MarkupBuilder in groovy but how do i write it into a xml file in my project dir E:\tomcat 5.5\webapps\csm\include\xml def writer = new StringWriter() def xml = new ...
0
votes
1answer
272 views

how to create xml document with special node names with groovy markupbuilder

I am building an ant script with groovy markupbuilder. Unfortunately markupbuilder doesn't allow me to create nodes with name 'target' (no problem with targetee), becauase it throws me Caught: ...
0
votes
1answer
623 views

replace XmlSlurper tag with arbitrary XML

I am trying to replace specific XmlSlurper tags with arbitrary XML strings. The best way I have managed to come up with to do this is: #!/usr/bin/env groovy import groovy.xml.StreamingMarkupBuilder ...
0
votes
1answer
333 views

Remove newlines from MarkupBuilder result

Is there a way to control groovy's MarkupBuilder's output and filter out the newline characters? I have code like below: import groovy.xml.MarkupBuilder def writer = new StringWriter() def xml = new ...
0
votes
2answers
2k views

How to convert XML file in UTF-8 using Groovy builder StreamingMarkupBuilder

Even if the question subject seems complicated, the issue is quite simple. I create an XML file with the following script: def xmlFile = new File("file-${System.currentTimeMillis()}.xml") mb = new ...