active questions tagged pretty-print - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T08:28:53Zhttp://stackoverflow.com/feeds/tag/pretty-printhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/352098/how-to-pretty-print-json-script5How to pretty-print JSON script?AnC2008-12-09T08:20:45Z2009-12-17T09:48:55Z
<p>Is there a (*nix) command-line script to format JSON in human-readable form?</p>
<p>Basically, I want it to transform the following:</p>
<pre><code>{ foo: "lorem", bar: "ipsum" }
</code></pre>
<p>... into something like this:</p>
<pre><code>{
foo: "lorem",
bar: "ipsum"
}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1909401/combine-lxml-xslt-prettyprint-with-strip-space0Combine lxml XSLT pretty_print with strip-spaceUltraNurd2009-12-15T18:25:59Z2009-12-15T18:51:32Z
<p>I'm cleaning up some gross XML, and so I've had pretty_print = True set in the call to etree.tostring() on my lxml output of the XSL transform. However, that left me with a few junk whitespace nodes from the original input, so I added</p>
<pre><code><xsl:strip-space elements="*"/>
</code></pre>
<p>...but that completely collapses all whitespace, ignoring pretty print. Is there an easy way to make strip-space just apply to the input, and still get lxml to apply pretty print?</p>
http://stackoverflow.com/questions/1898829/nokogiri-pretty-printing0Nokogiri pretty printingJarsen2009-12-14T03:58:18Z2009-12-14T20:43:44Z
<p>Sorry for this question, apparently all my googling and api searching skills must be failing me. I've written a web crawler in ruby and I'm using Nokogiri::HTML to parse the page. I need to print the page out and while messing around in IRB I noticed a pretty_print method. However it takes a parameter and I can't figure out what it wants. If someone could point me in the right direction I would be greatly appreciate it.</p>
<p>Thanks.</p>
<p>EDIT:
I should clarify that my crawler is caching the html of the webpages and writing it to files on my local machine. I would like to "pretty print" the html so that it looks nice and properly formatted when I do so.</p>
http://stackoverflow.com/questions/1840148/php-simplexml-new-line2PHP SimpleXML new lineMatt2009-12-03T14:21:15Z2009-12-03T15:01:11Z
<p>Hi,
I have created a XML file using PHP's simple XML, saved the file. When opening the file in php using fopen and printing the contents. my XML looks like this: (see below)</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<home><orderList><delivery_cost>0.00</delivery_cost><delivery_surname>TEST</delivery_surname><delivery_postcode>1234</delivery_postcode><status>1</status></orderList></home>
</code></pre>
<p>I want the xml file looking all indented and on new lines for each element. Does anybody know how to do this? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1824366/how-to-handle-widespread-code-format-changes-in-a-git-repository11How to handle widespread code format changes in a git repositoryMarkusQ2009-12-01T06:30:17Z2009-12-01T09:34:13Z
<p>We have a project with around 500,000 lines of code, managed with git, much of it several years old. We're about to make a series of modifications to bring the older code into conformance with the developer community's current standards and best practices, with regards to naming conventions, exception handling, indentation, and so forth.</p>
<p>You can think of it as something between pretty printing and low level/mechanical refactoring.</p>
<p>This process is likely to touch almost every line of code in the code base (~85%), and some lines will be subject to as many as five modifications. All of the changes are intended to be semantically neutral.</p>
<p>
<li>Is there any way to make the changes transparent to git blame, etc. so that when looking at the code a month from now we'll see the commit the logic was introduced in, not the one in which the indentation or capitalization was changed?
<li>What's the best way to pull merges from forks that have not undergone this process? My present plan would be to have a script clone the forked repo, apply the automated process to it and its base, diff them, then apply the diff. But I'd love to have a cleaner answer.
<li>Are there any other problems of this sort that I'm not seeing, and if so what can be done to mitigate them? I'm figuring that git bisect, etc. should be fine, git log, etc. crossing the great divide will be annoying unless you are careful, and git diff will be hopeless, but I'm not convinced I'm not overlooking another pain point.</p>
http://stackoverflow.com/questions/1820908/how-to-turn-off-the-eclipse-code-formatter-for-certain-sections-of-java-code1How to turn off the Eclipse code formatter for certain sections of Java code?Greg Mattes2009-11-30T16:38:36Z2009-11-30T20:06:00Z
<p>I've got some Java code with SQL statements written as Java strings (please no OR/M flamewars, the embedded SQL is what it is - not my decision).</p>
<p>I've broken the SQL statements semantically into several concatenated strings over several lines of code for ease of maintenance. So instead of something like:</p>
<pre><code>String query = "SELECT FOO, BAR, BAZ FROM ABC WHERE BAR > 4";
</code></pre>
<p>I have something like:</p>
<pre><code>String query =
"SELECT FOO, BAR, BAZ" +
" FROM ABC" +
" WHERE BAR > 4";
</code></pre>
<p>This style makes the SQL much easier to read, especially for larger queries.</p>
<p>This issue generalizes beyond the particular example of SQL. Any code that is written with any vertical formatting is susceptible to destruction by a pretty printer.</p>
<p>Now, some project members use the Eclipse editor and the semantic formatting is often destroyed when they format an entire source file.</p>
<p><strong>Is there a way to instruct Eclipse to ignore certain lines of source with respect to formatting?</strong></p>
<p>I'm looking for something like a special comment that toggles the Eclipse formatter. Ideally, such a comment could be configurable to be whatever we choose, and other formatters could be programmed to respect it as well:</p>
<pre><code>// STOP-ECLIPSE-FORMATTING
String query =
"SELECT FOO, BAR, BAZ" +
" FROM ABC" +
" WHERE BAR > 4";
// START-ECLIPSE-FORMATTING
</code></pre>
<p>Obviously, one "solution" is to have our team members standardize on some external formatter like <a href="http://www.triemax.com/products/jalopy/" rel="nofollow">Jalopy</a> or <a href="http://www.jindent.com/" rel="nofollow">JIndent</a>, but that's not what this question is about (also, not my decision on this project): I'm specifically looking for a way to avoid the Eclipse formatter on an ad-hoc basis.</p>
<p>Ideally, a solution will allow me to insert instructions for the Eclipse formatter <strong>without requiring team members using Eclipse to do any IDE reconfiguration</strong> (other than possibly choosing a formatter agnostic command comment: <code>STOP-ECLIPSE-FORMATTING</code> → <code>STOP-FORMATTING</code>).</p>
http://stackoverflow.com/questions/851797/pretty-print-for-informix-4gl-code0Pretty Print for (Informix-)4gl codepeterm2009-05-12T08:45:54Z2009-11-20T22:00:02Z
<p>Hi,</p>
<p>i'm searching for a pretty print program (script, code, whatever) for Informix-4GL sources.</p>
<p>Do you know any ? Than you, Peter.</p>
http://stackoverflow.com/questions/1750470/hibernate-outofmemoryerror-persisting-blob-when-printing-log-message0Hibernate: OutOfMemoryError persisting Blob when printing log message paul2009-11-17T17:31:58Z2009-11-17T19:18:14Z
<p>I have a Hibernate Entity:</p>
<pre><code>@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
</code></pre>
<p>My VM is configured with a maximum heap size of 512 MB. When I try to persist an object which has a 75 MB large object, I get an OutOfMemoryError. </p>
<p>The names of the methods in the stack trace (StringBuilder, ByteArrayBlobType.toLoggableString, pretty.Printer.toString) suggest that hibernate is trying to write a very large log message that contains my object.</p>
<p>Am I correct about why hibernate is using so much memory? What is the simplest way to work around this problem?</p>
<pre><code>java.lang.OutOfMemoryError: Java heap space
at java.lang.AbstractStringBuilder.<init>(AbstractStringBuilder.java:44)
at java.lang.StringBuilder.<init>(StringBuilder.java:81)
at org.hibernate.type.ByteArrayBlobType.toString(ByteArrayBlobType.java:117)
at org.hibernate.type.ByteArrayBlobType.toLoggableString(ByteArrayBlobType.java:127)
at org.hibernate.pretty.Printer.toString(Printer.java:53)
at org.hibernate.pretty.Printer.toString(Printer.java:90)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:97)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
at org.jboss.seam.persistence.HibernateSessionProxy.flush(HibernateSessionProxy.java:181)
</code></pre>
http://stackoverflow.com/questions/1733311/pretty-print-a-tree7Pretty print a treeJuliet2009-11-14T04:46:18Z2009-11-14T09:29:26Z
<p>Let's say I have a binary tree data structure defined as follows</p>
<pre><code>type 'a tree =
| Node of 'a tree * 'a * 'a tree
| Nil
</code></pre>
<p>I have an instance of a tree as follows:</p>
<pre><code>let x =
Node
(Node (Node (Nil,35,Node (Nil,40,Nil)),48,Node (Nil,52,Node (Nil,53,Nil))),
80,Node (Node (Nil,82,Node (Nil,83,Nil)),92,Node (Nil,98,Nil)))
</code></pre>
<p>I'm trying to pretty-print the tree into something easy to interpret. Preferably, I'd like to print the tree in a console window like this:</p>
<pre><code> _______ 80 _______
/ \
_ 48 _ _ 92 _
/ \ / \
35 52 82 98
\ \ /
40 53 83
</code></pre>
<p><strong>What's an easy way to get my tree to output in that format?</strong></p>
http://stackoverflow.com/questions/1731826/ruby-configure-irb-to-prettyinspect-by-default3Ruby Configure IRB to Pretty_Inspect by Defaultunknown (google)2009-11-13T20:48:55Z2009-11-13T22:38:08Z
<p>Hi Guys,
I'm fairly new to ruby, and am configuring IRB. I like pretty print (require 'pp'), but it seems a hassle to always type pp for it to pretty print it. What I'd like to do is make it pretty print by default, so if i have a var , say, 'myvar', and type myvar, it automatically calls pretty_inspect instead of the regular inspect. Where do I get started? Ideally, I would be able to add a method to my .irbrc file that is automatically called. Any ideas?</p>
<p>Thanks! </p>
http://stackoverflow.com/questions/1388209/how-to-format-numbers-according-to-locale-in-haskell1How to format numbers according to locale in Haskell?jetxee2009-09-07T08:31:15Z2009-11-12T19:26:12Z
<p>In Python I can use <code>locale.format</code> to pretty-print numbers according to locale setting:</p>
<pre><code>>>> import locale
>>> locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
'en_US.UTF-8'
>>> locale.format("%.2f",1234567.89,grouping=True)
'1,234,567.89'
</code></pre>
<p>How can I do the same in Haskell? I see that there are <a href="http://hackage.haskell.org/packages/archive/bindings-common/0.2.4/doc/html/Bindings-C.html#3" rel="nofollow">localeconv and setlocale</a> bindings, but is there a generic pretty printer which respects <code>Lconv</code>?</p>
http://stackoverflow.com/questions/234056/nice-bit-of-code-to-format-an-xml-string4Nice bit of code to format an xml stringToby Allen2008-10-24T15:38:03Z2009-11-08T03:08:05Z
<p>hi</p>
<p>Anyone got a ready made function that will take an XML string and return a correctly indented string?</p>
<p>eg</p>
<pre><code><XML><TAG1>A</TAG1><TAG2><Tag3></Tag3></TAG2></XML>
</code></pre>
<p>and will return nicely formatted String in return after inserting linebreaks and tabs or spaces?</p>
<p>Yes I know the code is easy to write but I'm sure someone else has already written it.</p>
<p>Update: Thanks to Bruce McGee and all the others that answered. Bruce's suggestion was just what I was after thanks.</p>
http://stackoverflow.com/questions/1649027/how-do-i-print-out-a-tree-structure3How do I print out a tree structure?Simon2009-10-30T10:29:24Z2009-10-30T11:35:21Z
<p>I'm trying to improve performance in our app. I've got performance information in the form of a tree of calls, with the following node class:</p>
<pre><code>public class Node
{
public string Name; // method name
public decimal Time; // time spent in method
public List<Node> Children;
}
</code></pre>
<p>I want to print out the tree such that I can see lines between the nodes - something like in <a href="http://stackoverflow.com/questions/1581559/ascii-library-for-creating-pretty-directory-trees">this question</a>. What's an algorithm I can use in C# for doing that?</p>
<p>Edit: Obviously I need to use recursion - but my attempts keep putting the lines in the wrong places. What I'm asking for is a specific algorithm that will print the tree in a nice manner - the details of when to print a vertical line and when to print a horizontal one.</p>
<p>Edit: It isn't sufficient just to use copies of a string to indent the nodes. I'm not looking for</p>
<pre><code>A
|-B
|-|-C
|-|-D
|-|-|-E
|-F
|-|-G
</code></pre>
<p>it has to be</p>
<pre><code>A
+-B
| +-C
| +-D
| +-E
+-F
+-G
</code></pre>
<p>or anything similar, so long as the tree structure is visible. Notice that C and D are indented differently to G - I can't just use a repeated string to indent the nodes.</p>
http://stackoverflow.com/questions/1449653/encode-xml-while-printing-soapmessage0encode xml while printing SOAPMessageprmatta2009-09-19T22:06:55Z2009-09-28T12:22:42Z
<p>Hi,</p>
<p>I have written a function to pretty print a javax.xml.soap.SOAPMessage to a string:</p>
<pre><code> public static String soapMessageToString (SOAPMessage msg) {
try {
Writer out = new StringWriter();
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
transformer.transform(msg.getSOAPPart().getContent(), new StreamResult(out));
return out.toString();
} catch (Exception e) {
}
return "";
}
}
</code></pre>
<p>The issue is that this does not properly encode the entire soap body.</p>
<p>On the wire, I see:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetSpeechResponse xmlns="http://xmlme.com/WebServices"><GetSpeechResult>&lt;SPEECH&gt;&lt;PLAY&gt;MACBETH&lt;/PLAY&gt;&lt;SPEAKER&gt;LENNOX&lt;/SPEAKER&gt;Or so much as it needs, To dew the sovereign flower and drown the weeds. Make we our march towards Birnam.&lt;/SPEECH&gt;</GetSpeechResult></GetSpeechResponse></soap:Body></soap:Envelope>
</code></pre>
<p>And my pretty printer yields:</p>
<pre><code>Sep 19, 2009 5:44:32 PM com.xmlme.webservices.LoggingHandler handleMessage
FINE: Response:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header/>
<soap:Body>
<GetSpeechResponse xmlns="http://xmlme.com/WebServices">
<GetSpeechResult>&lt;SPEECH&gt;&lt;PLAY&gt;MACBETH&lt;/PLAY&gt;&lt;SPEAKER&gt;LENNOX&lt;/SPEAKER&gt;Or so much as it needs, To dew the sovereign flower and drown the weeds. Make we our march towards Birnam.&lt;/SPEECH&gt;</GetSpeechResult>
</GetSpeechResponse>
</soap:Body>
</soap:Envelope>
</code></pre>
<p>Notice that I see the &lt and the &gt in the response. I have tried setting the Transformers output property:</p>
<pre><code>transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
</code></pre>
<p>and I have tried setting the SOAPMessage property:</p>
<pre><code> msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, "UTF-8");
</code></pre>
<p>..but no dice.</p>
<p>Am I missing something obvious?</p>
http://stackoverflow.com/questions/1436977/a-beautifier-for-lisp3A beautifier for lisp?artemb2009-09-17T06:12:42Z2009-09-20T15:54:31Z
<p>Are there any beautifiers for (e)lisp? Online preferred</p>
http://stackoverflow.com/questions/1446960/pretty-print-excel-formulas1Pretty Print Excel Formulas?Adam Neal2009-09-18T21:41:18Z2009-09-19T00:41:29Z
<p>Does anyone know of a (free) tool to pretty print Excel formulas? A Google search didn't turn anything up. </p>
<p>I've got a few worksheets of semi-complex formulas to slog through, so this would make my life a bit easier.</p>
<p>I'm just looking to turn something like this</p>
<pre><code>AC6+AD6+(IF(H6="Yes",1,IF(J6="Yes",1,0)))+IF(X6="Yes",1,0)
</code></pre>
<p>into something more readable without manually doing it in Vim or the like. Excel does do color-matching on the parentheses, but it's still all mashed together on one line.</p>
http://stackoverflow.com/questions/1168175/is-there-a-pretty-print-for-php2Is there a pretty print for PHP?Aaron Lee2009-07-22T20:52:41Z2009-09-15T00:12:50Z
<p>I'm fixing some PHP scripts and I'm missing ruby's pretty printer. i.e.</p>
<pre><code>require 'pp'
arr = {:one => 1}
pp arr
</code></pre>
<p>will output {:one => 1}. This even works with fairly complex objects and makes digging into an unknown script much easier. Is there some way to duplicate this functionality in PHP?</p>
http://stackoverflow.com/questions/1182850/converting-source-ascii-files-to-jpegs1Converting Source ASCII Files to JPEGscommonsware.com2009-07-25T19:26:30Z2009-08-27T21:28:31Z
<p>I publish technical books, in print, PDF, and Kindle/MOBI, with EPUB on the way.</p>
<p>The Kindle does not support monospace fonts, which are kinda useful for source code listings. The only way to do monospace fonts is to convert the text (Java source, HTML, XML, etc.) into JPEG images. More specifically, due to pagination issues, a given input ASCII file needs to be split into slices of ~6 lines each, with each slice turned into a JPEG, so listings can span a screen. This is a royal pain.</p>
<p>My current mechanism to do that involves:</p>
<ol>
<li>Running <code>expand</code> to set a consistent 2-space tab size, which pipes to...</li>
<li><code>a2ps</code>, which pipes to...</li>
<li>A small Perl snippet to add a <code>"%%LanguageLevel: 3\n"</code> line, which pipes to...</li>
<li>ImageMagick's <code>convert</code>, to take the (E)PS and make a JPEG out it, with an appropriate background, cropped to <code>575x148+5+28</code>, etc.</li>
</ol>
<p>That used to work 100% of the time. It now works 95% of the time. The rest of the time, I get <code>convert: geometry does not contain image</code> errors, which I cannot seem to get rid of, in part because I don't understand what the problem is.</p>
<p>Before this process, I used to use a pretty-print engine (<code>source-highlight</code>) to get HTML out of the source code...but then the only thing I could find to convert the HTML into JPEGs was to automate screen-grabs from an embedded Gecko engine. Reliability stank, which is why I switched to my current mechanism.</p>
<p>So, if you were you, and you needed to turn source listings into JPEG images, in an automated fashion, how would you do it? Bonus points if it offers some sort of pretty-print process (e.g., bolded keywords)!</p>
<p>Or, if you know what typically causes <code>convert: geometry does not contain image</code>, that might help. My current process is ugly, but if I could get it back to 100% reliability, that'd be just fine for now.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/376373/pretty-printing-xml-with-javascript2Pretty printing XML with javascriptDarin Dimitrov2008-12-17T23:01:18Z2009-08-24T11:06:06Z
<p>I have a string that represents a non indented XML that I would like to pretty-print. For example:</p>
<pre><code><root><node/></root>
</code></pre>
<p>should become:</p>
<pre><code><root>
<node/>
</root>
</code></pre>
<p>Syntax highlighting is not a requirement. To tackle the problem I first transform the XML to add carriage returns and white spaces and then use a <a href="http://www.w3.org/TR/html401/struct/text.html#h-9.3.4" rel="nofollow"><em>pre</em></a> tag to output the XML. To add new lines and white spaces I wrote the following function: </p>
<pre><code>function formatXml(xml) {
var formatted = '';
var reg = /(>)(<)(\/*)/g;
xml = xml.replace(reg, '$1\r\n$2$3');
var pad = 0;
jQuery.each(xml.split('\r\n'), function(index, node) {
var indent = 0;
if (node.match( /.+<\/\w[^>]*>$/ )) {
indent = 0;
} else if (node.match( /^<\/\w/ )) {
if (pad != 0) {
pad -= 1;
}
} else if (node.match( /^<\w[^>]*[^\/]>.*$/ )) {
indent = 1;
} else {
indent = 0;
}
var padding = '';
for (var i = 0; i < pad; i++) {
padding += ' ';
}
formatted += padding + node + '\r\n';
pad += indent;
});
return formatted;
}
</code></pre>
<p>I then call the function like this:</p>
<pre><code>jQuery('pre.formatted-xml').text(formatXml('<root><node1/></root>'));
</code></pre>
<p>This works perfectly fine for me but while I was writing the previous function I thought that there must be a better way. So my question is do you know of any better way given an XML string to pretty-print it in an html page? Any javascript frameworks and/or plugins that could do the job are welcome. My only requirement is this to be done on the client side.</p>
http://stackoverflow.com/questions/18985/javascript-beautifier8Javascript Beautifiergrom2008-08-20T22:29:22Z2009-08-22T12:33:29Z
<p>I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?</p>
http://stackoverflow.com/questions/1270221/how-to-format-code-in-html-css-js-php0How to format code in html / css / js/ phpB T2009-08-13T05:45:36Z2009-08-13T07:45:49Z
<p>I'm looking for a way to automatically format and color code I write in an HTML document. I know wikipedia does it, for example on the page: <a href="http://en.wikipedia.org/wiki/Nested_function" rel="nofollow">http://en.wikipedia.org/wiki/Nested_function</a></p>
<p>I'm sure there are libraries out there to do this, but I can't for the life of me, find one. Does anyone have any suggestions?</p>
http://stackoverflow.com/questions/1265255/putting-each-attribute-on-a-new-line-during-xml-serialization0Putting each attribute on a new line during xml serializationAlderath2009-08-12T09:51:19Z2009-08-12T10:43:47Z
<p>Lets say I have a DOM object (or a string containing xml). Is it in any way possible to serialize the xml in such a way that each attribute appears on a new line? </p>
<p>This is the output I want:</p>
<pre><code><parent>
<anElement
attrOne="1"
attrTwo="2"
attrThree="3"
/>
</parent>
</code></pre>
<p>Preferred if the solution a part of the standard java api, but I suspect such a feature is not available in there, or am I wrong?</p>
<p>I found a property for a serializer in the .NET Framework, called <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlwritersettings.newlineonattributes.aspx" rel="nofollow">NewLineOnAttributes</a>. What I am searching for is something equivalent, but in java.</p>
http://stackoverflow.com/questions/1264849/pretty-printing-output-from-javax-xml-transform-transformer-with-only-standard-ja3Pretty-printing output from javax.xml.transform.Transformer with only standard java api (Indentation and Doctype positioning)Alderath2009-08-12T08:04:03Z2009-08-12T10:39:12Z
<p>Using the following simple code:</p>
<pre><code>package test;
import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;
public class TestOutputKeys {
public static void main(String[] args) throws TransformerException {
// Instantiate transformer input
Source xmlInput = new StreamSource(new StringReader(
"<!-- Document comment --><aaa><bbb/><ccc/></aaa>"));
StreamResult xmlOutput = new StreamResult(new StringWriter());
// Configure transformer
Transformer transformer = TransformerFactory.newInstance()
.newTransformer(); // An identity transformer
transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "testing.dtd");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.transform(xmlInput, xmlOutput);
System.out.println(xmlOutput.getWriter().toString());
}
}
</code></pre>
<p>I get the output:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!-- Document comment --><!DOCTYPE aaa SYSTEM "testing.dtd">
<aaa>
<bbb/>
<ccc/>
</aaa>
</code></pre>
<p>Question A: The doctype tag appears after the document comment. Is it possible to make it appear before the document comment?</p>
<p>Question B: How do I achieve indentation, using only the JavaSE 5.0 API?
This question is essentially identical to <a href="http://stackoverflow.com/questions/139076/how-to-pretty-print-xml-from-java">How to pretty-print xml from java</a>, <strong>however</strong> almost all answers in that question depend on external libraries. The only applicable answer (posted by a user named Lorenzo Boccaccia) which only uses java's api, is basically equal to the code posted above, but does not work for me (as shown in the output, i get no indentation).</p>
<p>I am guessing that you have to set the amount of spaces to use for indentation, as many of the answers with external libraries do, but I just cannot find where to specify that in the java api. Given the fact that the possibility to set an indentation property to "yes" exists in the java api, it must be possible to perform indentation somehow. I just can't figure out how.</p>
http://stackoverflow.com/questions/139076/how-to-pretty-print-xml-from-java15how to pretty print xml from JavaSteve McLeod2008-09-26T12:21:11Z2009-08-12T08:22:57Z
<p>I have a Java String that contains XML, with no line feeds and indentations. I would like to turn in into a String with nicely formatted XML. How do I do this?</p>
<pre><code>String unformattedXml = "<tag><nested>hello</nested></tag>";
String formattedXml = new [UnknownClass]().format(unformattedXml);
</code></pre>
<p>Note: My input is a <strong>String</strong>. My output is a <strong>String</strong>.</p>
http://stackoverflow.com/questions/1238988/changing-the-default-indentation-of-etree-tostring-in-lxml0Changing the default indentation of etree.tostring in lxmlEli Courtwright2009-08-06T13:47:37Z2009-08-06T14:20:28Z
<p>I have an XML document which I'm pretty-printing using <code>lxml.etree.tostring</code></p>
<pre><code>print etree.tostring(doc, pretty_print=True)
</code></pre>
<p>The default level of indentation is 2 spaces, and I'd like to change this to 4 spaces. There isn't any argument for this in the <code>tostring</code> function; is there a way to do this easily with lxml?</p>
http://stackoverflow.com/questions/1187451/how-to-print-pretty-xml-in-javascript0How to print pretty xml in javascript?michael lucas2009-07-27T10:22:45Z2009-07-27T22:42:43Z
<p>What's the best way to pretty-print xml in JavaScript? I obtain xml content through ajax call and before displaying this request in textarea i want to format it so it looks nice to the eye :)</p>
http://stackoverflow.com/questions/1162537/intellij-idea-plugin-for-saving-java-html1Intellij IDEA plugin for saving Java -> HTML?Kaffeine Coma2009-07-22T01:02:45Z2009-07-22T08:13:21Z
<p>Is there an IDEA plugin for pretty printing (or save/export) Java to syntax colored HTML? Failing that, what's your favorite web site for that?</p>
<p><strong>EDIT</strong>: I have a Java program, I want to convert the source code to HTML so that I can display it on the web. As I will be making lots of edits to the source, it would be handy to be able to convert it directly to HTML within IDEA.</p>
http://stackoverflow.com/questions/226834/ugly-c-code3Ugly C++ codeJoe2008-10-22T17:49:53Z2009-07-21T19:42:07Z
<p>I'm working on a C++ prettyprinter and would like to show the results of the prettyprinter by comparing code before and after running it. Does anyone know where I can find some ugly C++ code to run through the prettypretty? Ideally the code would come from some open source software.</p>
http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic4Algorithm for neatly indenting SQL statements (Python implementation would be nice)Simon Willison2009-04-28T14:14:24Z2009-07-21T19:41:21Z
<p>I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.</p>
<p>I don't personally know of a good coding style for indenting SQL - how should nested queries / where clauses / left joins / etc by represented to maximise readability?</p>
<p>Has anyone seen a pretty-printing algorithm that does this already? In Python would be even better.</p>
http://stackoverflow.com/questions/1099518/what-are-the-best-prettyprint-options-for-c2What are the best prettyprint options for C++?Joe2009-07-08T17:40:18Z2009-07-21T19:40:11Z
<p>Hi All,</p>
<p>My partner and I are working on a prettyprinter for C++. The tool parses C++ and prints the resulting AST, so we have quite a bit of flexibility. We've implemented a few options for the user to control the output and now we're looking for opinions about the most important options. If you could take a look at our current (below) and then tell us what you like/dislike, what else should be there, etc. that would be great.</p>
<p>Thanks,
Joe</p>
<p>Below are some of the current options (sorry for the length):</p>
<p><hr /></p>
<h1>1. Control Blocks</h1>
<p><hr /></p>
<h2>1.1 IndentString </h2>
<p><hr /></p>
<p>Define the white space string that’s used for each indent.</p>
<p>Example:</p>
<p>• IndentString “ ”</p>
<pre><code>void f ()
{
int a;
}
</code></pre>
<p>• IndentString “\t”</p>
<pre><code>void f ()
{
int m;
}
</code></pre>
<p><hr /></p>
<h2>1.2 OpenBraceLocation </h2>
<p><hr /></p>
<p>Three options are: “EndOfLine”, “NextLine”, or “NextLineAsWellAsCloseParen”</p>
<p>Start the open braces on the same or next line as the keyword that it’s associated with. Last option moves the close paren prior to the open brace if it exists to the next line as well.</p>
<p>Applies to if, while, for, switch and do-while statements.</p>
<p>If not present the “EndOfLine” option is used.</p>
<p>Example:</p>
<p>• OpenBraceLocation EndOfLine</p>
<pre><code>if(val){
val++;
}
</code></pre>
<p>• OpenBraceLocation NextLine</p>
<pre><code>if(val)
{
val++;
}
</code></pre>
<p>• OpenBraceLocation NextLineAsWellAsCloseParen</p>
<pre><code>if(val
){
val++;
}
</code></pre>
<p><hr /></p>
<h2>1.3 NoBracesAroundSingleStatementBlock</h2>
<p><hr /></p>
<p>Braces are removed from statement blocks that have only one statement. This option applies to do-while, for, if, and while blocks. </p>
<p>Example:</p>
<p>• NoBracesAroundSingleStatementBlock is present</p>
<pre><code>if(a)
func();
</code></pre>
<p>• NoBracesAroundSingleStatementBlock is not present</p>
<pre><code>if(a)
{
func();
}
</code></pre>
<p><hr /></p>
<h1>2. Classes</h1>
<p><hr /></p>
<h2>2.1 virtualQualifier </h2>
<p><hr /></p>
<p>The options are: “Everywhere” or “Minimalist”. When “Everywhere” is used the keyword “virtual” appears in all derived classes in front of the function declared to be virtual in the base class. With “Minimalist” it only appears in the base class.</p>
<p>Example :</p>
<p>• virtualQualifier Everwhere</p>
<pre><code>class Base
{
virtual void f(int a);
}
class Derived : public Base
{
virtual void f( int a);
class MostDerived : public Derived
{
virtual void f( int a);
</code></pre>
<p>• virtualQualifier Minimalist</p>
<pre><code>class Base
{
virtual void f(int a);
}
class Derived : public Base
{
void f( int a);
class MostDerived : public Derived
{
void f( int a);
</code></pre>
<p><hr /></p>
<h2>2.2 SortClassMembers </h2>
<p><hr /></p>
<p>The level options are “Access”, “Data/Functions” or “Functions/Data”, and “Alpha”. If no level-option is provided or the SortClassMember is not present the order of the members is unchanged.</p>
<p>Example:</p>
<p>• SortClassMembers Data/Functions Access Alpha</p>
<pre><code>class Compiler
{
private:
string inputFileName;
public:
Compiler( string const & inputFileName_);
genOutput( string const & outputFileName_);
private:
analyze();
emitCode( string const & );
parse();
tokenize( string const & inputFileName_);
}
</code></pre>
<p>• SortClassMembers Access Functions/Data Alpha</p>
<pre><code>class C
{
public:
Compiler( string const & inputFileName_);
genOutput( string const & outputFileName_);
private:
analyze();
emitCode( string const & );
parse();
tokenize( string const & inputFileName_);
private:
string inputFileName;
}
</code></pre>
<p>• SortClassMembers Access Alpha</p>
<pre><code>class C
{
public:
Compiler( string const & inputFileName_);
genOutput( string const & outputFileName_);
private:
analyze();
emitCode( string const & );
string inputFileName;
parse();
tokenize( string const & inputFileName_);
}
</code></pre>
<p><hr /></p>
<h1>3. Files</h1>
<p><hr /></p>
<h2>3.1 MaxLineWidth </h2>
<p><hr /></p>
<p>Define the maximum line width. PrettyC++ will intelligently wrap longer lines if possible.</p>
<p>Example:</p>
<p>• MaxLineWidth 80</p>
<pre><code>int x = 123456789;
</code></pre>
<p>• MaxLineWidth 10</p>
<pre><code>int x =
123456789;
</code></pre>
<p><hr /></p>
<h2>3.2 constLocation </h2>
<p><hr /></p>
<p>The options are “Before” or “After”. The Before option places the const keyword before the type specifier. The After option places the const keyword after the type specifier.</p>
<p>Example :</p>
<p>• constLocation Before</p>
<pre><code>const int x;
</code></pre>
<p>• constLocation After</p>
<pre><code>int const x;
</code></pre>
<p><hr /></p>
<h1>4. Names</h1>
<p><hr /></p>
<h2>4.1 AllNamesStartCase </h2>
<p><hr /></p>
<p>Options are “LowerCase” or “UpperCase”.</p>
<p>Example:</p>
<p>• AllNamesStartCase LowerCase </p>
<pre><code>int variable = 123456789;
</code></pre>
<p>• AllNamesStartCase UpperCase</p>
<pre><code>int Variable = 123456789;
</code></pre>
<p><hr /></p>
<h2>4.2 AllNamesDelimitWords </h2>
<p><hr /></p>
<p>Options are “CaseDelimited” or “UnderscoreDelimited”. Words are identified by as either starting with a capital letter or following an underscore.</p>
<p>Example:</p>
<p>• AllNamesDelimitWords CaseDelimited</p>
<pre><code>int myVariable = 123456789;
</code></pre>
<p>• AllNamesDelimitWords UnderscoreDelimited</p>
<pre><code>int my_variable = 123456789;
</code></pre>
<p><hr /></p>
<h2>4.3 FunctionNamesStartCase </h2>
<p><hr /></p>
<p>Options are “LowerCase” or “UpperCase”.</p>
<p>Example:</p>
<p>• FunctionNamesStartCase LowerCase </p>
<pre><code>void function() { return; }
</code></pre>
<p>• FunctionNamesStartCase UpperCase</p>
<pre><code>void Function() { return; }
</code></pre>
<p><hr /></p>
<h2>4.4 FunctionNamesDelimitWords </h2>
<p><hr /></p>
<p>Options are “CaseDelimited” or “UnderscoreDelimited”. Words are identified by as either starting with a capital letter or following an underscore.</p>
<p>Example:</p>
<p>• FunctionNamesDelimitWords CaseDelimited</p>
<pre><code>void myFunction() { return; }
</code></pre>
<p>• FunctionNamesDelimitWords UnderscoreDelimited</p>
<pre><code>void my_function() { return; }
</code></pre>