Skip to content

Instantly share code, notes, and snippets.

View organisciak's full-sized avatar

Peter Organisciak organisciak

View GitHub Profile
@organisciak
organisciak / 00-day-of-dh-2012-combined.xml
Created November 3, 2012 18:24
Process Wordpress Export for Mallet
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8"?>
<!--July 18, 2012-->
<ddh date="March 27th, 2012">
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.1/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
// Note, parts of this code are based on the default ubiquity commands
function getJSONArray(url, callback) {
jQuery.getJSON(url,
function (data) {
callback(data);
});
}
function getCSVArray(url, callback) {
Utils.ajaxGet(url, function(data) {