diff options
Diffstat (limited to 'sandbox/aahz/OO/publish.py')
-rwxr-xr-x | sandbox/aahz/OO/publish.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sandbox/aahz/OO/publish.py b/sandbox/aahz/OO/publish.py deleted file mode 100755 index 006d3fd97..000000000 --- a/sandbox/aahz/OO/publish.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python - -# Author: David Goodger -# Contact: goodger@users.sourceforge.net -# Revision: $Revision$ -# Date: $Date$ -# Copyright: This module has been placed in the public domain. - -""" -A minimal front end to the Docutils Publisher, producing pseudo-XML. -""" - -import locale -try: - locale.setlocale(locale.LC_ALL, '') -except: - pass - -from docutils.core import publish, default_description - -import OOdirectives - - -description = ('Generates pseudo-XML from standalone reStructuredText ' - 'sources (for testing purposes). ' + default_description) - -publish(description=description) |