vote up 0 vote down star

In one of the propitiatory product on which I am working needs configuration to be setup using large XML files. So I am looking for a solution to easily edit the XML is a visual interface. Tried following

  1. Visual Editor for XML VEX Eclipse Plugin (very early, so features missing)
  2. Using XSLT (Ruled out, Considering the size of DTD's)

Any other tool (similar to vex), which will let me define my own stylesheets for XML Files and/or looking for a different approach.

flag

50% accept rate
Can you clarify what you mean by "easily edit XML in a visual interface"? I'm particularly confused by your mention of XSLT and DTD, since XSLT really has nothing to do with DTDs nor with editing XML in general (it's an XML-to-XML or XML-to-text transformation language). – Pavel Minaev Nov 2 at 21:41
XML files that i have are quite large with nested structure. I intially tried with using XSLT to transform a simple XML to ODS spreadsheet. But couldnt do the same for large nested XMLs. I mentioned DTD's size to indicate the complexity of the XML. – sudhakar Nov 2 at 21:55
Also I need to preserve the non-modified contents of the original XML. – sudhakar Nov 2 at 22:09

1 Answer

vote up 0 vote down check

Try Komodo Edit. It's free, open source, multi-platform and supports XML editing.

From the Komodo Edit online help:
XML AutoComplete and CallTips

Komodo supports XML autocomplete and calltips for basic XML as well as a number of XML dialects, including:

 HTML
 XHTML
 SGML
 RELAX
 RELAX NG
 RDF
 MXML
 XML Schema
 Atom
 Dublin Core
 DocBook
 WAP
 XSLT
 VXML
 SVG
 MathML
 XBL
 XUL
 XML Catalog

Support for additional XML dialects can be configured by adding an XML Catalog for the dialect in the SGML/XML Catalogs section of the Code Intelligence Preferences.

Komodo supports the following types of XML autocomplete:

  • Autocomplete for elements: A list of elements available in the current namespace is supplied upon entering "<". If the current document's XML dialect is not recognized (i.e. it is not in the above list or in a configured catalog), the completion list is drawn from elements used in the document.
  • Autocomplete for attributes: A list of attributes available within in the current element is supplied upon entering a space after the element name.
  • Autocomplete for end-tags: A list (of length one) to close the current tag is supplied upon entering '

If the document does not have an XML declaration, autocomplete will default to XHTML 1.1. The DOCTYPE and namespace can be manually set under File Properties.

link|flag
Komodo IDE looks good. But for my requirement, I have decided to use XML & CSS -> firefox + Jquery + inplace edit = WYSIWYG editor :) – sudhakar Nov 3 at 7:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.