Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

87
votes
15answers
57k views

Free XML Formatting tool [closed]

Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly? Thanks Edit ~ I am using XML Notepad on Windows ...
48
votes
14answers
45k views

Any online xml formatter or formatter in free text editor?

Any online xml formatters? Ones that properly indent the tags. Or any free Windows text editor which has a built-in xml formatter?
24
votes
9answers
18k views

Is there a text editor that formats XML files nicely?

I know there are many: Notepad2, Notepad++, even UltraEdit... But I'm looking for a special feature. I want the editor to format my XML files for human understanding. When I open an XML file saved by ...
5
votes
7answers
821 views

Is there a stylesheet or Windows commandline tool for controllable XML formatting, specifically putting attributes one-per-line?

I am searching for an XSLT or command-line tool (or C# code that can be made into a command-line tool, etc) for Windows that will do XML pretty-printing. Specifically, I want one that has the ability ...
3
votes
2answers
2k views

Export the Eclipse XML Formatting Rules?

Is there a way to export the settings defined in Window > Preferences Dialog under XML > XML Files > Editor in Eclipse 3.5 Galileo (JEE Package)? And where do Eclipse stores these settings? ...
2
votes
1answer
59 views

Add StartElement to JAXBContext marshal

I have an object x which I want to marshal into a file. xml of x : <x id="0"><f1>bla</f1><f2>bla </f2><f3>bla</f3></x> this part I figured out ... ...
2
votes
1answer
66 views

Is there a way to pretty print XML with vertical alignment?

I have a config file which has some XML like: <Presidents> <President first="George" last="Washington" number="1" year="1789" /> <President first="John" last="Adams" number="2" ...
2
votes
1answer
76 views

Preserve formatting on Configuration.Save()

I have custom ConfigurationSection and call Configuration.Save() after some modifications against it: var config = ConfigurationManager.OpenMappedExeConfiguration( new ExeConfigurationFileMap() { ...
2
votes
1answer
780 views

xml-fo pdf table : 'colspan' when the number of columns is dynamic

I'm generating a table in a pdf document using xml-fo. The number of columns is dynamic. Columns are only displayed when tests are passing. In tests I'm using variables like $var1, $var2, ... that ...
1
vote
3answers
128 views

Writing formatted XML with XmlWriter

I'm trying to write to an XML file to the isolated storage but I would like to format it like this:- <SampleData> <Item Property1="AliquaXX" /> <Item Property1="Integer" /> ...
1
vote
1answer
72 views

PHP SimpleXML echo problem

I have a radio station site on localhost, and the pages are a series of include and requires - they work well. However, on one page, a schedule one, I'm displaying within a DIV some data extracted ...
1
vote
1answer
297 views

How to preserve whitespace within an element's opening tag in XSLT

In order to avoid committing sensitive information to an SCM repository, I wrote an XSL stylesheet that removes connection string passwords from ASP.NET Web.config files. It achieves my goal of ...
1
vote
3answers
691 views

Searching for a XML-FO Processor

I been trying to find an Free/Open Source XML-FO processor that i could use in .NET applications but i havent had luck finding one. Do anyone know of one that i could use? Thanks in advance.
1
vote
1answer
159 views

Exact placement for XSL-FO

I have an item in an XML-FO page ( running through FOP ) when needs exact placement for an OCR. Whenever the page is edited (or an included page) its very difficult to get the OCR line back into ...
0
votes
1answer
23 views

How to perform XML style checking?

Unformatted XML is a problem in our build. I would like to include style checking for XML documents, primarily looking for poor indentation. What is the best tool to use? (The build uses Ant).
0
votes
0answers
10 views

are there any good advanced tutorials/books for XML-FO?

I'm doing more and more things in XML these days - and I'm finding that I would like to be able to display my documents in complicated print layouts using XML-FO -- (specifically, with more than one ...
0
votes
3answers
187 views

How to display content in xml format after xml parsing in grails?

I have a sample.xml which looks like this <?xml version="1.0" ?> <Employee> <Name>ABC</Name> <EmpId>100011</EmpId> ...
0
votes
0answers
246 views

XSL-FO: letting processor determine number-columns-spanned independetly for a text to spann across all columns

We are using XML-FO 1 and there is a following situation. There is a table with dynamic number of columns. So I use pieces of code to determine if certain column should be displayed, something like ...
0
votes
1answer
815 views

Tools to format XML in Visual Studio 2010

Is there an XML formatter available as an add-in for Visual Studio 2010? I am currently using Notepad++ and using the XML Tools plug-in to get the formatting sorted. Is there an add-in for VS2010, ...