Skip to content

Instantly share code, notes, and snippets.

@henare
Created March 10, 2011 02:41
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save henare/863476 to your computer and use it in GitHub Desktop.
Save henare/863476 to your computer and use it in GitHub Desktop.
Imports a MediaWiki XML export into a Gollum wiki
#!/usr/bin/env ruby
require 'rubygems'
require 'hpricot'
require 'gollum'
wiki = Gollum::Wiki.new('openaustralia.wiki')
file = File.open("OpenAustralia-20110309232515.xml", "r")
doc = Hpricot(file)
doc.search('/mediawiki/page').each do |el|
title = el.at('title').inner_text
content = el.at('text').inner_text
commit = { :message => "Import MediaWiki page #{title} into Gollum",
:name => 'Henare Degan',
:email => 'henare.degan@gmail.com' }
begin
puts "Writing page #{title}"
wiki.write_page(title, :mediawiki, content, commit)
rescue Gollum::DuplicatePageError => e
p "Duplicate #{title}"
end
end
file.close
@schmunk42
Copy link

Very nice! I had to add require 'gollum-lib'

@skyggeovn
Copy link

Thanks a lot, this was a big help! Like @schmunk42, I had to require 'gollum-lib.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment