Tagged Questions
0
votes
0answers
22 views
How do you indent and format an XML file in a Win 8 app?
I've got some code that generates an Windows::Data::Xml::Dom::XmlDocument^ in a win 8 app
XmlDocument^ document = ref new XmlDocument();
auto A = document->CreateElement("elemA");
...
0
votes
0answers
17 views
Reformatting an XML with IntelliJ
I have an XML file with many tags that are clumped together, rather than being separated by \r\n. When I try to use IntelliJ to reformat the code using the reformat code command, it doesn't ...
-1
votes
1answer
96 views
How to add Conditional Formatting to an XML / Excel file?
I'm generating an Excel file by writing the XML for it. I am almost done, but I can't get the conditional formatting to work the way I want.
I want to apply a condition to certain cells. E.g. for ...
-3
votes
2answers
91 views
Why does XML look differently in notepad++ and notepad? [closed]
UPDATE
Ok, so the reason the files look differently is because the EOL(End Of Line) is different in UNIX and Windows format. Notepad can not handle UNIX EOL so it places the XML all on one line. ...
0
votes
1answer
32 views
Is it Ok to do this? Store all variables in datagridview
sorry if this is a silly question but I am still learning the No Nos of programing.
I am creating an application that handles a fair amount of data that is stored in an xml file.
The xml file file ...
0
votes
0answers
22 views
Unformatted XML Nodes When Adding To Existing File
I am having issues trying to maintain my formatting within an XML file whenever I add a new node to the file. For example, if I create the XML file initially from scratch, the formatting is correct ...
0
votes
1answer
61 views
xmlgregoriancalendar formatting in MM/dd/yyyy
I have a variable of type date in the format MM/dd/yyyy. I need to convert the tempdate to xmlgregoriancalendar type in the same format i.e., MM/dd/yyyy.
The default format when created using ...
0
votes
3answers
76 views
remove EOLs and spaces between two tags in xml files
I have a lot (more than 50) xml files with some lines (more than 30/40 per files) with incorrect formatting :
example, this:
<TAG1>
<TAG_TO_FORMAT>
a_random_string
...
0
votes
1answer
39 views
Updating XML Node Changes XML Formatting
I am trying to update an XML document and replace the contents of a single node, however, after I save the XML file, my formatting goes all skew.
This is my code:
Public Sub UpdateSettingsXML(ByRef ...
0
votes
0answers
58 views
How to render dynamically formatted text via FOP XSLT/XML Translation
We have an application that inserts legalese at the end of FOP-generated PDF documents. Depending on which client we're running the app for, the disclaimer can be an extended block of text that takes ...
0
votes
1answer
84 views
Changing empty XML elements to elements with self-closing tags
I have a few (~5) large (~1000 lines) XML files with many elements like this:
<Foo Bar="Baz">
</Foo >
I want them all to become like this:
<Foo Bar="Baz" />
Is there a tool or ...
-1
votes
1answer
80 views
xml not providing proper nodes
Hello and thanks in advance.
I have been stuck for a few days now on an issue of loading XML data and parsing into an assoc array. I finally decided to just embed the XML configuration data right ...
0
votes
1answer
67 views
how to build a better looking XML with XStream in Java?
I've created a main() method in a class to test the construction of a XML file.
public static void main(String[] args) {
createXmlEmail();
}
And this is the method that builds the XML file.
...
0
votes
0answers
133 views
Html.fromHtml Incorrectly Formatting HTML String pulled from XML content
everyone. I have a quick question about displaying an HTML string in an android TextView as plain text. The HTML formatted content is pulled from a blog's xml feed and stored in a String field of my ...
4
votes
2answers
89 views
HTML is to HAML as XSLT is to …?
I just discovered HAML, and love its succinctness and readability. Is there any kind of equivalent for XSLT? In particular, I would love something that makes it easier to distinguish between the ...
1
vote
1answer
1k views
Remove standalone=“yes” from jaxb generated xml
public final String getMessage() {
JAXBContext jaxbContext;
StringWriter sw = new StringWriter();
try {
jaxbContext = ...
0
votes
1answer
64 views
How do i export text with formatting into an xml file, which i am exporting from powerpoint?
If there is a text like
"This is a random text, this should be going to xml.
This is the second line with a single sentence.
And this is the 3rd paragraph. Text is just a collection of **words**."
...
1
vote
2answers
104 views
JaxB gMonth validation error
I have the XMLGregorianCalander for storing a month
@XmlElement(name = "Month")
@XmlSchemaType(name = "gMonth")
protected XMLGregorianCalendar month;
I get the following error when unmarshalling
...
2
votes
1answer
226 views
How to get a particular url value into a xsl variable in Content Query web part - Sharepoint 2010
I am using Sharepoint 2010 Content Query Webpart(CQWP) to display a out of the box discussion board list on a page. I have customized the look of CQWP by changing the ItemStyle.xsl file. One of my ...
1
vote
1answer
50 views
XML formatting conventions: Why leave a space before />?
I’ve seen it in several places and e.g. the Eclipse XML auto-formatting does it, too: Put a space before the closing /> of an empty element.
Having
<element attribute="value"/>
would be ...
1
vote
3answers
2k views
HTML Formatting in RichTextBox
I've been working with HTML strings obtained from an XML file. I'm trying to figure out a way to display these strings in a richtextbox with formatting.
So
e.g.
<p>This is a ...
1
vote
0answers
56 views
Line breaks (text wraps) in Action Script 3
I have an RSS reader built in Flash using AS3 which displays three headlines from a site which open up their respective pages when clicked. The issue I'm having is that the XML titles are not wrapping ...
2
votes
2answers
182 views
SQL Server XML Query formatting
When I query SQL Server with a FOR XML statement, I get the expected the result in the following format...that is without proper indentation ---
...
1
vote
0answers
18 views
Format XML on save in eclipse? [duplicate]
Possible Duplicate:
Eclipse: auto format XML files on save
I know this can be done with Java files, and newer ADT versions update XML. But for a non Android developer is it possible to make ...
0
votes
1answer
269 views
How to format (write) XML strings in Eclipse in multiple rows?
I can't find if there is a way to write very long strings in XML in multiple lines without affecting string behavior in the code.
I have FAQ section and Answers to some questions are EG 3-4 ...
2
votes
2answers
358 views
format an xml string in Ruby
given an xml string like this :
<some><nested><xml>value</xml></nested></some>
what's the best option(using ruby) to format it readable like :
<some>
...
2
votes
2answers
224 views
How to get IntelliJ IDEA to make correct indentation of xml tags with attributes on multiple lines?
Code:
| - caret
<element attr1="1"
attr2="2"
attr3="3">|</element>
What i expect to see after pressing enter:
<element attr1="1"
attr2="2"
...
1
vote
0answers
278 views
Printing Apache Commons XML Configuration pretty
I am trying to work with the Apache Commons Configuration XML class and I think I have a basic configuration writer working. Now I need to have the XML output indented correctly.
I have tried ...
0
votes
4answers
449 views
Writing XML String with proper formatting?
Please pardon my lack of proper terminology, as I'm sure there's a term for this. I'm writing XML text using raw strings (not with any type of XML builder/parser, for ease of use). However, I'm facing ...
1
vote
2answers
70 views
why is eclipse formatting my xml file on save
When I save an XMl document, eclipse formats it (badly). I wish to turn it off. I have checked the preferences for shortcuts assigned to ctrl+s, the xml file prefs and more but I am unable to find ...
2
votes
1answer
90 views
indent XML inner data with Transformer
I'm writing an XML file with this tutorial. I applied
transformer.setOutputProperty("{http://xml.apache.org/xalan}indent-amount", "4");
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, ...
1
vote
1answer
208 views
Eclipse XML Formatter broken
When I want to format my pom.xml the following happens:
From
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
...
0
votes
1answer
173 views
ODT and OpenOffice.org: Apply formatting to text under a text:span using text:class-names attribute?
I'm trying to apply some simple formatting to text, but it isn't working. The example is below and passes a RNG validator. I'm using Apache OpenOffice3.4 and ODT1.2 flat document.
The ODT spec says ...
0
votes
2answers
21 views
Format XML from B2B into HTML on the fly
I am new to XML and I was hoping someone could point me in the right direction on this. So an order comes in from our partner company, B2B turns it into XML and gives it back to us. It would more then ...
0
votes
1answer
367 views
How to force java xml dom to produce newline after <?xml version=“1.0” encoding=“UTF-8”?>?
I use this code to enable newlines:
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
But I get ...
5
votes
4answers
109 views
What is the proper way to store a file name in XML?
I'm using XDocument to cache a list of files.
<file id="20" size="244318208">a file with an &ersand.txt</file>
In this example, I used XText, and let it automatically escape ...
0
votes
2answers
227 views
Wildcard formatting in XML & XSLT
Here's the XML file:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="2.xsl" ?>
<root>
<shop>
<person>
<employee>
...
0
votes
2answers
116 views
XML and XSLT apply-templates select
Here's the XML file:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="2.xsl" ?>
<root>
<shop>
<person>
<employee>
...
1
vote
2answers
1k views
Removing duplicate elements with XSLT
I need to eliminate duplicate elements from my XML using a specific node (ItemID)
My XML Looks as follows;
<XML>
<Line>
<SupplierID>Waltons</SupplierID>
...
1
vote
0answers
116 views
Eclipse: how to format all xml files in workspace?
I greatly appreciate the functionality of Eclipse to apply code formatter to all projects in workspace, however it works only for Java files, I'd like now to apply formatter to all XML files. And ...
1
vote
1answer
139 views
C# XML Formatting mistake in code-generated XML output
So I have a file that already exists, and I read this file and add some nodes to it. Due to the nature of the processing required, I have my code in a loop, so for each row in a given data table, I ...
1
vote
1answer
132 views
How to clean up or convert odd XML characters and formatting?
I have an XML file that contains some odd formatting, such as:
<?xml version=3D3D"1.0" encoding=3D3D"ISO-8859-1"?>
Notice the "3D3D"s. Plus, throughout the rest of the file, the lines break ...
0
votes
1answer
344 views
SQL Server XML Value formatting newline
T-SQL XML value loses new line formats
I have XML file loaded into SQL server. I query this file to extract the nodes with value.
The problem is the new line characters are lost while selection. How ...
1
vote
1answer
109 views
Removing/compacting superfluous XML/HTML tags from command line?
Consider this snippet, obtained from an export:
<!--l. 266--><p class="indent" >
<span
class="ptmr8t-x-x-90">“</span><span
class="ptmri8t-x-x-90">Blah ...
0
votes
2answers
158 views
What's a good XML format to store a directed graph?
The graph is composed of many vertices each of which have some properties, and directed edges between two vertices.
What's a good XML format to store such?
<graph>
<vertices>
...
1
vote
1answer
430 views
Xquery result not correctly formatted
I've just started using Xquery with Xqilla.
I want my result to be returned with correct indentation and newlines.
I have a list of directors called $duplicates, and I want to fetch all movie titles ...
0
votes
3answers
409 views
Perl formatted output xml
I need to format my output to xml. Let´s say I get number in parameters and I want that this numbers means how much spaces would be there from previous parent element. For example number 2:
<?xml ...
1
vote
2answers
170 views
Eclipse XML formatting changes order of tags?
I just noticed something strange. If I have this XML:
<level number="7" background="background_5">
and I press CTRL-SHIFT-F (Format) the code suddenly changes to this:
<level ...
0
votes
1answer
43 views
Special Requirement for Formatting an XML Article
My client is requesting something very special. Let's take the following XML as an example:
<?xml version="1.0"?>
<article>
<paragraph>
<w p='0'>This</w>
...
1
vote
3answers
130 views
Show xml in current/new window
I have a view displaying data from a model. My model contains a string property which is actually some xml. I would like to display this xml in my view in a simple div (or in a new page) but it's ...

