Tagged Questions
The reformat tag has no wiki summary.
14
votes
21answers
842 views
What applications do you know of, that can reformat code?
I am looking for a list of code formatting and prettifying software; I have only found a few topics that all are language specific.
This is not about syntax highlighting!
If possible, I prefer ...
14
votes
25answers
982 views
How to convince management that reformatting entire java code base is safe
How would one go about proving to management that a batch reformat of all .java files in a large code base (to place the code in compliance with the company's coding standards) is safe and will not ...
10
votes
2answers
2k views
reformat in vim for a nice column layout
I have this dataset in a csv file
1.33570301776, 3.61194e-06, 7.24503e-06, -9.91572e-06, 1.25098e-05, 0.0102828, 0.010352, 0.0102677, 0.0103789, 0.00161604, 0.00167978, 0.00159998, 0.00182596, ...
5
votes
2answers
3k views
How to reformat multi-line comments in Eclipse PDT?
In Eclipse PDT, Ctrl-Shift-F reformats code. However, it doesn't modify comments at all. Is there some way to reformat ragged multi-line comments to 80 characters per line (or whatever)?
i.e. ...
4
votes
2answers
70 views
Reformatting data using Access + Subquery
I'm trying to reformat data in MS Access as the number of rows exceeds what Excel can do. However, this is my first attempt with subqueries, and could do with some assistance in what I should be ...
3
votes
2answers
227 views
Free tools that automatically reformat whole C/C++ source files in VS2008 on save?
I'm looking for a tool (macro, extension) for Visual Studio 2008 that would reformat the source code (C/C++) when you save the file.
2
votes
1answer
91 views
ugly CSS source Code; Is there any way to reformat the code with Dreamweaver / Aptana?
I have a bit questions regarding the way we do "Coding CSS".
Probably because I'm a java programmer which is used to interact with Netbeans,
I love the way it format the code works...
Just Pressing ...
2
votes
1answer
404 views
Use Emacs to pretty-print ActionScript 3.0
I've been trying to use emacs in batch mode to pretty-print an ActionScript file but it doesn't quite do what I'd expect it to.
I downloaded actionscript-mode.el and as-config.el from here ...
2
votes
7answers
3k views
Fast algorithm for polar -> cartesian conversion
I have an image on a polar grid. This image should be transformed into a cartesian grid, but the only algorithm I know of is really slow for this. Now I use the cartesian grid, for each point I find ...
1
vote
1answer
64 views
How can you intercept pasting into a NSTextView to remove unsupported formatting?
I'm trying to create a simple NSTextView-based window for simple WYSIWYG editing. However, I only want to allow certain types of formatting (e.g. Bold, Italic, Underline and a single heading type but ...
1
vote
3answers
70 views
Reformatting data with a pattern
I have a large dataset with mix of number and alphabets. Just an small example:
sex <- c("M", "F", "F", "M", "M")
ind <- c("I1", "I2", "I3", "I4", "C")
M1 <- c("ab", "bb", "ac", "ad", "dd")
...
1
vote
2answers
83 views
reformating an RSS feed with jQuery
I am currently pulling an RSS feed in which the the format is essentially title->image->text content. I would like to reformat it so that the image comes first. I am currently trying:
<script ...
1
vote
0answers
256 views
IE and mobile safari cut off text.. possibly a line height issue?
I've got a page that displays properly (and beautifully) in Chrome, Safari, Firefox, and Opera, but very slightly reformats in Internet Explorer and iPhone's mobile version of Safari. Specifically, ...
1
vote
2answers
795 views
Seeking a GUI auto-format feature for T-SQL
Is there a freely available GUI tool that will allow interaction with Microsoft SQL Server (via T-SQL) that provides an auto-format feature?
I constantly find myself writing queries in SQL Query ...
1
vote
2answers
496 views
Tool to reformat VB.Net code - specifically line breaks
Are there any tools available for automatically formatting vb.net code - specifically for adding line breaks at a predefined line length? I'm working with a lot of code with long lines (thousands of ...
0
votes
2answers
230 views
AppleScript: substring to string or format html
I'm working on my applescript right now and I'm stuck here.. Lets take this snippet as an example of html code
<body><div>Apple don't behave accordingly <a href = ...
0
votes
0answers
19 views
Reformat / Reorder the way an XML looks like (with PHP)
I would like to convert the XML bellow to a different format.
Meaning i want to convert this:
<node type="image" name="productImage">
<node type="file" name="pcpart.png" size="19767"/>
...
0
votes
1answer
23 views
Split/Reformat String
I want to split a string and replace some values. The string is a date that looks like this '08/26/2009' I want to reformat it so that it replaces the / with a - so that it looks like this ...
0
votes
0answers
24 views
Reformat code/text to a maximum number of columns with Textmate
I got some source code where some lines exceed more than 200 columns (just comments). I would like to "change" or "reformat" the text so that each line uses a maximum of 100 columns, for instance. Can ...
0
votes
1answer
134 views
How to get the “Reformat code” function out of IntelliJ IDEA?
I love the "Reformat code..." (Ctrl+Alt+L) function of IntelliJ IDEA.
Now I have a lot of XML files to look through. What I am doing now is, I open a xml file, select all, copy and paste into a xml ...
0
votes
2answers
105 views
Make IntelliJ reformat the current line on line-completion
Is there a way to have my line reformatted upon completing it in IntelliJ? (For those familiar, this kind of feature is available on FlashDevelop.)
Let's says I just entered this code in PHP:
...
0
votes
1answer
64 views
Is there an editor to autoindent / add spaces in existing code?
I have some JavaScript code which I want to make more readable. However, due to the amount of code I want to use a tool which does this automatically for me.
Are there such tools already available ...
0
votes
1answer
280 views
Script to reformat XML file
I am trying to change an XML file from one format to another and have no clue as to how to write a script for it. Can someone help, please?
The source file looks like this:
<Record>
...
0
votes
0answers
76 views
Transform source file to different format for target system
I need to design a system which will process hundreds of source files (different format fixed width and delimited files) and convert to one target files. There should be two interfaces one is ...