- v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
- Use this page to report any issues related to the migration.
Dwarf Fortress Wiki:Offline wiki
Local Mediawiki instance[edit]
Ok so im mostly just dumping my process here in the hopes that it gets picked up and cleaned/formatted to fit the rest of the wiki
The basic idea is that you aim a script at a mediawiki and have it create a dump of the XML and images in a format thats compatible with the standard MediaWiki import utilities. Once its dumped to file, you import it into a local MediaWiki instance that can be started on-demand.
Step 1: Get a Mediawiki dump[edit]
I did this by using the scripts provided by wikiteam. In my case, my command is as follows:
python dumpgenerator.py --api http://dwarffortresswiki.org/api.php --index http://dwarffortresswiki.org/index.php --xml --images --curonly --path dfwiki
The arguments are mostly self-explanatory, and there are many, many more. The most useful of which is the --resume
option, that will let you restart a stalled/killed/stopped dump operation
This process may take very, very long. While the --curonly
flag will make it skip histories, the default namespace options mean it will still download ALL pages, including file definitions and talk pages. To avoid this, you can apply the --exnamespaces
flag, together with a comma-seperated list of namespaces to skip. To get a list of current namespaces on the Wiki, check the Special:RandomByNamespace page, and tick the box at the top to display the namespace numbers
Step 2: Get a Mediawiki install going.[edit]
I used a very simple XAMPP + mediawiki stack provided by Bitnami
Step 3: Import your pages[edit]
I used the maintenance scripts. The special page might work, but i had issues getting the file uploaded due to its size. Best is to use the importDump.php script, but even that took its time.
If you used the XAMPP stack, the script you want will be located at <XAMPP base>/apps/mediawiki/htdocs/maintenance/importDump.php
In my case, where XAMPP is run from its default /opt/lampp
location, the import command looks like this:
/opt/lampp/bin/php /opt/lampp/apps/mediawiki/htdocs/maintenance/importDump.php --conf /opt/lampp/apps/mediawiki/htdocs/LocalSettings.php < <path to your export file>/dwarffortresswikiorg-date-current.xml
Step 4: Import your images[edit]
I used the MediaWiki importImages.php maintenance script.
If you used the XAMPP stack, the script you want will be located at <XAMPP base>/apps/mediawiki/htdocs/maintenance/importImages.php
In my case, where XAMPP is run from its default /opt/lampp
location, the import command looks like this:
/opt/lampp/bin/php /opt/lampp/apps/mediawiki/htdocs/maintenance/importImages.php <path to your export dir>/images/
Once you have your files imported, you should be able to navigate to http://127.0.0.1/mediawiki/
to get going. Note that the export/import process will not retain things like the index.php page fancyness and will not apply the wonderful plugins that make the current wiki pretty, but you will get the full teext, linking and searching in your local copy.