root/galaxy-central/eggs/docutils-0.4-py2.6.egg/EGG-INFO/scripts/rst2s5.py @ 3

リビジョン 3, 0.7 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1#!/afs/bx.psu.edu/project/pythons/linux-x86_64-ucs4/bin/python2.6
2
3# Author: Chris Liechti
4# Contact: cliechti@gmx.net
5# Revision: $Revision: 4156 $
6# Date: $Date: 2005-12-08 05:43:13 +0100 (Thu, 08 Dec 2005) $
7# Copyright: This module has been placed in the public domain.
8
9"""
10A minimal front end to the Docutils Publisher, producing HTML slides using
11the S5 template system.
12"""
13
14try:
15    import locale
16    locale.setlocale(locale.LC_ALL, '')
17except:
18    pass
19
20from docutils.core import publish_cmdline, default_description
21
22
23description = ('Generates S5 (X)HTML slideshow documents from standalone '
24               'reStructuredText sources.  ' + default_description)
25
26publish_cmdline(writer_name='s5', description=description)
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。