From e617b08ab6415251cede874437660122eb32377d Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Fri, 17 Jun 2011 19:26:28 +0200 Subject: [PATCH] add information about the importer in the documentation --- docs/getting_started.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 55cd29d4..2187dbb9 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -92,6 +92,20 @@ generate static pages. Then, use the `DISPLAY_PAGES_ON_MENU` setting, which will add all the pages to the menu. +Importing an existing blog +-------------------------- + +It is possible to import wordpress themes and RSS themes using a script which +is living in `tools`: importer. + +You can call it this way for a wordpress import:: + + $ python importer.py --wpfile /your/wordpress/export -o output_dir + +And like this for an import from an RSS feed:: + + $ python importer.py --feed http://your/rss/feed -o output_dir + Translations ------------