summaryrefslogtreecommitdiff
path: root/sandbox/agurtovoy/html_frames/tools/htmlframes.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/agurtovoy/html_frames/tools/htmlframes.py')
-rw-r--r--sandbox/agurtovoy/html_frames/tools/htmlframes.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/sandbox/agurtovoy/html_frames/tools/htmlframes.py b/sandbox/agurtovoy/html_frames/tools/htmlframes.py
deleted file mode 100644
index 811b35a63..000000000
--- a/sandbox/agurtovoy/html_frames/tools/htmlframes.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-
-# Author: Aleksey Gurtovoy
-# Contact: agurtovoy@meta-comm.com
-# Revision: $Revision$
-# Date: $Date$
-# Copyright: This module has been placed in the public domain.
-
-
-import locale
-try:
- locale.setlocale(locale.LC_ALL, '')
-except:
- pass
-
-from docutils.core import publish_cmdline, default_description
-
-
-description = ('Generates "framed" (X)HTML documents from standalone reStructuredText '
- 'sources. ' + default_description)
-
-publish_cmdline(writer_name='html4frames', description=description)