root/galaxy-central/scripts/rst2html.py @ 2

リビジョン 2, 0.6 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

  • 属性 svn:executable の設定値 *
行番号 
1#!/usr/bin/env python
2
3# Author: David Goodger
4# Contact: goodger@users.sourceforge.net
5# Revision: $Revision: 1.2 $
6# Date: $Date: 2004/03/28 15:39:27 $
7# Copyright: This module has been placed in the public domain.
8
9"""
10A minimal front end to the Docutils Publisher, producing HTML.
11"""
12
13try:
14    import locale
15    locale.setlocale(locale.LC_ALL, '')
16except:
17    pass
18
19from docutils.core import publish_cmdline, default_description
20
21
22description = ('Generates (X)HTML documents from standalone reStructuredText '
23               'sources.  ' + default_description)
24
25publish_cmdline(writer_name='html', description=description)
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。