Release 0.12: set version number to 0.12
[docutils.git] / sandbox / agurtovoy / html_frames / tools / rst2htmlframes.py
blobf1bbc61261679c007f86ad21c88a63043a2cca81
1 #!/usr/bin/env python
3 # Author: Aleksey Gurtovoy
4 # Contact: agurtovoy@meta-comm.com
5 # Revision: $Revision$
6 # Date: $Date$
7 # Copyright: This module has been placed in the public domain.
10 import locale
11 try:
12 locale.setlocale(locale.LC_ALL, '')
13 except:
14 pass
16 from docutils.core import publish_cmdline, default_description
19 description = ('Generates "framed" (X)HTML documents from standalone reStructuredText '
20 'sources. ' + default_description)
22 publish_cmdline(writer_name='html4_frames', description=description)