You are currently browsing the Tom Malaher’s BrainScan weblog archives for December, 2006.
- Bookmarks (105)
- Fr0n (1)
- LifeInGeneral (2)
- On the trail (4)
- Photos (3)
- Practice (6)
- Software (8)
- Tools (8)
- March 11, 2010: links for 2010-03-11
- March 8, 2010: links for 2010-03-08
- March 7, 2010: links for 2010-03-07
- March 4, 2010: links for 2010-03-04
- February 25, 2010: links for 2010-02-25
- February 9, 2010: links for 2010-02-09
- February 7, 2010: links for 2010-02-07
- February 4, 2010: links for 2010-02-04
- January 29, 2010: links for 2010-01-29
- December 31, 2009: links for 2009-12-31
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
- December 2006
- May 2006
- June 2004
- May 2004
- February 2004
Archive for December 2006
JEdit - Programmer’s Text Editor
December 5, 2006 by tmalaher.
My editor of choice, when not using an IDE like NetBeans:
jEdit - Programmer’s Text Editor
Features:
- It’s written in Java so it’s cross platform
- It has a million plug ins that do useful things
- Free, open source.
- It has a nice XML/HTML editing mode that does “code completion” on tags and attributes, and gives you a tree view and validation error list.
- It has syntax coloring for more computer languages than you can shake a Turing Machine at.
- It can even compile and run code from within the editor, so if you don’t have an IDE, you can turn it into a poor-man’s one, or use it for languages that don’t otherwise have an IDE, like Perl.
- It can remotely edit files over [S]FTP.
- There’s CVS integration (…note to self: check for Subversion integration…)
powered by performancing firefox
Posted in Tools | Print | No Comments »
XMLmind XML Edtior
December 5, 2006 by tmalaher.
Here’s a tool I really like, for editing XML files, especially ones that have useful “human readable” representations, like XHTML:
Features:
- There’s a “free” version (lacking some features). Professional version isn’t unreasonable for a single seat.
- Written in Java so it’s cross platform
- You can easily create new templates for new XML schemas (just create or point at a DTD and a CSS stylesheet from a valid, minimal, but otherwise empty XML file conforming to the DTD)
- Has a plug-in architecture, and there are a few plugins you can get right from their site, as well as write your own.
I find myself using it to edit XHTML, DocBook and other XML file types (e.g. DITA).
The advantage over something like JEdit is that rather than telling you when you create invalid markup, it won’t let you create invalid markup. And it certainly won’t let you create non-well-formed markup. (If the preceeding distinction isn’t clear then read the definitions of well-formed and valid.)
powered by performancing firefox
Posted in Tools | Print | No Comments »