<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with xml</title>
      <link>http://ask.metafilter.com/tags/xml</link>
      <description>Questions tagged with 'xml' at Ask MetaFilter.</description>
	  <pubDate>Wed, 25 Nov 2009 08:04:23 -0800</pubDate> <lastBuildDate>Wed, 25 Nov 2009 08:04:23 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>How to merge data fields into a plain text file?</title>
	<link>http://ask.metafilter.com/139055/How%2Dto%2Dmerge%2Ddata%2Dfields%2Dinto%2Da%2Dplain%2Dtext%2Dfile</link>	
	<description>Is there some way to do a &quot;mail merge&quot; type operation on plain text, xml or html files without using a word processor? I&apos;ve been working on our company wiki and I want to bulk create a bunch of pages by merging certain field data from spreadsheets, csv files or other datasources into the template text files that I&apos;ve created.  The output should be XML or plain text.&lt;br&gt;
&lt;br&gt;
I have a separate task where I have a simple html template that I&apos;d like to populate with data pulled from a csv. The output needs to be standard, simple HTML (no funny MS Word markup)&lt;br&gt;
&lt;br&gt;
I have access to MS Office, Open Office and Abiword but everything I&apos;ve tried so far seems to &quot;pollute&quot; my files with word processor type formatting. (I am running KDE on Ubuntu 9.10, but I also have Win XP running as a virtual machine under Virtualbox - I have access to any version of the MS Office software, and obviously anything open source).&lt;br&gt;
&lt;br&gt;
I&apos;m sure there&apos;s some open source tool designed to merge text files. I&apos;m not opposed to using a command line interface although I probably would prefer a GUI. My Google-fu is failing me on this one.&lt;br&gt;
&lt;br&gt;
Any tips on how I should achieve this, or pointers to the tools I should be looking at?&lt;br&gt;
&lt;br&gt;
thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.139055</guid>
	<pubDate>Wed, 25 Nov 2009 08:04:23 -0800</pubDate>
	<category>files</category>
	<category>html</category>
	<category>mailmerge</category>
	<category>merge</category>
	<category>opensource</category>
	<category>script</category>
	<category>scripting</category>
	<category>text</category>
	<category>xml</category>
	<dc:creator>geekgirl397</dc:creator>
	</item>
	<item>
	<title>How do I incorporate a controlled vocabulary into my RELAX rng schema? </title>
	<link>http://ask.metafilter.com/138361/How%2Ddo%2DI%2Dincorporate%2Da%2Dcontrolled%2Dvocabulary%2Dinto%2Dmy%2DRELAX%2Drng%2Dschema</link>	
	<description>[xmlschema filter] So, I&apos;m trying to create a RELAX ng schema and I can&apos;t get my custom controlled vocabulary to validate! I&apos;m a total n00b and I&apos;ve been puzzling over this for a while, so I apologize if my question doesn&apos;t even make sense.  So, I want to classify the documents I&apos;m modeling according to the  &lt;a href=&quot;http://web.archive.org/web/20050213090653/http://www.mda.org.uk/costume/vbt00e.htm&quot;&gt;ICOM Vocabulary of Basic Terms for Cataloguing Costume&lt;/a&gt;. I could create an element that had a &quot;choice&quot; attribute and make a big list of terms as values: &lt;xmp&gt;&lt;value&gt;dress&lt;/value&gt;&lt;value&gt;skirt&lt;/value&gt;&lt;/xmp&gt; and so on.&lt;br&gt;
  &lt;br&gt;
But, the ICOM vocabulary is more complicated than. It breaks each garment down from general to specific, something like Library of Congress classifications. So, the final classification ends up being something like &lt;strong&gt;dress -- one piece -- additional optional pieces to complete the garment&lt;/strong&gt;. And I&apos;m having trouble expressing that hierarchy in XML in a way that validates. ( I get validation errors if I make children for values, or for making too many patterns, or for going straight from &quot;start&quot; to &quot;value&quot;...)&lt;br&gt;
&lt;br&gt;
Help! Is there a way to make this work? &lt;br&gt;
&lt;br&gt;
I know this question is pretty garbled. I&apos;ll be here at the computer all day if I need to clarify!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.138361</guid>
	<pubDate>Tue, 17 Nov 2009 11:03:27 -0800</pubDate>
	<category>rng</category>
	<category>xml</category>
	<category>xmlschema</category>
	<dc:creator>thewrongparty</dc:creator>
	</item>
	<item>
	<title>libxml2 + XPath + local-name()</title>
	<link>http://ask.metafilter.com/132101/libxml2%2DXPath%2Dlocalname</link>	
	<description>Why does my XPath query need a &lt;code&gt;local-name()&lt;/code&gt; call? Here is an XML document I&apos;m trying to yank stuff out of:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;&lt;br&gt;
&amp;lt;listallmycontainersresult xmlns=&quot;http://blah.blah.blah/&quot;&amp;gt;&lt;br&gt;
&amp;lt;containers&amp;gt;&lt;br&gt;
&amp;lt;container&amp;gt;&lt;br&gt;
&amp;lt;name&amp;gt;abcd-1234&amp;lt;/name&amp;gt;&lt;br&gt;
&amp;lt;creationdate&amp;gt;2008-11-08T22:41:12.000Z&amp;lt;/creationdate&amp;gt;&lt;br&gt;
&amp;lt;/container&amp;gt;&lt;br&gt;
 ...&lt;br&gt;
&amp;lt;/containers&amp;gt;&lt;br&gt;
&amp;lt;/listallmycontainersresult&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
I would have thought that the XPath query:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;//container&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
would be enough to get an array of container nodes, but I actually need to send:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;//*[local-name()=&apos;container&apos;]&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Why is this more complex query required? Is there something I would need to do in order to be able to send a simpler query? I am using libxml2 to parse the XML document.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.132101</guid>
	<pubDate>Sat, 05 Sep 2009 23:28:07 -0800</pubDate>
	<category>libxml</category>
	<category>libxml2</category>
	<category>xml</category>
	<category>xpath</category>
	<dc:creator>Blazecock Pileon</dc:creator>
	</item>
	<item>
	<title>Applications for converting XML to Word / PDF?</title>
	<link>http://ask.metafilter.com/131828/Applications%2Dfor%2Dconverting%2DXML%2Dto%2DWord%2DPDF</link>	
	<description>Applications for converting XML to Word / PDF? I&apos;m looking for an application that can convert multiple-record XML files with embedded (encoded) images into human-readable form - Word or PDF preferred.&lt;br&gt;
&lt;br&gt;
Ideally, the application would be easily configurable as an end-user productivity tool, eg with a drag-n-drop interface for laying out which fields appear where on the output file (not unlike a mail merge).&lt;br&gt;
&lt;br&gt;
Splitting the output into separate docs for each record in the XML would also be a bonus.&lt;br&gt;
&lt;br&gt;
Currently, I&apos;m taking a look at Altova Stylevision, but wondering if there are any other products that might also fit these requirements....?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.131828</guid>
	<pubDate>Wed, 02 Sep 2009 18:51:19 -0800</pubDate>
	<category>conversion</category>
	<category>pdf</category>
	<category>xml</category>
	<dc:creator>UbuRoivas</dc:creator>
	</item>
	<item>
	<title>DocBook and XML editor recommendations </title>
	<link>http://ask.metafilter.com/130795/DocBook%2Dand%2DXML%2Deditor%2Drecommendations</link>	
	<description>DocBook/XML editor recommendations I am looking for an XML editor to use for creating technical documentation with DocBook. I&apos;d like to know if anyone has any recommendations. So far, I&apos;ve looked at &lt;a href=&quot;http://www.xmlmind.com/xmleditor/&quot;&gt;XML Mind&lt;/a&gt;, &lt;a href=&quot;http://xml-copy-editor.sourceforge.net/&quot;&gt;XML Copy Editor&lt;/a&gt;, &lt;a href=&quot;http://www.syntext.com/products/serna/&quot;&gt;Serna&lt;/a&gt;, and &lt;a href=&quot;http://www.wmhelp.com/xmlpad3.htm&quot;&gt;XMLPad&lt;/a&gt;. Next on my list to try is &lt;a href=&quot;http://www.oxygenxml.com/&quot;&gt;OxYgen&lt;/a&gt;. I&apos;ve also looked at a few file type plugins for Vim. &lt;br&gt;
&lt;br&gt;
My ideal XML editor would meet the following requirements:&lt;br&gt;
&lt;br&gt;
1. Cross-platform -  I switch between Mac/Windows/Linux depending on context&lt;br&gt;
&lt;br&gt;
2. Able to handle the conversions from DocBook to HTML/PDF/RTF, etc in the editor itself, without having to use an external program&lt;br&gt;
&lt;br&gt;
3. The ability for me to directly edit the content and XML tags with tag completion.  A WYSIWYG function would be a nice benefit, but is not an absolute requirement.&lt;br&gt;
&lt;br&gt;
Cost is somewhat of a factor, but will not limit my choices.  I&apos;m willing to pay for a good editor. Free is always a plus, but sometimes you do get what you pay for. &lt;br&gt;
&lt;br&gt;
Any recommendations are welcome, though. I realize that my ideal editor may not actually exist. I also realize that some of the above editors may do exactly what I want, and that I haven&apos;t spent enough time with the application yet to figure it out. &lt;br&gt;
&lt;br&gt;
As a side question, if there are any DocBook books or tutorials that you might have found useful, please feel free to share. I&apos;ve found a few online tutorials, but I&apos;m always looking for more so I can expand my knowledge.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.130795</guid>
	<pubDate>Fri, 21 Aug 2009 12:02:35 -0800</pubDate>
	<category>docbook</category>
	<category>xml</category>
	<dc:creator>ralan</dc:creator>
	</item>
	<item>
	<title>I need a simple CMS for managing flat xml files</title>
	<link>http://ask.metafilter.com/129230/I%2Dneed%2Da%2Dsimple%2DCMS%2Dfor%2Dmanaging%2Dflat%2Dxml%2Dfiles</link>	
	<description>I build Flash applications for a living. I generally make them configurable via an xml file. I&apos;m looking for a quick and easy solution that would allow me to set up a form that clients could fill out when they want to update the xml. NOTE: everything needs to be hosted on the client&apos;s site, to which I often have limited access. So I don&apos;t want a solution that involves complex DB management. Say I&apos;ve created a Flash app, and the client can skin it by entering color values in an XML file. Non-tech-savvy clients often get frightened by raw XML, so I&apos;d like to start offering them simple CMSes that are customized to their particular config files. Some config files are super-simple, allowing my client so, say, just pick a background color and a video to play. Others are much more complex.&lt;br&gt;
&lt;br&gt;
WHAT I DON&apos;T WANT is anything that involves managing or setting up a database. My clients might not have access to one; the might not know how to manage one; they might not be able to give me access to me. So this all has to be based around flat files.&lt;br&gt;
&lt;br&gt;
I also don&apos;t want an desktop app. I want something browser-based, so my clients can update the Flash app from anywhere.&lt;br&gt;
&lt;br&gt;
Finally, I don&apos;t want anything that I have to host. This should be a solution that I can upload the to client&apos;s site and that they can manage from themselves. It should be password-protected so that other people can&apos;t much around with the Flash app&apos;s settings. &lt;br&gt;
&lt;br&gt;
Ideally, what I&apos;d like is something that can take my xml file (or a schema) and auto-generate an HTML-form based on it. And a simple PHP, Python or whatever script that can take the info they enter into the form and update the xml file.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.129230</guid>
	<pubDate>Tue, 04 Aug 2009 09:15:58 -0800</pubDate>
	<category>cms</category>
	<category>flash</category>
	<category>xml</category>
	<dc:creator>grumblebee</dc:creator>
	</item>
	<item>
	<title>Can You Search For XML Text?</title>
	<link>http://ask.metafilter.com/128585/Can%2DYou%2DSearch%2DFor%2DXML%2DText</link>	
	<description>Do Google and Bing spider XML pages? Some of my HTML pages link to other XML pages. Do Google, Bing and the other search engines index these XML pages?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.128585</guid>
	<pubDate>Tue, 28 Jul 2009 03:41:31 -0800</pubDate>
	<category>bing</category>
	<category>google</category>
	<category>html</category>
	<category>index</category>
	<category>resolved</category>
	<category>search</category>
	<category>spider</category>
	<category>xml</category>
	<dc:creator>netbros</dc:creator>
	</item>
	<item>
	<title>XML sitemap to mindmap?</title>
	<link>http://ask.metafilter.com/124899/XML%2Dsitemap%2Dto%2Dmindmap</link>	
	<description>A mind mapping tool that can import XML sitemaps? I have an XML sitemap. It&apos;s a very large site with lots of pages, and I need to be able to use an automated mindmapping software to show the relationship between pages visually. &lt;br&gt;
&lt;br&gt;
I HAVE to be able to take notes on each page within the mindmapping software. (notate links to each page, etc.)&lt;br&gt;
&lt;br&gt;
I&apos;d LIKE to be able to paste/save images into each page as well. So that if I click on the &quot;about&quot; page I can see the actual screenshot within the mindmap. &lt;br&gt;
&lt;br&gt;
Something like &lt;a href=&quot;http://www.thebrain.com/#-42&quot;&gt;The Brain&lt;/a&gt; is ideal, because you can save screenshots to each item and see them right on click. But it doesn&apos;t let you import XML sitemaps.&lt;br&gt;
&lt;br&gt;
Any ideas of such a tool?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.124899</guid>
	<pubDate>Mon, 15 Jun 2009 18:01:45 -0800</pubDate>
	<category>mindmap</category>
	<category>xml</category>
	<dc:creator>jeff1010</dc:creator>
	</item>
	<item>
	<title>Is it possible to grab XML across domains?</title>
	<link>http://ask.metafilter.com/122468/Is%2Dit%2Dpossible%2Dto%2Dgrab%2DXML%2Dacross%2Ddomains</link>	
	<description>Trying to grab XML across domains, wondering if what I&apos;m trying to do is even possible.. So, I&apos;m working with a group that&apos;s sharing another group&apos;s Plone server -- and which doesn&apos;t have filesystem access on said server. We have data in XML files on another server, and what I&apos;m trying to do is grab those XML files, transform them into something displayable using XSLT, and then display them. It&apos;s not possible (as far as I know) to do this on the server side, due to being on a shared server / not having filesystem access, but doing it on the client side is somewhat impossible-seeming itself, since if I try to bring in the data from the other server using the document() function I run into the predictable &quot;access denied&quot; messages from IE and Firefox (though, weirdly, not Safari). Is there any way to do what I&apos;m trying to do here that will work in all modern browsers?&lt;br&gt;
&lt;br&gt;
Apologies if I&apos;m speaking gibberish; this problem is not in my usual field  and I&apos;m operating more or less at the edge of my understanding.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.122468</guid>
	<pubDate>Mon, 18 May 2009 18:36:51 -0800</pubDate>
	<category>xml</category>
	<category>xslt</category>
	<dc:creator>You Can&apos;t Tip a Buick</dc:creator>
	</item>
	<item>
	<title>How can I help my coworkers create XML documents to store metadata?</title>
	<link>http://ask.metafilter.com/120701/How%2Dcan%2DI%2Dhelp%2Dmy%2Dcoworkers%2Dcreate%2DXML%2Ddocuments%2Dto%2Dstore%2Dmetadata</link>	
	<description>Generating XML documents help?  I work with the county health department, and have been asked to come up with a way to create, store and manipulate metadata for various datasets we store internally on a network drive. Basically I think the simplest thing to do is to create an xml file stored in the same directory with any dataset. Preferably I can do this with infopath 2003 or free software, and using the &lt;a href=&quot;http://dublincore.org/&quot;&gt;Dublin Core&lt;/a&gt; standard for metadata.  I&apos;ve seen the 5 year old answers on Dublin Core Metadata from &lt;a href=&quot;http://ask.metafilter.com/5326/Whats-the-best-way-to-store-Dublin-Core-metadata&quot;&gt;this Ask&lt;/a&gt;, but I need to let my coworkers create the data first, and that mostly covers storage/database solutions.  Looking through various DC list archives hasn&apos;t been helpful. I realize that having an xml file for each dataset may make it hard to actually search and manipulate the data, but at least we&apos;d be storing it somewhere in a standard form. &lt;br&gt;
&lt;br&gt;
We have Office 2003 on all the relevant machines, to the best of my knowledge, and I think Infopath 2003 should be able to create forms which create xml compliant with dublin core (either simple or qualified, preferably the later).  It would be rather difficult to have our IT department  roll out any sort of complex IT solution or have a server setup with the authority I have.  I could however use some sort of database file stored on the network drive.&lt;br&gt;
&lt;br&gt;
I&apos;d really prefer to have forms or generate the XML programatically, rather then having them hand edit a template or something.  The idea is to make storing the data as smooth as possible.&lt;br&gt;
&lt;br&gt;
Does anybody have any suggestions for me or strong useful resources that you can point me too?  I&apos;m not exactly sure how to take the XML schemas for Dublin Core and create a compliant form from it. &lt;br&gt;
&lt;br&gt;
I&apos;m not married to Dublin Core if there is another standard or to infopath 2003 if there is a better program that won&apos;t cost anything.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.120701</guid>
	<pubDate>Tue, 28 Apr 2009 09:50:44 -0800</pubDate>
	<category>2003</category>
	<category>core</category>
	<category>dublin</category>
	<category>enough</category>
	<category>for</category>
	<category>good</category>
	<category>government</category>
	<category>infopath</category>
	<category>metadata</category>
	<category>schema</category>
	<category>statistics</category>
	<category>work</category>
	<category>xml</category>
	<dc:creator>gryftir</dc:creator>
	</item>
	<item>
	<title>My mind is puny.</title>
	<link>http://ask.metafilter.com/120281/My%2Dmind%2Dis%2Dpuny</link>	
	<description>Could someone please point me in the right direction?

I have an xml document that has been extended, and I need to override the xslt that transforms it to html with an import, but I have no idea where to start. The old xml document looks (simplified) like this:&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
&amp;lt;document&amp;gt;&lt;br&gt;
&amp;lt;title&amp;gt;Title Text&amp;lt;/title&amp;gt;&lt;br&gt;
&amp;lt;para&amp;gt;Paragraph Text&amp;lt;/para&amp;gt;&lt;br&gt;
&amp;lt;/document&amp;gt;&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
There was a whole body of xslt dealing with this (I&apos;m talking thousands of lines of code here, it&apos;s really much more complicated than my stupid example leads to believe). Now the dtd has been extended and the xml looks as follows:&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
&amp;lt;document&amp;gt;&lt;br&gt;
  &amp;lt;title&amp;gt;&lt;br&gt;
&lt;strong&gt;   &amp;lt;container1&amp;gt;&lt;br&gt;
      &amp;lt;container2&amp;gt;&lt;br&gt;
        &amp;lt;block attr=&quot;1&quot;&amp;gt;Title Text for a&amp;lt;/block&amp;gt;&lt;br&gt;
        &amp;lt;block attr=&quot;2&quot;&amp;gt;Title Text for b&amp;lt;/block&amp;gt;&lt;br&gt;
      &amp;lt;/container2&amp;gt;&lt;br&gt;
    &amp;lt;/container1&amp;gt;&lt;/strong&gt;&lt;br&gt;
  &amp;lt;/title&amp;gt;&lt;br&gt;
  &amp;lt;para&amp;gt;&lt;br&gt;
&lt;strong&gt;    &amp;lt;container1&amp;gt;&lt;br&gt;
      &amp;lt;container2&amp;gt;&lt;br&gt;
        &amp;lt;block attr=&quot;1&quot;&amp;gt;Paragraph Text for a&amp;lt;/block&amp;gt;&lt;br&gt;
        &amp;lt;block attr=&quot;2&quot;&amp;gt;Paragraph Text for b&amp;lt;/block&amp;gt;&lt;br&gt;
      &amp;lt;/container2&amp;gt;&lt;br&gt;
    &amp;lt;/container1&amp;gt;&lt;/strong&gt;&lt;br&gt;
  &amp;lt;/para&amp;gt;&lt;br&gt;
&amp;lt;/document&amp;gt;&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
The idea is to now generate 2 html documents, one for case a and one for case b. So the whole body of xslt dealing with this document still applies, only I need to import an additional xslt file that tells the original xslt to ignore &amp;lt;container1&amp;gt; and &amp;lt;container2&amp;gt; and &amp;lt;block attr=&quot;1|2&quot;&amp;gt; and then proceed as usual. But how? I&apos;ve only hacked a bit of xslt up till now, so while I know how it works I don&apos;t actually have a solid base to work from.&lt;br&gt;
&lt;br&gt;
I&apos;ll start learning it soon, but I need to get this done now...</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.120281</guid>
	<pubDate>Thu, 23 Apr 2009 06:32:51 -0800</pubDate>
	<category>resolved</category>
	<category>xml</category>
	<category>xslt</category>
	<dc:creator>Skyanth</dc:creator>
	</item>
	<item>
	<title>working with a corrupted XML file</title>
	<link>http://ask.metafilter.com/120031/working%2Dwith%2Da%2Dcorrupted%2DXML%2Dfile</link>	
	<description>Seeking any way to view the contents of a (possibly corrupted) XML file.  It&apos;s the database file from a Mac app that manages plain-text notes. Please help me force a look at the human-readable text that&apos;s somehow inside this file.  I hope I am just missing something basic.&lt;br&gt;
&lt;br&gt;
The file is about 6MB and it has the extension .nbdb.  The app that created it is called Mark/Space Notebook.  I&apos;m running Mac OS 10.4.11.  &lt;br&gt;
&lt;br&gt;
The result when I open the file with Text Edit is an XML document where most of the contents is just a stream of text like UAcgBlABoAGIA...  (Details in the first answer below, if you need.)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;More info, if helpful:&lt;/strong&gt;&lt;br&gt;
Mark/Space Notebook is the text-notes-management app that came with Missing Sync for BlackBerry, which I bought in 2007.  Both the syncing and this notes app worked fine for a year.  Then I stopped using the BlackBerry and I switched to a better notes-management app from another company.  So I started manually transferring my notes from M/S NB to this new app, but I wasn&apos;t close to finished when, one day, M/S NB suddenly wouldn&apos;t start up.  Instead, any attempt to open it resulted in the dialog, &quot;Your database was created with a pre-release version of Notebook and cannot be opened.&quot;  &lt;br&gt;
&lt;br&gt;
After a long and frustrating experience with two tech support people -- including installing and reinstalling other versions of the app -- their conclusion was that there is no issue at all with app version; my database file is just corrupted.  (Yes, the app can produce new, openable databases just fine, so I think the support guys are right and it is the file itself.)&lt;br&gt;
&lt;br&gt;
Their only solution now is that I email them the file so they can open it and send me back the text it contains.  I can&apos;t do that; this is confidential info I would never share with a stranger (even one who&apos;d inspired trust already with consistently clueful communication, which these guys have not).&lt;br&gt;
&lt;br&gt;
All my backups of the file produce the same error because I apparently don&apos;t have any from before whenever it was corrupted (yes, I have definitely learned a lesson about retaining old baks).  The Blackberry itself is long since wiped and sold, so I can&apos;t just look at the copies of the notes that were on the BB.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.120031</guid>
	<pubDate>Mon, 20 Apr 2009 15:01:23 -0800</pubDate>
	<category>corrupted</category>
	<category>open</category>
	<category>plaintext</category>
	<category>resolved</category>
	<category>xml</category>
	<dc:creator>sparrows</dc:creator>
	</item>
	<item>
	<title>But why would anyone /want/ to read my livejournal?</title>
	<link>http://ask.metafilter.com/119021/But%2Dwhy%2Dwould%2Danyone%2Dwant%2Dto%2Dread%2Dmy%2Dlivejournal</link>	
	<description>Inspired by the &lt;a href=&quot;http://booktwo.org/notebook/vanity-press-plus-the-tweetbook/&quot;&gt;Tweetbook&lt;/a&gt; I&apos;ve decided to use &lt;a href=&quot;http://www.lulu.com/&quot;&gt;Lulu&lt;/a&gt; to make a print version of my high school-era livejournal. How do I easily turn the XML file with all of of my entries, comments, and associated metadata into something I can print? I have very little knowledge of html and virtually no knowledge of XML or CSS. All I want is to automate something that will say &quot;The date goes in bold here, the entry goes here, and the comments are indented here&quot;. What should I start learning in order to make this happen?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.119021</guid>
	<pubDate>Wed, 08 Apr 2009 18:12:05 -0800</pubDate>
	<category>book</category>
	<category>design</category>
	<category>publish</category>
	<category>publishing</category>
	<category>style</category>
	<category>xml</category>
	<dc:creator>Newbornstranger</dc:creator>
	</item>
	<item>
	<title>How can I generate a text list of image filenames and dimensions on OS X?</title>
	<link>http://ask.metafilter.com/118548/How%2Dcan%2DI%2Dgenerate%2Da%2Dtext%2Dlist%2Dof%2Dimage%2Dfilenames%2Dand%2Ddimensions%2Don%2DOS%2DX</link>	
	<description>How can I generate a text list of image filenames and dimensions on OS X? I have about 150 images and I would like to generate a tidy little text list of these images&apos; filenames and dimensions (in pixels.)&lt;br&gt;
&lt;br&gt;
Ultimately this will be uses to populate an XML file for use with an image gallery, if that helps at all.&lt;br&gt;
&lt;br&gt;
I&apos;m just trying to avoid having to manually write out each individual width and height.&lt;br&gt;
&lt;br&gt;
I&apos;m running Leopard (10.5.6) and have access to Adobe CS4 software, but as far as I can tell this isn&apos;t possible with something like Bridge and Googling has failed me.  &lt;br&gt;
&lt;br&gt;
Any ideas?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.118548</guid>
	<pubDate>Fri, 03 Apr 2009 12:28:12 -0800</pubDate>
	<category>images</category>
	<category>lists</category>
	<category>OSX</category>
	<category>XML</category>
	<dc:creator>joshwebb</dc:creator>
	</item>
	<item>
	<title>Help me not have to recreate my Google Map!</title>
	<link>http://ask.metafilter.com/117106/Help%2Dme%2Dnot%2Dhave%2Dto%2Drecreate%2Dmy%2DGoogle%2DMap</link>	
	<description>GoogleMapFilter: can I export my data so I can create a new map? I have created a Google map. It&apos;s fine and dandy, but I have another project where almost all the data is duplicated, with additions, and I want to create a new map and have better icons, links, etc.&lt;br&gt;
&lt;br&gt;
Is there anyway for me to download the data so I don&apos;t have to reinvent my Googlewheel?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.117106</guid>
	<pubDate>Wed, 18 Mar 2009 15:55:39 -0800</pubDate>
	<category>googlemaps</category>
	<category>kml</category>
	<category>xml</category>
	<dc:creator>potsmokinghippieoverlord</dc:creator>
	</item>
	<item>
	<title>software to graph/analyse numeric data in xml file?</title>
	<link>http://ask.metafilter.com/115755/software%2Dto%2Dgraphanalyse%2Dnumeric%2Ddata%2Din%2Dxml%2Dfile</link>	
	<description>software to graph/analyse numeric data in xml file?&lt;br&gt;
I&apos;ve got lots and lots of numbers and I&apos;d like to look at a pretty graph. Hello,&lt;br&gt;
&lt;br&gt;
I have some data in an xml files that I want to plot and analyse.&lt;br&gt;
&lt;br&gt;
The data consists of sample points, each sample has a value and a timestamp. The samples are all sorted by time, so I think it should be fairly straight forward to plot the points&lt;br&gt;
&lt;br&gt;
I might end having to look at lots of similar files, so it would be good to find a really efficient way of processing the data.&lt;br&gt;
&lt;br&gt;
Mostly I&apos;ll just need to look at the graph, occasionally I&apos;ll want to super impose two graphs on top of each other.&lt;br&gt;
&lt;br&gt;
I have used Mathematica, so thats somewhat familiar ground, but I wouldn&apos;t have a clue how to import data into it&lt;br&gt;
&lt;br&gt;
any suggestions?&lt;br&gt;
&lt;br&gt;
cheers&lt;br&gt;
&lt;br&gt;
Mat&lt;br&gt;
&lt;br&gt;
here&apos;s a snippet of the xml:&lt;br&gt;
&lt;br&gt;
 the first number is the value&lt;br&gt;
 the second is the timestamp&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&lt;br&gt;
&amp;lt;array&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;-0.47238370776176453&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;2616.4930366660001&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;/array&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;array&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;-0.45421510934829712&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;2616.502291666&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;/array&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;array&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;-0.43604651093482971&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;real&amp;gt;2616.512025&amp;lt;/real&amp;gt;&lt;br&gt;&lt;br&gt;
  &amp;lt;/array&amp;gt;&lt;br&gt;&lt;br&gt;
&lt;/code&gt;</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.115755</guid>
	<pubDate>Tue, 03 Mar 2009 20:51:58 -0800</pubDate>
	<category>data</category>
	<category>xml</category>
	<dc:creator>compound eye</dc:creator>
	</item>
	<item>
	<title>My application requests an XML file and I need to plan how to host that file so it&apos;s always available and zippy</title>
	<link>http://ask.metafilter.com/115649/My%2Dapplication%2Drequests%2Dan%2DXML%2Dfile%2Dand%2DI%2Dneed%2Dto%2Dplan%2Dhow%2Dto%2Dhost%2Dthat%2Dfile%2Dso%2Dits%2Dalways%2Davailable%2Dand%2Dzippy</link>	
	<description>Please give me some input on web hosting planning for a small XML file which might get a lot of requests. I&apos;m working on an application which allows the user to load an XML file.  The XML is less than 2K and will probably be loaded once per usage session, which could happen a few times a day.  I can&apos;t speculate about how many users there will be, but the  outcome that I need to (over)plan for is the one where there are metric fuckloads right out of the gate.&lt;br&gt;
&lt;br&gt;
How would you host this file to make sure it is always reachable and zippy?  Would you trust one single hosting company to host it?  Which one/which plan?  Which hosts would you avoid like the plague?  Or would you put your eggs in multiple baskets and have a couple of hosts which the app can try in sequence to see if they are reachable?  I&apos;m  willing to pay for bulletproof uptime and reliability, doesn&apos;t have to be a cheapass plan, but it might not be cost-effective to pay for a hosting plan oriented towards customers who need huge amounts of bandwidth or root access rather than the ability to handle lots of simultaneous low-bandwidth requests of one dinky file.&lt;br&gt;
&lt;br&gt;
Thanks very much for your input!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.115649</guid>
	<pubDate>Tue, 03 Mar 2009 05:17:36 -0800</pubDate>
	<category>host</category>
	<category>hosting</category>
	<category>reachability</category>
	<category>redundancy</category>
	<category>server</category>
	<category>software</category>
	<category>web</category>
	<category>xml</category>
	<dc:creator>Your Time Machine Sucks</dc:creator>
	</item>
	<item>
	<title>Why are there no items in the category feeds of my self-hosted WordPress blog even though my overall feed is fine?</title>
	<link>http://ask.metafilter.com/112731/Why%2Dare%2Dthere%2Dno%2Ditems%2Din%2Dthe%2Dcategory%2Dfeeds%2Dof%2Dmy%2Dselfhosted%2DWordPress%2Dblog%2Deven%2Dthough%2Dmy%2Doverall%2Dfeed%2Dis%2Dfine</link>	
	<description>Why are there no items in the category feeds of my self-hosted WordPress blog even though my overall feed is fine? I have a self-hosted blog at &lt;a href=&quot;http://raddevon.com/&quot;&gt;raddevon.com&lt;/a&gt;. My &lt;a href=&quot;http://raddevon.com/feed/&quot;&gt;overall feed&lt;/a&gt; updates normally with all my posted items. I am using my categories in my posting, but all my feeds for the three overall categories on my site are empty.&lt;br&gt;
&lt;br&gt;
The category feeds:&lt;br&gt;
&lt;a href=&quot;http://raddevon.com/category/gaming/feed/&quot;&gt;http://raddevon.com/category/gaming/feed/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://raddevon.com/category/tech/feed/&quot;&gt;http://raddevon.com/category/tech/feed/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://raddevon.com/category/internet/feed/&quot;&gt;http://raddevon.com/category/internet/feed/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I&apos;m running WordPress 2.7. I would really appreciate any insight you might have. Other resources have failed miserably to answer this question. Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.112731</guid>
	<pubDate>Tue, 27 Jan 2009 16:01:10 -0800</pubDate>
	<category>blog</category>
	<category>categories</category>
	<category>feeds</category>
	<category>rss</category>
	<category>wordpress</category>
	<category>xml</category>
	<dc:creator>raddevon</dc:creator>
	</item>
	<item>
	<title>How do I learn *about* xml (as opposed to learning to write xml code)</title>
	<link>http://ask.metafilter.com/112447/How%2Ddo%2DI%2Dlearn%2Dabout%2Dxml%2Das%2Dopposed%2Dto%2Dlearning%2Dto%2Dwrite%2Dxml%2Dcode</link>	
	<description>Where/how do I learn enough about xml to communicate with elance contractors producing xml output for my company?

I am computer literate and had no trouble learning the basics of hierarchical structure, well-formed code, tags etc. from a couple of online tutorials, but I have no programming experience and I wouldn&apos;t actually be writing any code myself. The highly rated xml books I&apos;ve found on Amazon seem to be written mostly with programmers in mind. My boss (who basically knows what end result he needs) has asked me to make sure a couple of data harvesting projects get done. Our IT guy is in another city, over his head in some big hairy thing, and he doesn&apos;t have time to train me or answer questions every day. I don&apos;t mind learning on the fly, and in a small business this kind of versatility is actually how I add value. That also means I manage a wide range of projects, most of which have little to do with technology, so I&apos;m not looking to become an expert. &lt;br&gt;
&lt;br&gt;
Generally speaking, I need to educate myself so I can make intelligent requests of elance contractors who are doing the actual work. Intelligent requests would include anticipating the need to merge the results of two scrapes and mapping the desired output appropriately ahead of time. It would also be useful to have a sense of how reasonable some requests are that seem simple to me in principle -- like changing an existing xml file to conform to a given schema. &lt;br&gt;
&lt;br&gt;
I can give this a few hours a week over the next few weeks. Thanks in advance, and please don&apos;t blast me for aspiring to become a dilettante. :-)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.112447</guid>
	<pubDate>Fri, 23 Jan 2009 12:38:47 -0800</pubDate>
	<category>dataharvest</category>
	<category>resolved</category>
	<category>xml</category>
	<dc:creator>gigimakka</dc:creator>
	</item>
	<item>
	<title>Atom Python Library</title>
	<link>http://ask.metafilter.com/112311/Atom%2DPython%2DLibrary</link>	
	<description>Is there an Atom or (better yet) AtomPub library for Python? This would save me loads of API XML design time if I can just reuse the Atom infrastructure.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.112311</guid>
	<pubDate>Thu, 22 Jan 2009 07:29:46 -0800</pubDate>
	<category>api</category>
	<category>atom</category>
	<category>python</category>
	<category>xml</category>
	<dc:creator>k7lim</dc:creator>
	</item>
	<item>
	<title>C#: capture data, display to user, save to disk, upload to database: BEST approach</title>
	<link>http://ask.metafilter.com/111953/C%2Dcapture%2Ddata%2Ddisplay%2Dto%2Duser%2Dsave%2Dto%2Ddisk%2Dupload%2Dto%2Ddatabase%2DBEST%2Dapproach</link>	
	<description>I have a program that captures live data from a piece of hardware on a set interval. The data is returned as XML. There are several things I would like to do with this data (in order): -display it to user -save it to disk -eventually, upload it to database My current approach is to take the XML, parse it into a hashtable so I can display the correct values to the user.&lt;br&gt;
&lt;br&gt;
Next, I want to save the XML to a file on disk. For each data capture session I am planning on creating a unique XML file and I will dump all the data into it.&lt;br&gt;
&lt;br&gt;
Finally, I would like to reparse the XML and upload it to a MySQL database. The data cannot be immediately uploaded to the database.&lt;br&gt;
&lt;br&gt;
This seems really inefficient method of solving this problem and I would love some advice.&lt;br&gt;
&lt;br&gt;
Is it a waste of hd space to save the data as XML?&lt;br&gt;
&lt;br&gt;
Is it THAT inefficient to have to reparse the XML in order to write it to a database?&lt;br&gt;
&lt;br&gt;
Thank you!&lt;br&gt;
&lt;br&gt;
To clarify: a typical XML response will be ~1kb and are captured at a rate of about 1 response every 15-60 seconds.&lt;br&gt;
&lt;br&gt;
I think I do want to store the XML as XML on the disk because the data is very valuable and a pain to reproduce (if it is even possible). Thank you!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.111953</guid>
	<pubDate>Sat, 17 Jan 2009 22:45:59 -0800</pubDate>
	<category>c</category>
	<category>programming</category>
	<category>xml</category>
	<dc:creator>jdlugo</dc:creator>
	</item>
	<item>
	<title>Not-So-SimpleXML</title>
	<link>http://ask.metafilter.com/108740/NotSoSimpleXML</link>	
	<description>How can I search an XML file with PHP 5? i have an XML file that looks like this:&lt;br&gt;
&lt;code&gt;&lt;br&gt;
[redirects]&lt;br&gt;
[story]&lt;br&gt;
[news_id]200810243[/news_id]&lt;br&gt;
[new_url]new_url_one[/new_url]&lt;br&gt;
[/story]&lt;br&gt;
[story]&lt;br&gt;
[news_id]200809024[/news_id]&lt;br&gt;
[new_url]new_url_two[/new_url]&lt;br&gt;
[/story]&lt;br&gt;
[/redirects]&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
I need to find the new_url for a given news_id. For example, if the news_id is 200809024, I need new_url_two.&lt;br&gt;
&lt;br&gt;
I can use SimpleXML to load the file and use PHP 5 to loop through each of the items. There are about 1,300 items, though, so I thought it&apos;d be more efficient to find the new_url that matches the news_id I want. I&apos;ve looked at tutorials for SimpleXML, XPath, and XQuery, can&apos;t find a solution.&lt;br&gt;
&lt;br&gt;
&lt;small&gt;(Replaced angled brackets with square ones.)&lt;/small&gt;</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.108740</guid>
	<pubDate>Mon, 08 Dec 2008 16:11:28 -0800</pubDate>
	<category>php</category>
	<category>simplexml</category>
	<category>xml</category>
	<dc:creator>kirkaracha</dc:creator>
	</item>
	<item>
	<title>Display a custom rss feed in the same way that iGoogle does when you add a feed normally?</title>
	<link>http://ask.metafilter.com/103612/Display%2Da%2Dcustom%2Drss%2Dfeed%2Din%2Dthe%2Dsame%2Dway%2Dthat%2DiGoogle%2Ddoes%2Dwhen%2Dyou%2Dadd%2Da%2Dfeed%2Dnormally</link>	
	<description>I am attempting to create a Google Gadget that displays RSS feeds on the iGoogle page. The problem that I&apos;m having is that the gadget does not display the RSS in the same way as adding an XML to iGoogle does, there is a different display depending on theme and device. So, if you add the Metafilter Gadget, which is just the Metafilter RSS feed, it displays in one way. Switch to another theme and it changes to a different display.&lt;br&gt;
&lt;br&gt;
Sorry if this doesn&apos;t come out clear, but the question that I&apos;m wondering is whether anyone has experience with this, and whether or not anyone is aware of a way to interact with the API at this level and display an XML RSS feed the same way that Google does. Also, better documented API for the _IG_* namespace would be helpful as well.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.103612</guid>
	<pubDate>Tue, 07 Oct 2008 06:38:48 -0800</pubDate>
	<category>api</category>
	<category>dev</category>
	<category>feed</category>
	<category>igoogle</category>
	<category>rss</category>
	<category>style</category>
	<category>xml</category>
	<dc:creator>gregschoen</dc:creator>
	</item>
	<item>
	<title>History of XML-RPC/WebServices</title>
	<link>http://ask.metafilter.com/99165/History%2Dof%2DXMLRPCWebServices</link>	
	<description>Can anyone provide me with information about the earliest forms of RPC over http? 

I&apos;m looking for predecessor systems or papers that describe the desire or implementation of moving RPC (or any other remote object access) to the Web, or even to the Internet generally.  I don&apos;t necessarily need text-based implementations like XML-RPC, but that seems like one area of possible information.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.99165</guid>
	<pubDate>Thu, 14 Aug 2008 07:11:11 -0800</pubDate>
	<category>rpc</category>
	<category>webservices</category>
	<category>xml</category>
	<category>xmlrpc</category>
	<category>xml-rpc</category>
	<dc:creator>jwmelvin</dc:creator>
	</item>
	<item>
	<title>Library of Congress Classifications in XML?</title>
	<link>http://ask.metafilter.com/98041/Library%2Dof%2DCongress%2DClassifications%2Din%2DXML</link>	
	<description>Is there a machine readable version of the Library of Congress Classifications? I&apos;m essentially looking for an XML representation of &lt;a href=&quot;http://www.loc.gov/catdir/cpso/lcco/&quot;&gt;this data&lt;/a&gt;.   I&apos;m working with the Project Gutenberg index and I&apos;d like to be able to find my way back from the LCC abbreviation to descriptive text for the category.&lt;br&gt;
&lt;br&gt;
Any help would be appreciated.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.98041</guid>
	<pubDate>Thu, 31 Jul 2008 23:16:56 -0800</pubDate>
	<category>LCC</category>
	<category>libraryofcongress</category>
	<category>xml</category>
	<dc:creator>tkolar</dc:creator>
	</item>
	
	</channel>
</rss>

