vote up 0 vote down star

Hi,

I need to edit XML files on a small Linux box that we have created. We have only SSH access on theses boxes. Is there a dedicated XML editor, or a configuration for Vim/Emacs to edit XML easily, with integrated XSD validation?

I found some tutorials for Vi http://oss.sgi.com/LDP/HOWTO/Vim-HOWTO/xml%5Feditor.html http://vim.wikia.com/wiki/Vim%5Fas%5FXML%5FEditor http://www.pinkjuice.com/howto/vimxml/

Regards, Cédric

flag

If all your other boxes are Windows, you can try dokan-dev.net/en/download to mount your Linux drive over ssh (with sshfs) and edit using your Windows tools. There are equivalent libraries available for Mac (search for 'ssfhs' or 'fuse'). – mikem Oct 22 at 8:22
We have a lot of boxes and we use severals Windows/Linux PC to work, so disk mount may not be easy to maintain. – Cédric Girard Oct 22 at 8:55

3 Answers

vote up 2 vote down check

Emacs has XML support out of the box via the PSGML mode. It supports DTD validation, auto tag closing, sytax-coloring, etc.

I have used another package though, called nXML, because I needed schema support.

http://www.thaiopensource.com/nxml-mode

link|flag
vote up 0 vote down

vim should recognise the xml syntax if you switch highlighting on. Otherwise, as XML is plain text, you can quite happily edit with vim or vi -- but with no syntax checks.

If you have ssh running you should be able to use the secure copy command "scp" to move the file to and from your local machine edit it with your favourate tool.

link|flag
we often open a lot of file, so scp/sftp is not an easy solution – Cédric Girard Oct 22 at 8:47
Worth looking at "Winscp" then. Make the remote directory look like a local folder on your windows box. – James Anderson Oct 22 at 9:14
vote up 1 vote down

Emacs with tramp extension is what you need.

link|flag

Your Answer

Get an OpenID
or

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