Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
15
votes
3answers
3k views

Python Formatter Tool

I was wondering if there exists a sort of Python beautifier like the gnu-indent command line tool for C code. Of course indentation is not the point in Python since it is programmer's responsibility ...
12
votes
2answers
961 views

Can the eclipse formatter be used stand-alone

Is there a way to use the formatter that comes with eclipse, outside of eclipse? I would like to format some java files using my formatter.xml file that I have configured using eclipse. Does anyone ...
10
votes
5answers
5k views

Objective-C style formatter

I'm a newbie on Objective-C programming and aiming to follow Google's code convention: http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml. Some code formatting tool would be handy to ...
7
votes
2answers
1k views

How to disable the Formatter in Delphi 2010

The formatter in Delphi 2010 is really an annoying thing to me. I prefer formatting my code manually. I believe I do it better. How can I disable it? NOTE: Answers on why I don't use it in the first ...
7
votes
5answers
2k views

CSS formatter NOT based on CSS Tidy?

I can't find a css formatter (web based or Windows app) which formats the css where it puts the open brace on its own line aligned with its close brace, plus indents the attributes. The web based css ...
6
votes
5answers
2k views

Html Beautifier

Does anyone know of a HTML formatter?
5
votes
1answer
215 views

JFormattedTextField issues

1) how can I set Cursor to 0 possition without using Caret or Focus wrapped into invokeLater() (confortly can be solved by using @camickr Formatted Text Field Tips), is there somebody who knows ...
5
votes
5answers
168 views

Fill strings with 0's using formatter

I know I can fill with spaces using : String.format("%6s", "abc"); // ___abc ( three spaces before abc But I can't seem to find how to produce: 000abc Edit: I tried %06s prior to asking this. ...
5
votes
5answers
3k views

Making Eclipse's Java code formatter ignore comments

Is there a way to make Eclipse's built-in Java code formatter ignore comments? Whenever I run it, it turns this: /* * PSEUDOCODE * Read in user's string/paragraph * * Three ...
5
votes
1answer
2k views

How to generate an Eclipse formatter configuration from a checkstyle configuration?

I have a checkstyle configuration XML file and want to automatically generate an Eclipse formatter configuration from this. Is there any tool that can do this?
4
votes
1answer
49 views

How to tell Eclipse java Formatter (Ctrl + shift+ F) to stop delete white spaces

I want the formatter to stop deleting white spaces in declaration fields This is what the formatter does when I hit ctrl+shift+f and this is how I want it to be(the alignment of the values should ...
4
votes
1answer
155 views

Using java.util.Formatter as default formatter for slf4j

I currently have a custom log manager that internally uses java.util.Formatter. The main issue is that it's not very usable: everything in one file per application, no possibilities to add specific ...
4
votes
1answer
4k views

How can I correctly format currency using jquery?

I do not need a mask, but I need something that will format currency(in all browsers) and not allow for any letters or special char's to be typed. Thanks for the help Example: Valid: $50.00 ...
4
votes
3answers
2k views

How can I change the background color of a cell in a jqgrid custom formatter?

I can change the text color by doing this in jqgrid custom formatter: function YNFormatter(cellvalue, options, rowObject) { var color = (cellvalue == "Y") ? "green" : "red"; var cellHtml = ...
4
votes
2answers
205 views

Eclipse formatter to keep One-Liners

Can Eclipse Formatter be configured to keep: public Long getId() { return this.id; } And maybe to format small (one line) definitions as one-liners?
3
votes
3answers
112 views

What's the opposite of `fixed` in cout?

When using cout, what is the default formatter defined in the <iomanip> header? In other words, once I've set my formatter to fixed using cout << fixed << setPrecision(2), how do I ...
3
votes
1answer
110 views

Partial String Formatting in Python Logging Formatters

I'm looking for a way to perform partial string formatting in Python logging formatters. When trying to define a formatter the following way: formatter = logging.Formatter('[num-%d] %(levelname)s ...
3
votes
1answer
200 views

String.format using a exception.getMessage() as a format

I have a question related to String.format in JAVA. My HibernateDao Class is responsible for persisting entities and will throw an exception in case I have any constrain violation. The message ...
3
votes
4answers
307 views

Code beautifier for HTML/CSS/JavaScript?

I am wondering, should I use these - or are they too much of a hassle or have drawbacks that make them inadvisable? I am finding it impossible to find a good suite of tools that aren't just hacked ...
3
votes
2answers
627 views

Need help in finding an HTML, CSS, PHP code formatter for gedit

I need help in finding an HTML, CSS, PHP code formatter plug-in for gedit. I've looked into gmate and other plug-ins but I could only find code formatter for Ruby/Rails files.
3
votes
1answer
602 views

How to format rspec 2 output with rails 3

When I run rspec 2 with rails 3 I use rake rspec sometimes I'd like to use a different formatter, perhaps doc. rake rspec --format doc but unfortunately the option doesn't make it through to the ...
3
votes
2answers
159 views

Bug in String.format / Formatter?

Out of curiosity I tried to create a really large string. It turned out that the Formatter class chokes on width specifications exceeding Integer.MAX_VALUE: // Produces an empty string. (2147483648 = ...
3
votes
3answers
1k views

Format a decimal number to (###,###.##) using Blackberry Java API

I'm trying to do a pretty simple thing using Blackberry RIM API - I have a string 1000000, that I want to format to 1,000,000.00 I have tried two RIM API classes in order to do that, but none of them ...
3
votes
3answers
440 views

Using python logging package, how to insert additional formatting into multiple logger hanlers that have their own formatters?

I have a single logger with multiple handlers, which have their own formatters. Now I want to add an indenting feature, with the indent level controlled at runtime. I want messages from all the ...
3
votes
1answer
166 views

Why is jIndent breaking my C++ syntax?

I've got a weird problem where jIndent seems to be stripping spaces between 'new' and type names, thus breaking the code. For example, Ball* b = new Ball[numBalls]; ---> Ball* b = ...
3
votes
2answers
264 views

Delphi 2010 Leave My Comments Alone

The code formatter in Delphi 2010 is a useful tool for developing coding standards, or at least this is my opinion, however it has a horrid habit of ruining comments. A nicly commented block like ...
3
votes
1answer
267 views

Delphi 2010: anyone got the right settings for the formatter not to fold anonymous methods?

With the default settings, the Delphi 2010 code formatter folds anonymous methods on one line. Is there anyone who has found settings to circumvent this? Original code: procedure ...
2
votes
1answer
65 views

Is there any Java CSS formatter util? [closed]

I need to format (not compress) CSS code, so that unreadable CSS code is formatted to be readable. I need this as Java library.
2
votes
3answers
73 views

How can I format a float in Java with a given number of digits after the decimal point?

What is the best way in Java to get a string out of a float, that contains only X digits after the dot?
2
votes
2answers
174 views

kilo (K) and mega (M) suffixes on matplotlib's axes

I would like to print values on axes not as 30000 or 7000000 but as 30K or 7M. It means to add K (kilo) suffix for x < 10^6 and M (mega) suffix for x >= 10^6. How can I do that? Current code ...
2
votes
2answers
81 views

adding formatting to java formatter

I'm writing a notepad clone to learn more about guis. My program creates a text file with the code: try { formatter = new Formatter(fileName+".txt"); ...
2
votes
2answers
854 views

Eclipse Java Formatter. New line before curly braces, but not after

we have here at work a very strange coding convention, and I didn't managed to setup the Java Formatter in Eclipse right to do what I want. The convention says: Before a curly brace "{" there ...
2
votes
1answer
664 views

jqGrid custom formatter option “unformat” doesnt work

jqGrid custom formatter option "unformat" doesnt work when supplied with function. I am supplying function to this option. custom formatter example suppose to work but its not working. My main ...
2
votes
1answer
41 views

javascript formatter

is there a good javascript prettyprinter to format js code that is run through a minimizer?
2
votes
1answer
160 views

Command line for eclipse formatter

I just wonder if there is a command line tool for eclipse java file formatter. Or if there is an ant task to execute it. In my scenario, there are 2 java formatters, one is for android formatter, the ...
2
votes
5answers
178 views

Any method similar to sprintf in Java?

Any similar method to sprintf in Java?
2
votes
3answers
316 views

Rail 3 custom renderer: where do put this code?

I'm following along with Yehuda's example on how to build a custom renderer for Rails 3, according to this post: http://www.engineyard.com/blog/2010/render-options-in-rails-3/ I've got my code ...
2
votes
3answers
464 views

How can I configure the formatter settings in PhpEclipse?

I'm using Eclipse Helios with PHPEclipse, which works great, but I can't seem to get the formatter (Ctrl-Shift-F) to work with highlighted code. It doesn't really seem to do anything. Does anyone ...
2
votes
5answers
288 views

How do I change the code convention in Eclipse

I like to use curly brackets in this fashion void hello() { code(); } When I ctr + shift + F in eclipse it changes everything to void hello(){ code(); }
2
votes
1answer
365 views

Zend Studio code formatter problem with comments

i have Zend Studio 7.x, mostly use it for Zend Framework PHP and OOP JavaScript. When i run formatter on *.php file, often space is added after block of inline comments Before formatter run: ...
2
votes
3answers
179 views

Understanding the $ in Java's format strings

StringBuilder sb = new StringBuilder(); // Send all output to the Appendable object sb Formatter formatter = new Formatter(sb, Locale.US); // Explicit argument indices may be used to re-order ...
2
votes
4answers
1k views

What is the Java equivalent of C's printf %g format specifier?

I tried using Formatter.format, but that seems to leave the mantissa on numbers with 0 mantissa, whereas the C version does not. Is there an equivalent of C's %g format specifier in Java, and if not, ...
1
vote
1answer
16 views

convert currentDateTime to String and the opposite using DateTimeFormatter class in FLEX 4

Hello i do the following: var currentDate:Date = new Date(); in order to get the current date which i want to write it to file and afterwards get it back to a Date field, which is the best way? i ...
1
vote
1answer
44 views

Python/Cython custom formatter string presentation types

I know one could extend Formatter to provide additional presentation types as discussed in PEP3101, but this is entirely too slow for my needs. I'm curious what some other options might be for ...
1
vote
1answer
72 views

How to pass additional variables to jqGrid formatter?

I'm trying to create some kind of reusable formatter for jqGrid column, I would like to create custom formatter where I'm able to pass additional data , something similar to this code: function ...
1
vote
3answers
75 views

Line wrapping in Eclipse Java formatter

I'm trying to configure the Java code formatter to have a compact formatting. I've set the policy to "Wrap where necessary", and maximum line width to 80, but either it wraps where it shouldn't, or it ...
1
vote
2answers
60 views

Format String in Java regarding its length in bytes

Let's say I have a String containing non ASCII characters in Java and I want to use String.format() to set it so the formatted String will have a minimum width regarding of the string's byte length. ...
1
vote
1answer
63 views

Java Formatter class, is there an easy way to auto pad columns with spaces?

Say you have some tabular data where the datas length can vary, is there a provision with the Formatter class to auto adjust the padding? So instead of this (note column A): columnA columnB ...
1
vote
1answer
97 views

How to format double value into string with 2 decimal places after dot and with separators of thousands?

Salut! Can you help me, please? I have a double value in Objective-C and I need to place it's value into label. How should I format it into string with 2 decimal places after dot and with separators ...

1 2 3