Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
840 views

Any good online php formatter?

I have a big piece of php code that is all in one line, I tried http://www.phpformatter.com/ and http://phpbeautifier.com/ and both give me still one line of code as output, is there another online ...
4
votes
4answers
81 views

I want to run a code formatter over my entire PHP project - any suggestions

I have a PHP project with many files, now the project is complete I want to ensure that the indentation and formatting of each file is to a set standard, should anyone want to revist the codebase in ...
4
votes
3answers
2k views

Visual Studio unmanaged C++ code formatter

When I type this line of code: QString newPath = QFileDialog::GetOpenFileName(this, tr("Open Image"), path, tr("Image files (%1)").arg(formats.join(" "))); I typically format it like this: QString ...
3
votes
0answers
350 views

Anyone using a code formatter in xcode other than uncrustify?

For a while now I've been using uncrustify within xcode to format the code. But I find myself constantly frustrated with it. I'm right up to date with the latest version of uncrustify, but I'm still ...
2
votes
3answers
820 views

Lyx: Can I beautify JSON inside a document?

I was wondering if anyone knew how to beautify or format JSON inside a Latex document. I am using Lyx as a front-end for writing the latex file. Are there any addons that people use? I tried to search ...
1
vote
1answer
67 views

Aptana 3 - JavaScript formatter

The Aptana JS formatter handles this fine: Manage.init = function() { --code here-- } but it formats this: $('#tab1').click(function() { $('li.voting.active').length === 0 ? ...
1
vote
3answers
110 views

Is there a utility that will reformat HTML code automatically?

I was trying to modify a template for a blog, but the code of the page source was all written in one line, for me it's a mess. I'd like to know if there is a way/program/shortcut to make it more ...
1
vote
4answers
243 views

Flexible C code formatter software

I'm looking for a very flexible C code formatting solution. Here's the context: I need to convert some external C code to my organization's "coding rules". For example, these rules demand that I put ...
1
vote
7answers
245 views

Problem formatting in Eclipse

I have a method in Eclipse as below. public String toString() { return "HouseVo [ " + "Name : " + this.name == null ? "" : this.name + "Address : " + this.address == null ? "" : ...
0
votes
3answers
59 views

How to find nested conditons count in java

I have to read java file by java code and to determine the greatest nested count of if statements in it. for example: if (someCondition) { if (someCondition) { // Expression } } ...
0
votes
0answers
26 views

HTML formatters can be written to skip content in pre and script tags, but what if an external CSS file specifies “white-space:pre*”?

An HTML formatter like https://github.com/andrewdavey/hotmod can format an HTML document before it's sent to the client so that it's "prettier" or "minimized", and both formats have utility. Since ...
0
votes
2answers
103 views

How to add white spaces inside parenthesis when editing a PHP Formatter Profile?

I would like to know if it's possible to add white spaces inside parenthesis, when editing a PHP Formatter Profile on Aptana Studio 3. I enjoy using this style: if ( $var == 3 ). But, while editing a ...
0
votes
1answer
193 views

Hard return (carriage return) in Eclipse code style formatter

I'm used to long lines, 160 chars, because I like Monospace fonts and I have a wide LCD screen. The problem is, that the Code Style formatter doesn't support "hard return" as far as I know. Such a ...
0
votes
1answer
212 views

how to install Source Wizard for Delphi 7 in Delphi 2009

I have Source Wizard for Delphi 7 (a code formatter). I'm switching to Delphi 2009. I tried loading *.pas (created with D2009) in Source Wizard in Delphi 7 and there were no problems processing them. ...
0
votes
1answer
106 views

Formatter for beanshell inside of XML

I've been looking for a formatter that will format beanshell inside of XML. Really, I just want something that will make sure my tabbing is correct for control loops. <xml> <script ...
0
votes
1answer
261 views

Pretty printing/code butifyer for JSP and XML?

I use a text editor and the commandline for my Java development. I use Artistic Style to format my Java code. I'm looking for a tool that can be run from the commandline that can format JSP pages as ...