summaryrefslogtreecommitdiff
path: root/sandbox/oliverr/docbook/rst2docbook.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/oliverr/docbook/rst2docbook.py')
-rwxr-xr-xsandbox/oliverr/docbook/rst2docbook.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/sandbox/oliverr/docbook/rst2docbook.py b/sandbox/oliverr/docbook/rst2docbook.py
deleted file mode 100755
index 75699c8c9..000000000
--- a/sandbox/oliverr/docbook/rst2docbook.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python
-
-# Author: Ollie Rutherfurd
-# Contact: oliver@rutherfurd.net
-# Revision: $Revision$
-# Date: $Date$
-# Copyright: This module has been placed in the public domain.
-
-"""
-A minimal front end to the Docutils Publisher, producing DocBook XML.
-"""
-
-import locale
-try:
- locale.setlocale(locale.LC_ALL, '')
-except:
- pass
-
-from docutils.core import publish_cmdline, default_description
-
-
-description = ('Generates DocBook XML documents from standalone reStructuredText '
- 'sources. ' + default_description)
-
-publish_cmdline(writer_name='docbook', description=description)
-
-
-# :indentSize=4:lineSeparator=\n:noTabs=true:tabSize=4: