up vote 0 down vote favorite
share [g+] share [fb]

I've got to construct a basic xml file listing website assets (pictures and text strings) that a flash photo gallery references.

I'm using a Mac and OpenOffice. I've got Dreamweaver, dashcode, and a couple of open source IDE's. I'm not a programmer, so scripting gets a little difficult.

I'm hand typing the file right now, but the task is very slow because of the number and order of the "fields" and values for each record in the xml.

Is it possible to set up a spreadsheet of the data and then parse an xml file from that? I've got to follow this format for each record:

<photo imageurl="url" linklabel="text"linkurl="url" showFlipButton="true"><title>text</title><description>text</description></photo>

Thanks a lot everyone.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Using MSExcel I would use the Concatenate() function to manually build out the XML for each row, as a quick and dirty solution. You should be able to do this with OpenOffice as well.

link|improve this answer
Concatenate worked out. The one trick was to create extra columns holding the field names, quotes, and values that had to be inserted in between the data. Also, OpenOffice wanted to use curly quotes for everything, so I had to turn that off. Thanks a lot, Mitchell. I've got a lot of this drudge work to do. – Lman1000 Nov 3 '09 at 0:14
Yes, the extra columns helps.... If this did help, don't forget to select it as the answer... – Mitchel Sellers Nov 4 '09 at 20:52
feedback

Your Answer

 
or
required, but never shown

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