mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Update Sphinx URL to new sphinx-doc.org domain.
This commit is contained in:
parent
f9b1f7d2f2
commit
4763419db1
2
EXAMPLES
2
EXAMPLES
@ -106,7 +106,7 @@ Documentation using the sphinxdoc theme
|
|||||||
http://www.tango-controls.org/static/PyTango/latest/doc/html/index.html
|
http://www.tango-controls.org/static/PyTango/latest/doc/html/index.html
|
||||||
* Reteisi: http://www.reteisi.org/contents.html
|
* Reteisi: http://www.reteisi.org/contents.html
|
||||||
* Satchmo: http://www.satchmoproject.com/docs/dev/
|
* Satchmo: http://www.satchmoproject.com/docs/dev/
|
||||||
* Sphinx: http://sphinx.pocoo.org/
|
* Sphinx: http://sphinx-doc.org/
|
||||||
* Sqlkit: http://sqlkit.argolinux.org/
|
* Sqlkit: http://sqlkit.argolinux.org/
|
||||||
* Tau: http://www.tango-controls.org/static/tau/latest/doc/html/index.html
|
* Tau: http://www.tango-controls.org/static/tau/latest/doc/html/index.html
|
||||||
* Total Open Station: http://tops.berlios.de/
|
* Total Open Station: http://tops.berlios.de/
|
||||||
|
@ -21,7 +21,7 @@ After installing::
|
|||||||
|
|
||||||
Then, direct your browser to ``_build/html/index.html``.
|
Then, direct your browser to ``_build/html/index.html``.
|
||||||
|
|
||||||
Or read them online at <http://sphinx.pocoo.org/>.
|
Or read them online at <http://sphinx-doc.org/>.
|
||||||
|
|
||||||
|
|
||||||
Testing
|
Testing
|
||||||
|
4
doc/_templates/index.html
vendored
4
doc/_templates/index.html
vendored
@ -62,9 +62,9 @@
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
You can also download PDF versions of the Sphinx documentation:
|
You can also download PDF versions of the Sphinx documentation:
|
||||||
a <a href="http://sphinx.pocoo.org/sphinx.pdf">version</a> generated from
|
a <a href="http://sphinx-doc.org/sphinx.pdf">version</a> generated from
|
||||||
the LaTeX Sphinx produces, and
|
the LaTeX Sphinx produces, and
|
||||||
a <a href="http://sphinx.pocoo.org/sphinx-rst2pdf.pdf">version</a> generated
|
a <a href="http://sphinx-doc.org/sphinx-rst2pdf.pdf">version</a> generated
|
||||||
by rst2pdf.
|
by rst2pdf.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
2
doc/_templates/indexsidebar.html
vendored
2
doc/_templates/indexsidebar.html
vendored
@ -14,7 +14,7 @@
|
|||||||
<p>Get Sphinx from the <a href="http://pypi.python.org/pypi/Sphinx">Python Package
|
<p>Get Sphinx from the <a href="http://pypi.python.org/pypi/Sphinx">Python Package
|
||||||
Index</a>, or install it with:</p>
|
Index</a>, or install it with:</p>
|
||||||
<pre>easy_install -U Sphinx</pre>
|
<pre>easy_install -U Sphinx</pre>
|
||||||
<p>Latest <a href="http://sphinx.pocoo.org/latest/">development version docs</a>
|
<p>Latest <a href="http://sphinx-doc.org/latest/">development version docs</a>
|
||||||
are also available.</p>
|
are also available.</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -23,14 +23,14 @@ modindex_common_prefix = ['sphinx.']
|
|||||||
html_static_path = ['_static']
|
html_static_path = ['_static']
|
||||||
html_sidebars = {'index': ['indexsidebar.html', 'searchbox.html']}
|
html_sidebars = {'index': ['indexsidebar.html', 'searchbox.html']}
|
||||||
html_additional_pages = {'index': 'index.html'}
|
html_additional_pages = {'index': 'index.html'}
|
||||||
html_use_opensearch = 'http://sphinx.pocoo.org'
|
html_use_opensearch = 'http://sphinx-doc.org'
|
||||||
|
|
||||||
htmlhelp_basename = 'Sphinxdoc'
|
htmlhelp_basename = 'Sphinxdoc'
|
||||||
|
|
||||||
epub_theme = 'epub'
|
epub_theme = 'epub'
|
||||||
epub_basename = 'sphinx'
|
epub_basename = 'sphinx'
|
||||||
epub_author = 'Georg Brandl'
|
epub_author = 'Georg Brandl'
|
||||||
epub_publisher = 'http://sphinx.pocoo.org/'
|
epub_publisher = 'http://sphinx-doc.org/'
|
||||||
epub_scheme = 'url'
|
epub_scheme = 'url'
|
||||||
epub_identifier = epub_publisher
|
epub_identifier = epub_publisher
|
||||||
epub_pre_files = [('index.html', 'Welcome')]
|
epub_pre_files = [('index.html', 'Welcome')]
|
||||||
|
2
setup.py
2
setup.py
@ -150,7 +150,7 @@ else:
|
|||||||
setup(
|
setup(
|
||||||
name='Sphinx',
|
name='Sphinx',
|
||||||
version=sphinx.__version__,
|
version=sphinx.__version__,
|
||||||
url='http://sphinx.pocoo.org/',
|
url='http://sphinx-doc.org/',
|
||||||
download_url='http://pypi.python.org/pypi/Sphinx',
|
download_url='http://pypi.python.org/pypi/Sphinx',
|
||||||
license='BSD',
|
license='BSD',
|
||||||
author='Georg Brandl',
|
author='Georg Brandl',
|
||||||
|
@ -16,7 +16,7 @@ from sphinx.util.compat import Directive
|
|||||||
_warned_oldcmarkup = False
|
_warned_oldcmarkup = False
|
||||||
WARNING_MSG = 'using old C markup; please migrate to new-style markup ' \
|
WARNING_MSG = 'using old C markup; please migrate to new-style markup ' \
|
||||||
'(e.g. c:function instead of cfunction), see ' \
|
'(e.g. c:function instead of cfunction), see ' \
|
||||||
'http://sphinx.pocoo.org/domains.html'
|
'http://sphinx-doc.org/domains.html'
|
||||||
|
|
||||||
|
|
||||||
class OldCDirective(Directive):
|
class OldCDirective(Directive):
|
||||||
|
Binary file not shown.
@ -639,10 +639,10 @@ msgstr "%(last_updated)s সর্বশেষ পরিবর্তন কর
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s দিয়ে "
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s দিয়ে "
|
||||||
"তৈরী।"
|
"তৈরী।"
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -633,10 +633,10 @@ msgstr "Última actualització el %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Creat amb <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -636,10 +636,10 @@ msgstr "Aktualizováno dne %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vytvořeno pomocí <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Vytvořeno pomocí <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,10 +628,10 @@ msgstr "Sidst opdateret %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bygget med <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -629,10 +629,10 @@ msgstr "Zuletzt aktualisiert am %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Mit <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s "
|
"Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s "
|
||||||
"erstellt."
|
"erstellt."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -642,10 +642,10 @@ msgstr "Actualizado por última vez en %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Creado con <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -636,10 +636,10 @@ msgstr "Viimati uuendatud %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Loodud <a href=\"http://sphinx.pocoo.org/\">Sphinxiga</a> (versioon: "
|
"Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: "
|
||||||
"%(sphinx_version)s)."
|
"%(sphinx_version)s)."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -635,10 +635,10 @@ msgstr ". %(last_updated)s آخرین بروز رسانی در"
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
". <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s "
|
". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s "
|
||||||
"ایجاد شده با"
|
"ایجاد شده با"
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -632,7 +632,7 @@ msgstr ""
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
Binary file not shown.
@ -635,10 +635,10 @@ msgstr "Mis à jour le %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Créé avec <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Créé avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -630,10 +630,10 @@ msgstr "Zadnji put ažurirano %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Izrađeno sa <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Izrađeno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -438,10 +438,10 @@ msgstr "Utolsó frissítés %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s használatával készült."
|
"%(sphinx_version)s használatával készült."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -633,10 +633,10 @@ msgstr "Ultimo aggiornamento %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Creato con <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Creato con <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -630,10 +630,10 @@ msgstr "最終更新: %(last_updated)s"
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"このドキュメントは <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"このドキュメントは <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s で生成しました。"
|
"%(sphinx_version)s で生成しました。"
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
@ -635,10 +635,10 @@ msgstr "최종 업데이트: %(last_updated)s"
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, fuzzy, python-format
|
#, fuzzy, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"이 문서는 <a href=\"http://sphinx.pocoo.org/\">Sphinx</a>%(sphinx_version)s로 "
|
"이 문서는 <a href=\"http://sphinx-doc.org/\">Sphinx</a>%(sphinx_version)s로 "
|
||||||
"제공됩니다."
|
"제공됩니다."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,10 +628,10 @@ msgstr "Paskutinis atnaujinimas %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sukurta naudojant <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Sukurta naudojant <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,10 +628,10 @@ msgstr "Pēdējas izmaiņas %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sagatavots izmantojot <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Sagatavots izmantojot <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -624,10 +624,10 @@ msgstr "Sist oppdatert %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lagd med <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Lagd med <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,7 +628,7 @@ msgstr "यो भन्दा अगाडी %(last_updated)s मा अपड
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
Binary file not shown.
@ -632,10 +632,10 @@ msgstr "Laatste aanpassing op %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aangemaakt met <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Aangemaakt met <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -625,10 +625,10 @@ msgstr "Ostatnia modyfikacja %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Utworzone przy pomocy <a href=\"http://sphinx.pocoo.org/\">Sphinx</a>'a "
|
"Utworzone przy pomocy <a href=\"http://sphinx-doc.org/\">Sphinx</a>'a "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,10 +628,10 @@ msgstr "Última atualização em %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Criado com <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Criado com <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -643,10 +643,10 @@ msgstr "Обновлено: %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Создано с помощью <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Создано с помощью <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -635,10 +635,10 @@ msgstr "Aktualizované dňa %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vytvorené pomocou <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Vytvorené pomocou <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -630,10 +630,10 @@ msgstr "Zadnjič posodobljeno %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Narejeno s <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Narejeno s <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
@ -628,7 +628,7 @@ msgstr ""
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
Binary file not shown.
@ -625,10 +625,10 @@ msgstr "Senast uppdaterad %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Skapad med <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Skapad med <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -628,10 +628,10 @@ msgstr "Son güncelleme: %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s ile "
|
"<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ile "
|
||||||
"oluşturulmuştur."
|
"oluşturulmuştur."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -635,10 +635,10 @@ msgstr "Востаннє оновлено %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Створено з використанням <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Створено з використанням <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
|
Binary file not shown.
@ -636,9 +636,9 @@ msgstr "最后更新日期是 %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr "使用 <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> %(sphinx_version)s."
|
msgstr "使用 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s."
|
||||||
|
|
||||||
#: sphinx/themes/basic/opensearch.xml:4
|
#: sphinx/themes/basic/opensearch.xml:4
|
||||||
#, python-format
|
#, python-format
|
||||||
|
Binary file not shown.
@ -638,7 +638,7 @@ msgstr "最後更新日期是 %(last_updated)s."
|
|||||||
#: sphinx/themes/basic/layout.html:198
|
#: sphinx/themes/basic/layout.html:198
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
|
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> "
|
||||||
"%(sphinx_version)s."
|
"%(sphinx_version)s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -591,7 +591,7 @@ if errorlevel 9009 (
|
|||||||
echo.you may add the Sphinx directory to PATH.
|
echo.you may add the Sphinx directory to PATH.
|
||||||
echo.
|
echo.
|
||||||
echo.If you don't have Sphinx installed, grab it from
|
echo.If you don't have Sphinx installed, grab it from
|
||||||
echo.http://sphinx.pocoo.org/
|
echo.http://sphinx-doc.org/
|
||||||
exit /b 1
|
exit /b 1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
%
|
%
|
||||||
% sphinxhowto.cls for Sphinx (http://sphinx.pocoo.org/)
|
% sphinxhowto.cls for Sphinx (http://sphinx-doc.org/)
|
||||||
%
|
%
|
||||||
|
|
||||||
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
%
|
%
|
||||||
% sphinxmanual.cls for Sphinx (http://sphinx.pocoo.org/)
|
% sphinxmanual.cls for Sphinx (http://sphinx-doc.org/)
|
||||||
%
|
%
|
||||||
|
|
||||||
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
||||||
|
@ -195,7 +195,7 @@
|
|||||||
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if show_sphinx %}
|
{%- if show_sphinx %}
|
||||||
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
|
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
{%- endblock %}
|
{%- endblock %}
|
||||||
|
@ -44,7 +44,7 @@ reading included file u'.*?wrongenc.inc' seems to be wrong, try giving an \
|
|||||||
%(root)s/includes.txt:4: WARNING: download file not readable: .*?nonexisting.png
|
%(root)s/includes.txt:4: WARNING: download file not readable: .*?nonexisting.png
|
||||||
%(root)s/objects.txt:\\d*: WARNING: using old C markup; please migrate to \
|
%(root)s/objects.txt:\\d*: WARNING: using old C markup; please migrate to \
|
||||||
new-style markup \(e.g. c:function instead of cfunction\), see \
|
new-style markup \(e.g. c:function instead of cfunction\), see \
|
||||||
http://sphinx.pocoo.org/domains.html
|
http://sphinx-doc.org/domains.html
|
||||||
"""
|
"""
|
||||||
|
|
||||||
HTML_WARNINGS = ENV_WARNINGS + """\
|
HTML_WARNINGS = ENV_WARNINGS + """\
|
||||||
|
Loading…
Reference in New Issue
Block a user