root/galaxy-central/eggs/docutils-0.4-py2.6.egg/docutils/languages/__init__.py @ 3

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

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

行番号 
1# Author: David Goodger
2# Contact: goodger@users.sourceforge.net
3# Revision: $Revision: 2224 $
4# Date: $Date: 2004-06-05 21:40:46 +0200 (Sat, 05 Jun 2004) $
5# Copyright: This module has been placed in the public domain.
6
7# Internationalization details are documented in
8# <http://docutils.sf.net/docs/howto/i18n.html>.
9
10"""
11This package contains modules for language-dependent features of Docutils.
12"""
13
14__docformat__ = 'reStructuredText'
15
16_languages = {}
17
18def get_language(language_code):
19    if _languages.has_key(language_code):
20        return _languages[language_code]
21    module = __import__(language_code, globals(), locals())
22    _languages[language_code] = module
23    return module
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。