Skip to content

Instantly share code, notes, and snippets.

@schmunk42
Forked from henare/mw-to-gollum.rb
Last active December 18, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schmunk42/5699677 to your computer and use it in GitHub Desktop.
Save schmunk42/5699677 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'hpricot'
require 'gollum'
require 'gollum-lib'
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment