From d08189a9123a5faf24106dc28d39e59cc0be9fba Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 16 Sep 2009 10:51:18 +0200 Subject: [PATCH 01/16] html builder: give versionmodified paragraphs the respective class. --- sphinx/writers/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index c15e5ce5b..851aa909c 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -138,7 +138,7 @@ class HTMLTranslator(BaseTranslator): self.body.append('') def visit_versionmodified(self, node): - self.body.append(self.starttag(node, 'p')) + self.body.append(self.starttag(node, 'p', CLASS=node['type'])) text = versionlabels[node['type']] % node['version'] if len(node): text += ': ' From 4dd3346b289b162e7565e99d388f81ac69628eec Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Sep 2009 14:19:18 +0200 Subject: [PATCH 02/16] Add nose. --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index ba65cd1b9..07f1cd250 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -34,6 +34,7 @@ included, please mail to `the Google group * mpmath: http://mpmath.googlecode.com/svn/trunk/doc/build/index.html * MyHDL: http://www.myhdl.org/doc/0.6/ * NetworkX: http://networkx.lanl.gov/ +* nose: http://somethingaboutorange.com/mrl/projects/nose/ * NumPy: http://docs.scipy.org/doc/numpy/reference/ * ObjectListView: http://objectlistview.sourceforge.net/python * OpenEXR: http://excamera.com/articles/26/doc/index.html From 521049d9a8af6ff0466cf9ad543f186b452f77ab Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Sep 2009 14:20:46 +0200 Subject: [PATCH 03/16] autodoc: give attributes a higher priority so that descriptors are not documented as methods. --- sphinx/ext/autodoc.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index a5e90b6f4..012244f1e 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -965,10 +965,10 @@ class MethodDocumenter(ClassLevelDocumenter): """ objtype = 'method' member_order = 50 + priority = 0 @classmethod def can_document_member(cls, member, membername, isattr, parent): - # other attributes are recognized via the module analyzer return inspect.isroutine(member) and \ not isinstance(parent, ModuleDocumenter) @@ -1011,6 +1011,10 @@ class AttributeDocumenter(ClassLevelDocumenter): objtype = 'attribute' member_order = 60 + # must be higher than the MethodDocumenter, else it will recognize + # some non-data descriptors as methods + priority = 10 + @classmethod def can_document_member(cls, member, membername, isattr, parent): return (isdescriptor(member) and not From ff6ed15edfeae7eec1cc3030c0e401ada4ee1c9f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Sep 2009 19:29:01 +0200 Subject: [PATCH 04/16] test --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 981270c88..c0361f205 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- +ASD# -*- coding: utf-8 -*- import ez_setup ez_setup.use_setuptools() From a51e3a4129d0f24a93d89d2bc053fd0192450257 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 8 Oct 2009 09:14:01 +0200 Subject: [PATCH 05/16] Add missing extension. --- doc/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index e1a48aa20..be79c8f9b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -6,7 +6,8 @@ import sys, os, re # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.addons.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', + 'sphinx.ext.autosummary'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] From a094f9d2f9068be2275d513248b3faa40b95ea7b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 22 Oct 2009 18:07:10 +0200 Subject: [PATCH 06/16] Updated polish i18n. --- sphinx/locale/pl/LC_MESSAGES/sphinx.po | 87 +++++++++++++------------- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 3519730bf..60638b1d3 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -1,42 +1,47 @@ - msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-08-10 11:43+0000\n" -"PO-Revision-Date: 2009-08-06 23:04+0200\n" +"PO-Revision-Date: 2009-09-07 10:28+0100\n" "Last-Translator: Michał Kandulski \n" "Language-Team: \n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && " -"(n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:103 sphinx/writers/latex.py:184 +#: sphinx/environment.py:103 +#: sphinx/writers/latex.py:184 #, python-format msgid "%B %d, %Y" msgstr "%B %d %Y" -#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 +#: sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 -#: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 -#: sphinx/themes/basic/genindex.html:48 sphinx/themes/basic/layout.html:134 +#: sphinx/themes/basic/genindex.html:2 +#: sphinx/themes/basic/genindex.html:5 +#: sphinx/themes/basic/genindex.html:48 +#: sphinx/themes/basic/layout.html:134 #: sphinx/writers/latex.py:190 msgid "Index" msgstr "Indeks" -#: sphinx/environment.py:325 sphinx/writers/latex.py:189 +#: sphinx/environment.py:325 +#: sphinx/writers/latex.py:189 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 +#: sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/roles.py:55 sphinx/directives/desc.py:747 +#: sphinx/roles.py:55 +#: sphinx/directives/desc.py:747 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" @@ -59,7 +64,8 @@ msgstr "Poziom modułu" msgid "%b %d, %Y" msgstr "%b %d %Y" -#: sphinx/builders/html.py:241 sphinx/themes/basic/defindex.html:21 +#: sphinx/builders/html.py:241 +#: sphinx/themes/basic/defindex.html:21 msgid "General Index" msgstr "Indeks ogólny" @@ -67,9 +73,12 @@ msgstr "Indeks ogólny" msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:243 sphinx/builders/htmlhelp.py:219 -#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 -#: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 +#: sphinx/builders/html.py:243 +#: sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 +#: sphinx/themes/basic/defindex.html:19 +#: sphinx/themes/basic/modindex.html:2 +#: sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Indeks modułów" @@ -118,7 +127,8 @@ msgstr "Parametry" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/directives/desc.py:419 sphinx/directives/desc.py:476 +#: sphinx/directives/desc.py:419 +#: sphinx/directives/desc.py:476 #: sphinx/directives/desc.py:488 #, python-format msgid "%s() (in module %s)" @@ -129,7 +139,8 @@ msgstr "%s() (w module %s)" msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/directives/desc.py:423 sphinx/directives/desc.py:514 +#: sphinx/directives/desc.py:423 +#: sphinx/directives/desc.py:514 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" @@ -246,9 +257,7 @@ msgstr "Do zrobienia" #: sphinx/ext/todo.py:99 #, python-format msgid "(The original entry is located in %s, line %d and can be found " -msgstr "" -"(Oryginalny wpis znajduje się w pliku %s, w linii %d i może być " -"odnaleziony " +msgstr "(Oryginalny wpis znajduje się w pliku %s, w linii %d i może być odnaleziony " #: sphinx/ext/todo.py:105 msgid "here" @@ -438,7 +447,8 @@ msgstr "Szukaj pośród %(docstitle)s" msgid "About these documents" msgstr "O tych dokumentach" -#: sphinx/themes/basic/layout.html:137 sphinx/themes/basic/search.html:2 +#: sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:2 #: sphinx/themes/basic/search.html:5 msgid "Search" msgstr "Szukaj" @@ -464,12 +474,8 @@ msgstr "Ostatnia modyfikacja %(last_updated)s." #: sphinx/themes/basic/layout.html:196 #, python-format -msgid "" -"Created using Sphinx " -"%(sphinx_version)s." -msgstr "" -"Utworzone przy pomocy Sphinx'a " -"%(sphinx_version)s." +msgid "Created using Sphinx %(sphinx_version)s." +msgstr "Utworzone przy pomocy Sphinx'a %(sphinx_version)s." #: sphinx/themes/basic/modindex.html:36 msgid "Deprecated" @@ -495,10 +501,8 @@ msgid "" msgstr "" "Stąd możesz przeszukać dokumentację. Wprowadź szukane\n" " słowa w poniższym okienku i kliknij \"Szukaj\". Zwróć uwagę, że\n" -" funkcja szukająca będzie automatycznie szukała wszystkich słów. " -"Strony\n" -" nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej" -" liście." +" funkcja szukająca będzie automatycznie szukała wszystkich słów. Strony\n" +" nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej liście." #: sphinx/themes/basic/search.html:21 msgid "search" @@ -541,12 +545,14 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:139 sphinx/writers/html.py:473 +#: sphinx/themes/basic/static/doctools.js:139 +#: sphinx/writers/html.py:473 #: sphinx/writers/html.py:478 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" -#: sphinx/themes/basic/static/doctools.js:145 sphinx/writers/html.py:80 +#: sphinx/themes/basic/static/doctools.js:145 +#: sphinx/writers/html.py:80 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" @@ -571,12 +577,8 @@ msgid ", in " msgstr ", w " #: sphinx/themes/basic/static/searchtools.js:464 -msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." -msgstr "" -"Nie znaleziono żadnych pasujących dokumentów. Upewnij się, że wszystkie " -"słowa są poprawnie wpisane i że wybrałeś wystarczającąliczbę kategorii." +msgid "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." +msgstr "Nie znaleziono żadnych pasujących dokumentów. Upewnij się, że wszystkie słowa są poprawnie wpisane i że wybrałeś wystarczającąliczbę kategorii." #: sphinx/themes/basic/static/searchtools.js:466 #, python-format @@ -589,16 +591,15 @@ msgstr "Wydanie" #: sphinx/writers/latex.py:578 msgid "Footnotes" -msgstr "" +msgstr "Przypisy" #: sphinx/writers/latex.py:646 msgid "continued from previous page" -msgstr "" +msgstr "kontynuacja poprzedniej strony" #: sphinx/writers/latex.py:651 -#, fuzzy msgid "Continued on next page" -msgstr "Cały indeks na jednej stronie" +msgstr "Kontynuacja na następnej stronie" #: sphinx/writers/text.py:166 #, python-format From 2f8debc501518d3eea4c0faac96a4d75144fa043 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 22 Oct 2009 18:07:31 +0200 Subject: [PATCH 07/16] Oops. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c0361f205..981270c88 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -ASD# -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- import ez_setup ez_setup.use_setuptools() From ed53cfc2ceac480e19ed776c5e9038e4918eea04 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 22 Oct 2009 18:10:14 +0200 Subject: [PATCH 08/16] Fix .po catalogs and compile them. --- sphinx/locale/cs/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 7816 -> 7926 bytes sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 8240 -> 8276 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 6809 -> 6919 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 7537 -> 7599 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 7516 -> 7626 bytes sphinx/locale/it/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 8136 -> 8243 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 7537 -> 7647 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 7074 -> 7184 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 8107 -> 8291 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 7472 -> 7582 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 10120 -> 10230 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 8010 -> 8046 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 9801 -> 9911 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 7906 -> 7657 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 7560 -> 7732 bytes 30 files changed, 15 insertions(+), 15 deletions(-) diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index 42fa9abdd..d36ff3a67 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "cs", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"module, in ": "modul, v", "Preparing search...": "P\u0159ipravuji vyhled\u00e1v\u00e1n\u00ed....", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nenalezli jsme \u017e\u00e1dn\u00fd dokument. Ujist\u011bte se pros\u00edm, \u017ee v\u0161echna slova jsou spr\u00e1vn\u011b a \u017ee jste vybral dostatek kategori\u00ed.", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed skon\u010dilo, nalezeno %s stran.", ", in ": ", v", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Searching": "Hled\u00e1m", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search Results": "V\u00fdsledky hled\u00e1n\u00ed"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "cs", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Search Results": "V\u00fdsledky hled\u00e1n\u00ed", "Preparing search...": "P\u0159ipravuji vyhled\u00e1v\u00e1n\u00ed....", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nenalezli jsme \u017e\u00e1dn\u00fd dokument. Ujist\u011bte se pros\u00edm, \u017ee v\u0161echna slova jsou spr\u00e1vn\u011b a \u017ee jste vybral dostatek kategori\u00ed.", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed skon\u010dilo, nalezeno %s stran.", ", in ": ", v", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Searching": "Hled\u00e1m", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "module, in ": "modul, v", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed"}}); \ No newline at end of file diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 36056ac75bd424cad7f28c647ab73db679658538..93ec36d73394d981b775fd3058e610ed573bf508 100644 GIT binary patch delta 2205 zcmZ|PYiQP09KiAOIOk>V(k`|(xAv^kR%z~8V>r_lj>hPsVvej zb)i;NPzgmW%mfP_gY7S;%DPDzfT#Sv8cVRyDd$0&QFb{X5<6p)c zdbcorRyO?alP1Wk1uouDeJ*GAvhp_i>O`o0aFuMO8> zH=62C&dN^iSB$k+W&equ$%A&yct*ES5f;k z8rXR($1Emw-YWjM&RR56O(_cA+U@9q1L#6S=vlsqF7zt;?A}5%^BFqPk?8w3=(v+; z2G5}V&f)9^BQGK`g?R;YnMoB=u;Xg+ySZp&b6#G4e`u zM=Q~B^_aj-=;eC~4R8dv;(l}kp0ne#ktstl&c6Q}DY$Sgj$s3ukxS@K%Gj2-cr|)d zcc44jf}VL7x-0X@sD zXrK=x4<$T`_8W-WpF;zG1wE1j=(q_qz|-japF;axw~YL|U^CnE{ojj5I*1;@>*xY| zkSvA|&7_7BO%+N%Hn delta 2104 zcmYM!e`u9e7{Kv!+irJPw|VdUHQT0FH&k%5HMhK)ZrBfKDM@8m)FO02e^dlf$dqWcB^(fyUKHEOvm;NqV;_pddU``?^hy2 z!dhI1y=aM_Lo2ioy;CD-;Gad0%%c7-aGVY^{vMq$ffaZj&HNv9qN^BK7N5sFF2%jE z|1cWZQEbAK=(^MBJ~t71)hxWccb(6pp`43 z&45S)e`08j8nHn}A zzu^x4@oqeb&VM5MEP6-wpyP*eA-;=LC<(`S@KXGY>>Z}jO!Hi2BX2@KtCi@uUbM7* zXa6c=HJPpXK^&?CJcc@_FG>-RsvgC*aEYw$&Mqa$eK-=P_uMkoG> z*I*U@3thT&Xn?)A1^dwi4x;nFM5csM^oY;kA)LU4e*Yuf2s1c}p3yjZMiXn;fL_g+HBjiDQ!M?d!}vNX`v2I_C=Z=k~sHX>CCThIzT zga-0h?B9t_ETI{VU@Lx(R%!xWuZI7P3}`Mozd70#`&XkCys44;J8&Z%UXHubQum=} zw=McGK23WEdQ^YM{%X><^z+fLq!oR?89kb9NYY^kn&8XmK6}vsUQc+iG;d-755yN^ z=!9{!5@*oNenZDk#r_QSHN#r8^z~>!EoiCNp!56CK>E>j6AXnyp`5Gws-k>q<^$>S u_WVGqwtZDwM`xkExVEdfqP@NROWmER)T;7^Ig=IT?)n$f<)4~zss8{5m}XFO^TIOI_2)Sjv*J z4~;ewx87J~&2->$R>&gyP;ITIW3DoLTeGtF@~W9S)GAj8-LgEcSDx7|9?wzLnxqnGiGB0&cJn;hufmN@ha-=Sb|+R36G-v`*8w( zfcbcC?0GtTOQD#CKXD4?F=`Z?@7Ti@8WgXNN3w0LIc}_75G$|0#`WB&4~ulRDFb=<{!}svx~+inuP9Y2|D0Z z^mCknW@Z&S&aLtJU1)&KXa+Z|kl4WNhlD>ReiiE=IThe8Ubx(OYy1(_qHa1HK{ z&p*K{TY$^l0-VS5N|s{)x1nFpCiHObKo{^Zx`58;VKlQnn4U@D6oonX1(KzZ-~i0V zBob_BKvTUDP2mHvzBk%|2JkexbuXiVoTr`k|-r2boS-Gjy_AROHo457W6->yLVbMpraZ7XMbb1Sx?OcV15m90M(3JPAR5mR%B!P{1d zvp-s-4jru29GDc=C5Wb|S(yYOuE_pqMq?7pNQr`^wC}eaXxzP@_niBlbDrlp=e^%H zoNP!2C+F`E{I&CcAOCanZToc?awid zgII=B?_v&IjAKF)!b{vtrDGTJOn4KCA@pD!z8l*^Xa?6Yg}2agxkR@Ji_t(gcbb{{KJ{rG2 zfgZk(;`bNO`3CSY{25EIjDuvLj}}pX4^<-dwL6(sZB?_M)%PF*J}fxR*nD5&49tNymV; zpuYz#=$>~)dyr4)3;rm+&seE&CbQ$xqAXhx^e%+I5x{4qL=%V__K zmav+%46GJyKY?btp34$!L0_{z^e}&gR`NQo!9Q`V?|&m<|2F|LcUX_B@C9@$KEZlQ ze+H{)-yu2|t|A@ZntJq5K7|I}ga+Ok-HBGT9p~Z!oR9sOP?d0vn|b&*5>%+*AXwr$ zv~(+DyE(cA4PYy}r>~)z?L(jMMaO>_`%gu`#F_M8!gBnrg!=mfQpC~MnYa=w(M)!r zd)|eX@GyFKzCcg=Wi->l*nbTTfjzPPR`d|M&f(au$#P@FpP~_;M>G8z zJ-vhIghoS5A%zA~k*z5x&ChNeUzjRfkglpumsi)+E=*^4Oliu?*_QogT48Q>sJJ!t EFT~x&V*mgE diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index e1d61a207..9483de793 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -248,7 +248,7 @@ msgstr "Zu tun" #: sphinx/ext/todo.py:99 #, python-format msgid "(The original entry is located in %s, line %d and can be found " -msgstr "(Der ursprüngliche Eintrag steht in %s, Zeile %s, siehe " +msgstr "(Der ursprüngliche Eintrag steht in %s, Zeile %d, siehe " #: sphinx/ext/todo.py:105 msgid "here" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index a8e2fd62e..f43c642a4 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"module, in ": "m\u00f3dulo", "Preparing search...": "Preparando la b\u00fasqueda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La b\u00fasqueda no dio ning\u00fan resultado. Por favor aseg\u00farese que escribi\u00f3 todas las palabras correctamente y que ha seleccionado suficientes categor\u00edas", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, se han encontrado %s p\u00e1gina(s) que concuerdan con su consulta", ", in ": "", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Searching": "Buscando", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Hide Search Matches": "Coincidencias de la b\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Search Results": "Resultados de la b\u00fasqueda", "Preparing search...": "Preparando la b\u00fasqueda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La b\u00fasqueda no dio ning\u00fan resultado. Por favor aseg\u00farese que escribi\u00f3 todas las palabras correctamente y que ha seleccionado suficientes categor\u00edas", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, se han encontrado %s p\u00e1gina(s) que concuerdan con su consulta", ", in ": "", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Searching": "Buscando", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "module, in ": "m\u00f3dulo", "Hide Search Matches": "Coincidencias de la b\u00fasqueda"}}); \ No newline at end of file diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 092bbf01d4bc81e7d97c584a835eb8019b6c8010..c63cad23eb256de77a3268532012ac172398fb2b 100644 GIT binary patch delta 1998 zcmZ|Pe@K;A9LMpmdQ-EyX{q@uuO+NlEpD#DD^9_f!ZP}SvQ>=K<(7oryX#d*n3rwX z!ZF>Dn3m8k^n*f*x}snT8%txbwLiv2OxCux{j;`+M*F9%-k&@c% zepLG-n2pC#85lz?CTiehZWL`PR-q3SNE3Ro6N|A2x$F!# zWo8VO(JA*ljXE3OqQ?6j)&JjxHH&7Y-AC=)${u!u$CUOpKEk6GK%UnezYT~V^4)wSe z8*w%Eq4sPXwIwsC&+-SW5INKZVNd2x^=Qs0B{skpCeHGgPd?29CNK z97av_8R~mI<(|JoeU>+nF7^;LVGdDif@0K4SEDlFM;+D*SHBxIeiJGK2l8s3>|qBL zI)sN^gMQ~AYL8>6l#Zg>T|*tNUr__i#dA~MOiB#~BW=M*b9+3J=JVve6>N*Nv~@J^ zD|$N|Y%L0fn>$;A9qmP-#`ve+?ga08|4St$Me9q;{DC$8l7WKsdx;y;1`1M2<2y2H Yljc`H9c?)Ct|$NbqrDUF&rM5s1i0qRc>n+a delta 1894 zcmYM!ZD^Hc7{Kvs?c}C&=WMoKHn((+rke@}x4DD(Qi0}&fzdV)MH&>+@`ENWl3tF< zLJGlbhRl~psV^0Z98yYzOfo`?=uuP*o(Ee3F~kx=5QG8cL1yL7*^rQ zRDTw0B8qW|f&+}D2IEr|aR(pfeN|<|1K5HM*qxrA!KFNJ#yNNtSK&D{(7X5`mJ_9c z)^p=kwBSlygw@O+TPQGB>_j`fiJf>5o$xYp#T9Pr@CHu9CuT%&#aeE&u@{|qD?Wrn z=*st^3pj-L;R(#(DV)yyahif1zd{4Jm>fep-o$2{M*d9g0yMRS^t>8r68&f<2h#I) zbfVYMKz5@UcsJFLV$nVSh=MCUj}APBTyc%tlXx2qq(EgBd$0vJqV0>^%*b9elOyT* zFnT7AqvM@H`(ME2_|r`CZ|ZV{XNnghha$SrNY^CSp#!W(SNJ^I{$=#M?m|~OjP`pQ z4dgw12M=K@KE~|6??D6W%aZ>l3WL0Gf<5>Mj-V5Kh7Noh-J-MT0O!%K;5&5X*VFsI z(e@L_A}9CD`fB#g!0M7s=t5hI6wE+3+OQYvaRVB_4m?~I@di3z1Iss%`Dg%((RNRx z18zXKY75dOifF%mNKA1AUFfI()t{kY$8XWY_cPjI9JykGn*mnOno3z4KFae-^z+<= z1suXTcmh}94``rSqA}HVXrOKALOXD^-~TcST(OIr4Gy4(@dI?=FVG2Zrute&>*0Ae zx)m>=sojQd3JLt{2#1h{>bp(ViDHh0$hRa)n;@nhS1M& zH#+b)=)k|DpW&Zq068ihxEakz8=BE2$Q8@EvBu~_Gckz8J_^GWxZ)RXcD#W$yn_ai zW4YRhW~2?x*oyRiEt>Lvbfp{7aR$(g4B{vb;e5<-!maPFC;v|LI4@eUAANoeX&d{| zi9SIG{v2K5muLpQMi1wY>HT$d;9Ka*@1k2*!E!xx4QPFHvb~{wszC=YOy!!?@I~}6 zy@U?54@U-S3#AvSeVa`JXbSO)=_%4_O0^L Nc-^f`>EHUwvU}t%r<(u( diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index f654e7e11..82f02c292 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fi", "plural_expr": "(n != 1)", "messages": {"module, in ": "", "Preparing search...": "Valmistellaan etsint\u00e4\u00e4...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ei l\u00f6ytynyt yht\u00e4\u00e4n. Tarkista hakuehdot, sanahaku, ei sen osia", "Search finished, found %s page(s) matching the search query.": "Etsint\u00e4 tehty, l\u00f6ydetty %s sivu(a).", ", in ": "", "Permalink to this headline": "", "Searching": "Etsit\u00e4\u00e4n", "Permalink to this definition": "", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Search Results": "Etsinn\u00e4n tulos"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "fi", "plural_expr": "(n != 1)", "messages": {"Search Results": "Etsinn\u00e4n tulos", "Preparing search...": "Valmistellaan etsint\u00e4\u00e4...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ei l\u00f6ytynyt yht\u00e4\u00e4n. Tarkista hakuehdot, sanahaku, ei sen osia", "Search finished, found %s page(s) matching the search query.": "Etsint\u00e4 tehty, l\u00f6ydetty %s sivu(a).", ", in ": "", "Permalink to this headline": "", "Searching": "Etsit\u00e4\u00e4n", "Permalink to this definition": "", "module, in ": "", "Hide Search Matches": "Piilota l\u00f6ydetyt"}}); \ No newline at end of file diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 44d19f8c30b6bc71ddf64217c1c1386dbe8fabd5..5e47dcbad00c662a9fc88f12aad6b64a41c32954 100644 GIT binary patch delta 2240 zcmaLXe`wTo9LMqZZ8tsltDQ4v+iq^k)Y-J#rSqIQM^p#>;Zl)CuB^FJ)a_2T8II__ zYE;%>1UC@`bAK2m1!aqLP7p^TIT^-OC`F9$4<$7P^&hpKukAzhSL615d_SN2e%_z= z=l%J7?{3|<%e<>o{dgvHo~Gw@^A-;dAG z{sC)o6lY>qw%H1-#4Pj7;@mt<$5!MS+lAy{Jy?%@u04iY!4;g0H&Ns6;UWx>r4m_= ziqnLR*n*Srd*o3Y#1i}omoUFw<3^>OL7gMOCl@_1r=nU!b!d$<@3VH!4jN>cKA5Yx5o|k-hjKhw&gPU?s~@ zLJ?FVQB>e{&Q>HhYezojaiQwghZ=tfb!Ltr74Yn&dtd~07A~Vs{T)<>lQ_Z(ScD2t zh3cCgw893cdf;+-OB@s6FaHmGCnhuK+gC zK8RZBHPi}jxb{ON=6E(?m`+woB!(K_f{oaQn&*V;AI6a0|8v~b;!XEJ1?g+xTwI7X zs5A05Y9;TZ-jaQ&EgM2rXc#rY1yrKHx&A*;3EoF7Foz(jSQUEuAz03h_Gmrwu_PB3 zWuKrTO>`D@%6~xx_|>(qqqgi8a%}7#DuKxa)xv^Ui4~}MVqBEyh7#(p zQY7e5z}?PXRLSFnj>Boi9ftLa!nSo@oE0OGqcMjy`zTr=21Vib*f?LHK zl8LU(iS6;$@{JwI_VR5V@pm^Tw|ACrduJdOO!@L_!V4mi@|tK}cAS^Mv=q&S2Us*7+A*5Wcu;e6a2?ZI;D_hS|IV<|q1_J0Kz z;V>@5(b@Oe@IHk~8qVPoyohBujSiS#7CTg;?G0FsX|!J_*5YHh`b9=AajQUxE^1O^>K6s-{3r)Li_!KEqDbDq={%9rxUl} zy*L+-BcFs(tiv%}XWAzynA&3Vln5b-W}=kYoNxsXSK5LF*ct0x=x*&qCwv4QX8;Xs zZ*&mte++NHF?4GtG3%Va#fCr7dSP-l(lT@l>SDbKoiKxZ8rsoJb)f-lMOU~3Jxl#) zMh+rt3~%8kd^b93<7 z4C4En(E!tU9d;nU@GuYOdn!x8Q~NwR;Tz~gBj{d^q63{quib}eW~R^qeva=iq5Wpi z3|>XQn^!R#a57qr#28X&X0pu`{ICbTE?dz+2Jj^g<9>9&f7mbsTF7z?q#VseOSB!C zGu(yzLN5<9vm5RI40>h;(ZG+)zR!jc3Lb_r^wfWaM))H-;50fw0Y}>QQuO|((0&>8 zkaeS(?2GNsp$mEqz5l1M0e{5}IETru-Tw{>?oAh(!hXD#0o+J^Kf2O0=nB4w^$BFG za1qn^I~que=4^|=jQK{t9kcA;A}h-T(6 zI`9cJz|q+L9vaw}=tNU!rmmp(zl1^EnpK!}g7rKIKJ=n{^B8)M51D7unE=tQrhr~eo_z{yx2 zL$~S^ ze;eyFXyAXN0nKN0ZfmGOGg^gauo``TeSCjYe7_QjHPqZn!Blo4+Z1}xK>G4E#dC}D zD@%HdlDi)tA9=EW&))G5T2ssS 1)", "messages": {"module, in ": "module, dans", "Preparing search...": "Pr\u00e9paration de la recherche...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. V\u00e9rifiez l'orthographe des termes de recherche et que vous avez s\u00e9lectionn\u00e9 suffisamment de cat\u00e9gories.", "Search finished, found %s page(s) matching the search query.": "La recherche est termin\u00e9e, %s page(s) correspond(ent) \u00e0 la requ\u00eate.", ", in ": ", dans", "Permalink to this headline": "Lien permanent vers ce titre", "Searching": "En cours de recherche", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Search Results": "R\u00e9sultats de la recherche"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "fr", "plural_expr": "(n > 1)", "messages": {"Search Results": "R\u00e9sultats de la recherche", "Preparing search...": "Pr\u00e9paration de la recherche...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. V\u00e9rifiez l'orthographe des termes de recherche et que vous avez s\u00e9lectionn\u00e9 suffisamment de cat\u00e9gories.", "Search finished, found %s page(s) matching the search query.": "La recherche est termin\u00e9e, %s page(s) correspond(ent) \u00e0 la requ\u00eate.", ", in ": ", dans", "Permalink to this headline": "Lien permanent vers ce titre", "Searching": "En cours de recherche", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "module, in ": "module, dans", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche"}}); \ No newline at end of file diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index fa97bbd14d1db9d8ddad1fd8dc6ba1a6060abed5..d6c051deca8db45692ae5e9343492088d51c30d3 100644 GIT binary patch delta 2188 zcmZ|PZD?0j9Ki82_pEzzP3QhPcbm;>Hk^Bi`8Zst#FVH-7`|FH$58iQZgb!Z|9jDk zXs;4ySdtQoLLk{+sYoJ9S6NE-!WOIy>|t3%gCtxkeZTBduNrsvbI-Z=obx-sbIyNa z)y37R?@F^q1AqJYU&MbwmZksxZs$@*@eXF=?7R@Fu>|w6F?KD^rMwBt@M$c@UbOu_ zEW{Cy; zcnYiVM{LFH*-j`G!Ui7ZQPGaP3!TWAVF#|mfw-JTXK)TlM!1N!`wE+I5)Gu1Xziy3 zAHz1x!Trc5;SeswW0=kO;X@v5FotH}OLU;0(HY*vS(r~AEf=7x6rt^E(4|?92Gkte zj(*>X_u?SBB(ES>IKeGt#hJL`JR0E@H1!j4`FC`{TWDZ+(F_$(@cVh_-igo*tVKQv zTanm97q;Q^Xh3JM2tO?(|4VrInhG2IjixG(x2Cul?Vvm^FG1fgLpNDN{C*R1g${0O z@EJ74N6-wtkM5ldXy8|4uN9Gh2biS78UKkk$RRD6Sc1;H3~g9}23CzPVJ$AjvvK_d z8rTn5iMP;x%NgBq9z-+MjBeH^Qam`|4s@VFbS?Ly0}Z3c?L~CvZ=xN&9l!qoZ8wHy z@N@LLaWvp-v6ILZrns4zSw!V`sl_~aOlr_TTJf!n5FSN4oGzUSD3^sZkV3TM`q-6d z$8E?JI=C_E(2ceqLRK}rfCj!le*ZdhrNSxh?%I!LD#AE=3VuTyWRg!}2*qgR)#&%@ za4|lK{vPzBDIGy~`!V#~k6{(w!FH^qu`}<%gy+AH2WLJKJBp7`K7u46Tt_>;iO#%; z=nSMBTd@&c>wdJKmvIZeh7R;gT>l3e@N`^XLDcz-A0i$itVL7Tjt;O5J@-RcgL}~q zkD>#eK=;aNB)0Gly16bP$qP3y!nR1LfhX?kbhHAM85r? z8qG)@8b}iwz?!(c0S{B&f^~Q!u3y0P%}|79q#2#qHgxmuM6QsEJ&aE1JuCd7`54W> zC+L8ea5-K@1Il4q9;ZSyutaP%I#4azel+jl2-MSZ)w_VgqN`=h?jbY97DM$wA; wx`u{mMa!!CmCNcI(g)`zGBTRdr%NBm%HQ~JPvi5S%3k>YJ$0uaT2!C$5A!?MH~;_u delta 2104 zcmYM!ZD`e19Ki8&b+^{$*4!-T=JLAQ=5nr!vzoIKA4=+yQs}G~m4Rh3>P0g`bo_f^ zZ&m~=25O@;$e3xwZVym1gdP;5*0KkpxnO3|Oq2*)Y1sGM4m7s=`JeN@=bYc~ch1?- zB_nOgXn8?z;Ab0uv-!I))z<$%BbSCSjplJo<2cshS-cD@3MZ|>>9iYg1}?_SaWy*r zek{QbEXFO9@00Kh4;6Iu;+5EsWq1gka2OqMBKDubnY3Nqag|twO<0MmV*du5MSC;e zfY0L``~;WcNlb?%gu0>-uApN+(ifH?YlIx$f@@>@MKpsxB>Aup9XEiB@CX{nKj=J_ zM7;)U@e+Ijc@?%`HEzc=>xbPunE76GfrDsfpWzhzF}BCBfc80bf%E8=q^Ylg6i4Tx z<8Q>dm_xVXG2}ON#dbF)cI@KA$X-WFJ`mdOs%aOK9Nxqwk>OKP;vGW_*+m2aKQ>;Ab@RadhArG_VQmM(bG*&!YVUXkhPS z4Gy96o<3>(^uLA<7)0g{N6^TBKnMJZS78Zt_Wn1a zC0&W0^83(xp5PpO7jyV6nt3ggct{)3%vb&=`@fop6?EK#?pYr?@tbJohtWX3#HIKf zy2njK?L>FrowycV=+)TYj|QBN{a;~*_V;MT{>Ez74@IQoJ+H?)Y(ytogD%jHo{BZ0JHW?2Yb5$G?GA>R{|2Mk_K>Mg5KB1RVx&3T^*^ zeRu&E;7$&J{fE&C4WSkJ3C*mCvUq5#(F!&5VIn#7|H(Qu^Lx>C9>DAHk%R{$*@0f4 zSI~v_N8d&l7(^%d9L?|;x;3L{K;zhe7vuW|%46vlqT|{vS0MVV}C+x4yUv)TOd=~byzOMaq!UP1oand{Q| JzS+&Ge*p+Q%7g#_ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index 91a939a6d..9120c41e7 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "it", "plural_expr": "(n != 1)", "messages": {"module, in ": "modulo, in", "Preparing search...": "Preparazione della ricerca", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non ha trovato alcun risultato. Controlla la correttezza dei termini di ricerca e di avere selezionato un numero sufficiente di categorie", "Search finished, found %s page(s) matching the search query.": "Ricerca terminata, trovate %s pagine corrispondenti alla ricerca.", ", in ": ", in ", "Permalink to this headline": "link permanente per questa intestazione", "Searching": "Ricerca in corso", "Permalink to this definition": "link permanente per questa definizione", "Hide Search Matches": "Nascondi i risultati della ricerca", "Search Results": "Risultati della ricerca"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "it", "plural_expr": "(n != 1)", "messages": {"Search Results": "Risultati della ricerca", "Preparing search...": "Preparazione della ricerca", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non ha trovato alcun risultato. Controlla la correttezza dei termini di ricerca e di avere selezionato un numero sufficiente di categorie", "Search finished, found %s page(s) matching the search query.": "Ricerca terminata, trovate %s pagine corrispondenti alla ricerca.", ", in ": ", in ", "Permalink to this headline": "link permanente per questa intestazione", "Searching": "Ricerca in corso", "Permalink to this definition": "link permanente per questa definizione", "module, in ": "modulo, in", "Hide Search Matches": "Nascondi i risultati della ricerca"}}); \ No newline at end of file diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 0644a1b249a3cc2ea1368048cb53ca897d948b6d..20e25ac73dd7fbef443edc110efeffc4687b5157 100644 GIT binary patch delta 2260 zcmZ|Pe@xVM9LMqZ(VYST0%{WAaY`yKuK|I=*+5g-6br+qYqTcnd9dQXdUCWzb<rLj4+X`lz|D-u>Y|YwQVQXt^%Ubn(9iP=-vEv?}&-eTNyg%>H z`}6tUXU*vqsfl9$LE~=^|Kf1!cB~*=gExti*Mw0dZ6b`%$IeiwZF4 z`iI>8G1TEZ;qISB#rqWR!Aq#p7juv@l`f?II#dmOX$5PY?WhSlP%Dq220Vec;4`QS zJdYap0xGeCIEb&{Labu2uD78Q+l+JZG2~-|DZVw)5mc#8qE7KAs0k-f6a9eN(;KLO zzoK5lKTwqk7Ei@lfVy9U8rO)bU=!-OR#d|6&Qu2tlC|xq(j-w24xwJ3QB)#t;Q23zEJq1Fj7nrHD)6(;{YY*$f_&^0UsT^dK#jkMY)#6p(NG0`L?!YY^0Db0UA^b! zs6chd+}476{vp)!QB=kHP-o~x)IyHA>*rAMuAol+4b<XdK7<+uxj_&TbB7jQjZM#ZZn>m0rROK2$L zrMMc~QCl#g2XG7*Q2LXo!*h{+Q7I=;mH88OC<~ZfTTzS}SC2}p85M6GlDj>C71)J3 zf3}atLVOvS!#+e^zv`Ss1^5e9`T*Io2rELBb}{O(HK7t)g{sg-R3aVDC~6)L7vZ5Y z>Yq6jT*w>>)K*+W=CUBKgeGW2{T|$pdY==h3HCS#P;rJ_|0rg*5_Kj{yZ%S0#K&2jPP1uSm-4^Ggs0sQ|d;T2im+uHF@z+oZy@OiuId^>=N9kY2D)cxI ziaUymb1X$ed-g7>zGUZV&B9cs-$=iD+N9m)srN*_rMyddgQ&Qys3Y4b?P6svGaDt{t8>^Y5&> y+~K_JhII3+5`Rw1ztJ|8-1Oyl#$w%GBHq~(jrV%#Eu|a%W&b}xEd6G1j_)6i;^prE delta 2158 zcmYM!eQ1?c9Ki8&+g+{p{?=@7cdJ~pSl!yn)l%~Xn%bPpWQD8Tux!k>)QQo^>mR*{ zlvyh(l+p@G3=8fe2$DhsA^-3njVy$sq*s$d%0FyxA(H$Ja%kUIB?t5&*f6zc$h}L;Ju^aEj zOYt4#k+2_YZ~|wW_TyZb+C1}=2%!kgL@}$mU=v^Nv<)x8&e&dxp4P+Yf@{!uhS9)A zqubH(d$18F(4#qt8P_}$JN`o3IYrZvmY_#a6WcB5g6+toVGf$9rDy>6p*wsCt))RU zBhR7p?nU+*4&nm*w21s0*+n||gi^w~1{=@;i_p~dpeer}onUoruZ#Cb(V`oR_jjW6 z?Z!Lt0Gjfj&_I(ElC@M+LjK)Bik3E`3*3zEd=5IG8*}ghGy@N!&kvx14dHg&h)wu! z?4QXb2G)XgxB#7ZHD9i?A;X1Ly9Hh7b##Hf=vnSV7x(~u?IzHSe1%SMI^O>U9rq`i zxxdlpl4a9@=0_`#*g_qek<5);_}~)sb?HF^8Nyd6#!cvid2GXgD$zh{&88u+_NAerzX7kt9!eED9VKqvYgSvyRk1Ij3ABd7L&?EQ)UFZiiptI;a7mygIqH|+aMCth1I13k}8Qh50Uw9!t@D@73M`+4FL4pj2 z(Ug9J7TGy8u=8kUa@mf76h^DCiFPAihn?v2PoTB16+MC%YdC-A2*>GgfnU-0-(L@l zk3Kgmw$o@PI?!?5=)Ar0et*2b4qdl)D;K8lO=RxyHag%C zjxVcd&#uY)GADa`!ANfQNa<6FqI7G^Eo}|y_B(EEzagC-?<${6v}U_1dXm}qXIw~> g%wM~9aAd=9|KpDgkB&5q3}+8kuSjO=Qt2CFt*FU($qxE^p+V3cr;2bZDNKlj%) zlQqeSyx5+IzZdu~=6@!|+JAp%)1qh|)pMANm#_@K#|%tKpEVnEsmE~R}p35+4JqD!~|f54ltn(Qe? zHMj)Vq6s{Xj(-XZSU>8d;6ksVJ9r!C;-OGKf-&mj=)}*_KljrN~IU#bhC|7SGdb*#l06_5BH^n@Nm z-=!^R;?D(lqVfCD4ZoGc`8(kt4ZipvqB}o^PCSVw_8Io$S-cG!Iak|z(Zu@jX55Dc zK7lTD20f{Z=u0|-u9r=At`kpE@L3k40n5_y{zgp2Vcn!wkXoWuVl1p{u*n@waZnm{MIvpvCKbZ29sejb?`{fIu}-_ZrK zsCb=kMf+>fYr7te*AnW_&(@RCn-rWlge7%@!Z_$OWh4y(=Ot1_cSC6jOfJp;yrr^SzXr?>RBkaRUJcI_gj4p5kz2A#?9tLa- zwxjp^B{c338ut@4?kVH~L|>u_Oe_xfe~JbJ{}KjdQgK2NHefm0{~}*b+>1Qk=zVm7 zy_>L(riK(YQ}Qhj_&MT^n{Kg zpXeLDeA};~@nZZKxKI{aUw|eO50(e--V_S!(1DF;rcLNV&!9W*4gIf%{@2l+?hoxB zhx!=$L-yV12Wf*T>4`*lN20r>Yjj;!Ypm#rL`Qd9M^DR>rLCQb_R?*gE!*1?Jzb^S znn#D{KRYL9W#t`JRi!Iet*KnSqOxkBBKPXt>db+Wv{j=U^6Fw4YyXY5yWmD@@&8BL K(lYRJ@$^5w0Nr>1 delta 2038 zcmYM!eQ4EH7{KwfcAYNUi_6#TwzWzPoa5qL4QEb-NXs09SrMg!+M;OX&|ax-k+CqB z#i)s4qg7bhAXpKzBEiuR2^RF`q7~^MNiKS^mw%$ZU-m%b?tXsf{LXpKbDrP%-S3)z zU6Y@x$h?sFdx-xm|ECLW{r~s&?36B`IgGRL2ws9mu^3N<(>RazUpOC&=cH7I)#&_s zEWu`+i<@Td=hId$7Shp)<@g91s1F@D82yKF5$zB0Li`*n@kd;Yg=AxY7O%h@*5Do3 zg1zVl#&H3Dip43<4!9sjn#OhbXS5s7pUHR~vZ=Hgo!E}6@h&uhL1aogf~`1)ML3`A zxlC19h0D+cHlQ2ch$XC_wsT?T-FO~85$)ZWp}ikn;2;{{5SqwvcnqC?5^Hf9Eqxhv zxAZl9*{+NBS~Rgun77pJ(b0u2*n>W+`_anmj{AM+8QG8S{5|B8Cir5_^et|{GiX9} z1S!S!cqz7`<9DJJdc1`CTiRYa46qMvzZ3&rMGwwI&@wK){s+rmCj8>!*v%dfLa^ZWw7ae#a27Hb8(f$Dqd=uN$?P$VXXrL#< zK6L&7y3lLr_>YhfX$&1d8U3e~_0vyW@JYY%MfFlK^CRB?idO7ATT_YDcycrGf47$J@==*#OUATw`r&;uUUWEp} z0S$a78h8hCp3|df0)26R0FC={+#g*+{he@}j;;7*45(w26R$xYUur`a=nA{h)4nU( z&!Gzrpz#i&Z_m4Ne>6Ob|I$B>o}uw7>hEEh&9+^r9GBx#bZ6J273x4w|5IopFQN+^ zjP?+kz?~uyWPvi*rqD8k<(+a{W8zoh@h>xwYbf%*fQjzi0LTo;~{? Dy+yjj diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index 2dafd39f1..baacee446 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nl", "plural_expr": "(n != 1)", "messages": {"module, in ": "module", "Preparing search...": "Het zoeken wordt voorbereid", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Uw zoekopdracht leverde geen resultaten op. Controleer of alle woordencorrect gespeld zijn en dat u genoeg categori\u00ebn hebt geselecteerd.", "Search finished, found %s page(s) matching the search query.": "Zoeken voltooid, %s pagina(s) gevonden.", ", in ": "", "Permalink to this headline": "Permanente link naar deze titel", "Searching": "Zoeken", "Permalink to this definition": "Permanente link naar deze definitie", "Hide Search Matches": "Zoekresultaten verbergen", "Search Results": "Zoekresultaten"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "nl", "plural_expr": "(n != 1)", "messages": {"Search Results": "Zoekresultaten", "Preparing search...": "Het zoeken wordt voorbereid", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Uw zoekopdracht leverde geen resultaten op. Controleer of alle woordencorrect gespeld zijn en dat u genoeg categori\u00ebn hebt geselecteerd.", "Search finished, found %s page(s) matching the search query.": "Zoeken voltooid, %s pagina(s) gevonden.", ", in ": "", "Permalink to this headline": "Permanente link naar deze titel", "Searching": "Zoeken", "Permalink to this definition": "Permanente link naar deze definitie", "module, in ": "module", "Hide Search Matches": "Zoekresultaten verbergen"}}); \ No newline at end of file diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 50cef9c1f0f95f06216b2c5917813e9b2167576c..701d405b93476f10d7f481eb7fce372f98c0e8a8 100644 GIT binary patch delta 2144 zcmZ|PYfRQv9Ki8|AQuTtjB6C6r8DM+#0tuAF=uO**`_uJwah?i1;)i}ES^;}h+1LJ zqS0*?*|2Cv%G4Kbq-zarvsG-Yfm;{L%@=L>qG+w}cbwI$*u(SrpYuPL-}#+$p7(C) zt4d7eq#OwRb@E@#|4g!_|NhRTg>VJMvp63oaS5Ks3`|a+GYc0{&c~~81un!IwEqUo z!aB^vrn&ct(7{6<6?^eYd=nk$6SU#USU-;Wlz+g*IDW6s=#4H{(Vu!ERiG z2hjywz+Ak986m+67BC1ESy+R4vAh|L_(5c`;W4yhJ62*Z8o)_ptT2i9;!l{0l|;{D zxDBtyb!Y$&qwRNM9`lD*9-Qa}bOo>DJUkT3!Zpo!=uw0|=Bz7F%z zEvQDf;I3HS63dO4Fv2z-OnDbt?n5UWKm&Uh&CqasKZ>4}F*F0y$S3^C7cqo1I@RK0 zG@vb*jgR6|dsJ@Nwe?tenjH@w)f+@ZO&Cmnr zS=xaHz9;$&I({#@;McOrza2iJ!h`=Ay7HrF#}jB^r?3~#;4-|QyjtId2KGE&g9GTm z$Iyw!(M(OChja#=FN^4$CqKc1ds&PQxCFgkH=--QC)RI5JJh48+ZNw9qk(oryO2-l z=F5!qqvL#zg?IuD;5+P0V*jUkaKO5pxj=TJ0W_lx_n{LEpey?TUGY&Q8DSjlKZ)!{ zxPY$wGBR{X;sBVL9JGIVv=(WX2%BQXLukaU=man0wfH_dz!>rg=lSw}&tM6b(RdB6 zM>F{%+J7HkX7odJ0mHZ!M`QUfEcE`*=MLGh1pOgej@4Kb%X`pFyn-9?4K$?}WBu=F zYG=_c%4HDS7omY)k7lYCnKRsnUhhUMVE)j=gB_nmuU|L1l2?&2LqB@WhS34O!sR%H zW+0WHMYmuXddO~y<-5^9wj#R`wxe6H8(nY@CLFMj2OAEe0ep(y)8ps_Q|JVLM>Cnl z`(1!;Ssik)!;@&gZuATsijJZaei6&#u{==_@BcIv2J#CUz$}`wRPyRdbCJ2j?P%&Z zBTYg*I&eqyX>_G~(SZBWKnBt4eHhL35p==F3(3C?Pf_9hK8IykPrj}1K?6I0u51X& zdiWYWj6b9I`;S?EvB|1?xx|KEPglq8z+<-2meJc;Hpc6f%&!KztQf%;ctRIZ! zVKmi8(8F~)*8hln!bQHED7AQGDD9o(^p=+P=9cz`wvjtC8&it5w=}mmHFq>TQrg(s z@_6a4)`s0pEgfy8yS9xCEqo#=dsX?$ii*-zRkxN`mz7uSU$N-dd6f(Hf1Fk|vOcFL ZIb+?wqkWV6eM<5FkG7*>|G}c!e*imI-eCX$ delta 2037 zcmYM!Z)lZO9Ki9TyKZjlZaKF(H`~&5d$B3kHg{*4n=;sx$dVgUX!^nwLrYslrF9KP zN;IveFqK&8i(++sbK9E{8YBr#V^E7S5>a0$v=>1n=$pP@cc5{7KIfe0{P~^VbB-T% zoK9!2RwRxG{@&u>0{-1Bu=fAo*F_;bKsAT6a10mWcUX)!qEk4B`W>vq;@KgTV?8>4 z87A>@EX8%x@3Y}q3e_~ch!5fcbfN*Y<8W;M3g=P(7U$wGSc|u?1`CMB_669EDQv)< z*olYG4P3-3yo|*m%MK_oN0`FZ_;0MQD4C9UHL|JjBswsIZTJ!zz%Vi-jNt~nfQ48| z^b|uK)?p(Wz*=;}y_jVEu$6+5@4=b)Uaa?Hg8C4;z^CX0U!Z~HqTi$Af5(M5g{Hoo zyqo$49@bl8eH9wmI?S5tOl;VJF1Qc5uOR&@(cG?tB#ag$W+48UDnzcpD9< zg-Ob=3m?G^X#YMmLkE-O-_#zW!3mC{^;5CK8T2rX#P{dX3CD32UO`hkk47`pik_h- z(7>OHZbIkZhHiK_+W*}$^6!B^OoKcB5FPk28puif08e8hE+vn)XVAbl<3qR)o%kra z(C6r(%%KbYfX+XGe!@v~oCpKqE2aaZ%6N;{gNCE+vg(zXG1du7wExy+>B1JANhq7JiO02Y`~k?i3tXo%5HT0 zdLCwOE4qQ5*o}K*eH6{eIkewzSnd74MqwolckVZYu$;SPCVKH{+=!<1Ol%)PC;A5c zL_eVc|BPnnZ)B?bm)z@I#bx&_)S&&Bqt~w;XR&@*LxC}&2fbEX&y*JiT2B&0la`&@8vEEE--*Dkc*C?_xU1vxJp=+ za~c}aaqZ|geLlJaUGUXde>>LSM>BW?4dgf)z(@`GH)W$VxYG;BTH!BrK!Q9|45jGA zi=!>*PTSCcd(c2K=yl$Prg}TN<6UUKKJ+>t#AYn5CI7xilXoNQMtAlclGX4IdI*oj z`j_ZJ=g|em(L*?aF7zud!E5LS3Q3!RC(%P$g?^fP^nGe&e36a~U1*AX&_lH;w!e=2 z!T}yGG*p-Wv1qs;-&eXlk^iUs diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index a913d3d65..60e0f269d 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pl", "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"module, in ": "modu\u0142, w ", "Preparing search...": "Przygotowanie wyszukiwania...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nie znaleziono \u017cadnych pasuj\u0105cych dokument\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 poprawnie wpisane i \u017ce wybra\u0142e\u015b wystarczaj\u0105c\u0105liczb\u0119 kategorii.", "Search finished, found %s page(s) matching the search query.": "Przeszukiwanie zako\u0144czone, znaleziono %s pasuj\u0105cych stron.", ", in ": ", w ", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Searching": "Wyszukiwanie", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Search Results": "Wyniki wyszukiwania"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "pl", "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Search Results": "Wyniki wyszukiwania", "Preparing search...": "Przygotowanie wyszukiwania...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nie znaleziono \u017cadnych pasuj\u0105cych dokument\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 poprawnie wpisane i \u017ce wybra\u0142e\u015b wystarczaj\u0105c\u0105liczb\u0119 kategorii.", "Search finished, found %s page(s) matching the search query.": "Przeszukiwanie zako\u0144czone, znaleziono %s pasuj\u0105cych stron.", ", in ": ", w ", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Searching": "Wyszukiwanie", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "module, in ": "modu\u0142, w ", "Hide Search Matches": "Ukryj wyniki wyszukiwania"}}); \ No newline at end of file diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 31e424d8658ddd144b75123a2e45dd94efbedf56..1d6fc6ce13f392c55059d7335dc96d159008f3cc 100644 GIT binary patch delta 2306 zcmYk+e`wTo9LMp`Z9ALW)H#>aZRyvAKN5p&ggRT>sBEOs87M5Mwy9t1Oz(TUyUm@U z2g56BV+F^^!H5iMD;%O<2J0q9XKDO)+4x>`U_Z!gSZG! zqsEWo0{j9C@pATg!d#`Wgoc~A6z4N*F*>LTYfu9ouH=dLaVz>w!k8q5+iB=U`j}xP7IO+4@O@jqf!e_w-i8H4rEw*A53WN6 z@+4{_-KhCq#sCiDJe)zMFu!31>zh9*Y{D|~q!b5G19vHJK4V%@6SlFs0yxB%cAmr> z9JKWz)akv48h;Ko-xw;;3F{B2@xNnY6$Sso>{+cvt+~n8AGGzIsEFH9M{>Z{kD?ZQ z5t+;MqcS&y3Sa~^?p@T~I*-cGcc^u)FC_nL-uz9&{aDD2QDl!IO=dUVi5;i`1E>_f zfjWY>P~*?o`p5S91nLrgX`fG{=KB@vaSki6u9*C1Qq7IirEBF&I|y6js0DgZJMTyJ ze;sr2Bq{@^QRC96z&^s4@B*&E0E5-ug$nE_-hrtE1wQ5sUs`A!m8!2%xA_;;g8q{1 zLW@vmT8f&m9Q8U@p)#`-HP0jVc?&AQHdF>(RKEx+;6&UOdXQjEFDf-dsE!|?UZXKo zAeZq|F69-}QH`)2E$|^KkWtjc)7GDnY?~X%5R=PI)KM%&0!oasN04i6(^ zObhDvA4COs%sPM?_ol6%MP06ORA5u66kkVWvY1H}z+I?%J#N(dzl*|38u~DRZ=-fJ zhZ^AH*Cvy4%%mLerM(K3k*82QdIq(DL&%z@2dnWoGL@M`y=_0D#^n&j<9h##C}^R5 zs2#o(c)X}wKW?tK#wDw^_k)GPaUnEu8R{(8VP-+pPMYoW$L#ansEkEW3wNXX9YbxP-_~EPApc6q zFb#Uo$5B5d*H8m*qTW{@(djH3PysxF>VE)rM_xf4&4~3K)NMb9%EV{ZNhE3J8~c2w zlKktk+@hf#3s^-9HS?8uT~HZ`paM%;Q>cs#qxzji?Qjfr2PSR%B~)P3wmySH)NkQ> zOeHu#4ID-8g}I2COM<-mCWo7;07{W2vlexx51~@ohDvo1wNnq3p)TBj&)fDiDzNjY zfF@AmwtYoG8Tb}8!8O#xv$p<+ef}5fPLw#=es!pTn@|(CIO&4?rrgp{EEwu^_c~t4 z3Ax=dC*1zDn`$n+nD2S9kQZ~K=>AzhLCcSJt2E zOfD}<9SZy<{MYlJOo%8Bz(+66&2@jF-~FyUPC7=VigBeq4hbu4fE)@F094vSc5Oe`h&QH@^M^=XE2A; z*ooD*x*@jR$3rz0+mN;}gsdHgaUJfD<+JDx&f_ik9XjqOY{S3MKw5~_dAhI%AH(^0 z4CxY1VjWIkyJ^43gQ-oMr=k!tXeJi2nhQ4Za!6#G_)}7dh4%mpMZVQ_7C(#K8V)^;lz8Af8!?FD!I^SVj zgQw7x|B42h;v#vMG8N?C9potK-RJ_X=+4)o1A4Fox1t&7NBcjE2DTFq;2vzko3VZw zlNeYFHsA(y-T}T`XLrJbw{`?w=pA%{qv%X^h}zkP3v{D_^r9Kq6WxboH@uDv z35U=lIDrOq8V&eM^p0GdYfr-WJn#uu`SRBPi$=JZE39{+13O}QBYLU&(7;|qQ@bC{ z!#_ZH4Bi0)t;e~o5n5?%NQ zwBPUOU6_vLo9GWsnj7Zp+>HKSY(~dzM_!c(d!GseIExPW2E7wE(4#108=6Hg zQ$3oAd!l(XrR}l37rh((xCV#Nb;i;0=h2Kz){}oDo1#Kz&>g4gZO0|(4x7+3&&T@J zXh2=D+>3`P_hU28pyQTtjvRAXfo9}k(KEl(0NzJa%XJcgx-bPr((lvXrynV6CcSHR;AaMjJ;iY vt}sxxYhGch@|B{}{QWKWwKlePtZHj73{~w)jTP5iDg06M!2H6dTtm@+ZNIt# diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index fb0fc93b3..228dd96ea 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt_BR", "plural_expr": "(n > 1)", "messages": {"module, in ": "m\u00f3dulo, em ", "Preparing search...": "Preparando pesquisa...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua pesquisa n\u00e3o encontrou nenhum documento. Por favor assegure-se de que todas as palavras foram digitadas corretamente e de que voc\u00ea tenha selecionado o m\u00ednimo de categorias.", "Search finished, found %s page(s) matching the search query.": "Pesquisa finalizada, foram encontrada(s) %s p\u00e1gina(s) que conferem com o crit\u00e9rio de pesquisa.", ", in ": ", em ", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Searching": "Pesquisando", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Search Results": "Resultados da Pesquisa"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "pt_BR", "plural_expr": "(n > 1)", "messages": {"Search Results": "Resultados da Pesquisa", "Preparing search...": "Preparando pesquisa...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua pesquisa n\u00e3o encontrou nenhum documento. Por favor assegure-se de que todas as palavras foram digitadas corretamente e de que voc\u00ea tenha selecionado o m\u00ednimo de categorias.", "Search finished, found %s page(s) matching the search query.": "Pesquisa finalizada, foram encontrada(s) %s p\u00e1gina(s) que conferem com o crit\u00e9rio de pesquisa.", ", in ": ", em ", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Searching": "Pesquisando", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "module, in ": "m\u00f3dulo, em ", "Hide Search Matches": "Esconder Resultados da Pesquisa"}}); \ No newline at end of file diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 5765c29f8df0b3fa371d3242d2d2f38f07c88913..84bd4e28c3b7355053adff6db76d7977ef52329b 100644 GIT binary patch delta 2188 zcmZ|PZD^KN7{Kwf_sz}i+0?ynK66Y+6Sw7JvrL?s$)rHPSYK-CCS$oR-K0W%Mp1-8 zQdpr<`9ZS?Z1(7vva(RKqNvfEB-tyiB59S_sHFcN5A~^W@BZEQIrll|I@dYp8C(4H zHK{MkvL6rpZRfw1|DtT){`>nYk1}5W#vGiMAHp0=U;$ngU4o^&uf&;n3zpyj+I~Au z$A_^HcVDhgg#$dypx`K$s;24sO@DAE;92emP8b}?{+D|*) zjGdT^k0GCg-B^SBF^BQPaUN`N3eCU==s@42GrWMASU?_qFG5!-iMDG(mu4XvP+PPM z{k|I;a0FeFCy^^0k)`{FCUpV)E|*6BIb(-_ZuSq$LXz=*(xL4Xe<==HL#Thja00EI*3| z_AS=o6xweEqdU$OXr|iG&AKMVg9G-X1C5|-c`rK9D0~cW4ES!N9p&c)bwxb;{ zL$0uf8`;S4fn_zCUcQYG==9&C!`51_k!4|?v8;cWa3yKn|a#0=kt<(~f@9-R3$H02NCa(o1x={RzQ&$(GY zi3U7{?U>-jHC=`F(~GNd2u<;;Xg?>=3A~3c*$-IY`9IHt5&nUus*>q=jOL=}ei>SS zJ=$;sdhGhpfQFGPY~yAiyO5-X!#EF5qW%4XX10)>r}db!gBBiKn~qqq0$rnZ=zx7_ zhXd%6+=qU@6Ps`^n({Z00~EeNC-N(L?%iO_Ei6a-y%jz7{Z-`Of}Io?$iC=v=q4JA z@5j;9oX#aasJUHNfGy~70sXL4w zx7TC&*XRs>LC&8yM-?knG(&xG6cbxo2zN;K-KbPRVOU~_Z=vgr`hMGiF84m4=bYy`=lss^oO5@! z9B9rCmltgdd^Yi$!tbv_OaFh)6^C#;#qTkRmv9GHMl0pnMNb#DzE>m!s_; z!*SS!Dcm^vJR4r-rh0Q|`e9 z_&V0$DO`*fFd4ET)Q%0|4l3%Ay08QpBXnRZJ`&4sqBGcmOg;>t?Q%E|KScxi8|^1e z)GKfr-iB+DM`0u0g}s<${O}$(&is9JfKSkweU1hALoA=iBFZ<>0scgnBuRb^Bo&>C zwtoPpVh6euPb1&3IhOk{YsEWUjBGEO@?0#RLtXMCCp8=ONAz|ZK+FQE;upn;8GADYh@um!Epp@AL2 zDm;Vsdl?<*A9Qo3h{kd5M*E+e<;FE^L_1oD96MpmO8bj9Zz(1x}%bG_($ThTz@ zj_yLfVStMnIf}mbEqW@3(Lk~z-0V-V(FoTLbLFD}9Y+H>g?4-~dJSn3{y^6>#f8a* z8nper$ZCZ}XyD7x_g5j`@Dvv}`}4?<+0f4oeT6+}2Zu)=gp+9G-=L|zj@4L9!Sg=@ zt#9SxE`Jz3=j*Tr_hAQqfo3?(5pm#ZbmsH1*z>=bn>H%i(V1>RzTqt{F3AAeFo#X} z8M^BWsI;RRd=O`%DPE8Evl*ShE9jE#Mg!Z6W@r#A89#i@jpzJoeBlP#pn_?7EYoNp z)6tpNb1{H6Bq^a2XJHR|4BtgFdL;TK+Wtp$NiN3v-_U&&irJbDm_|FSLYLw`v_UJ@ z;xaVV&mjjP^rJJ`g`V^MNbKP{+V2>4n&-R{Ew`e9tcX53nf$wX9*-5zqAA^g&g4Zj zpdDz(2e1Ay{e&Uh6X_?qbY=u2onZ^ZH*biyB-e+N87g`Pk+%W2HxS)7Bt zETn6iL-tcRiWxkM&g>dGkpk9**g`ql-)wZC1?bFM(2TXAr|Y3?e9(hNz6l-ZwP-&& zv+d~S`Y6^Pj2?^62hk<^4jtHkA^(WRa&h1~3zgb~k5gyF;dK%`=&hFDp4* zm>){5F3PVgdo@wo&^YJ*d6|Z$=J`$a4GsBUCX7!c8uPcxZx!Z8CUqtAFHEUU{0m@m B#VG&) diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.js b/sphinx/locale/ru/LC_MESSAGES/sphinx.js index 702984278..8d72986b6 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ru", "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2", "messages": {"module, in ": ", \u043c\u043e\u0434\u0443\u043b\u044c \u0432 ", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u043f\u043e\u0438\u0441\u043a\u0443...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041d\u0435\u0442 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043b\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u044b \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438 \u043d\u0435\u0442 \u043b\u0438 \u043e\u043f\u0435\u0447\u0430\u0442\u043e\u043a \u0432 \u0437\u0430\u043f\u0440\u043e\u0441\u0435.", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u043e\u043a\u043e\u043d\u0447\u0435\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446: %s.", ", in ": ", \u0432 ", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Searching": "\u041f\u043e\u0438\u0441\u043a", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ru", "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2", "messages": {"Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u043f\u043e\u0438\u0441\u043a\u0443...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041d\u0435\u0442 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0432\u0430\u0448\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043b\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u044b \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438 \u043d\u0435\u0442 \u043b\u0438 \u043e\u043f\u0435\u0447\u0430\u0442\u043e\u043a \u0432 \u0437\u0430\u043f\u0440\u043e\u0441\u0435.", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u043e\u043a\u043e\u043d\u0447\u0435\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446: %s.", ", in ": ", \u0432 ", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Searching": "\u041f\u043e\u0438\u0441\u043a", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "module, in ": ", \u043c\u043e\u0434\u0443\u043b\u044c \u0432 ", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435"}}); \ No newline at end of file diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 96f708513e380b652ebc64c8a763bfc6a0f06a3f..ea2cd65660f7309fab88468cdbad16fccfe36392 100644 GIT binary patch delta 2237 zcmZ|Pe@xVM9LMqZ5kC%7IuMIcx$_4?@*@sTH=X)cu>oISkAoGavd6VBNe(N(;`|nffH(N@z3bU{g*WxzJ#of*x%%{E=3-KV{ zgHx#fGq?=r@NS$>Klkh`h2`A1i1*?R3}ArKHQ*XlhdR{#t#}{qLiO8&#rPT);XCgB zalD`UNvy{O4C0CIhtN<4#`ncx1RpwyO=Cv~h=zIjdv6k;FR-YRR6DW4KARkJ+i#?9tBYK)vjKJintNA6)mpbhMMq2WDM&> zWh{vb;B{2L5!9J_8tfU?IB!;kD@yCqEa}FO8r}? z0Y+VY!abit9lj6U^G{LZox&}67M1z}4$_@W2gtt;RRb5T;1OplYJzsu$~#dV_TgQ) zAC-XvsD5Lpz>eT3zK0vIoX)x*Lj~4`tFasT+Nj4>6HTI0HH|vOU!f*kKuvTBwWn85 z11_Ro!&|7#loX`LDMdXGqxwZr8Ei(idkhtDtJ7s1-%6k z?7_XL1{YBsuVOUA>^43@y`B@K_je4nk{P_y9{Ji;E($16l70=>p#rJK&G;m4!g2Jp z(vuWg@G>f8HNkYs+MP+%1cy)=nMCzFhJ5XNF4~GkSNDg~6PKgf*P#O1jt^oRR^fpV z`DZ)q6K-gL)2I~vjEcCGWoo5ET$J)jBzyKbs{MIXV1J^v;x=lcB2J|KfGV&S>s`GI zX<~!egcEDMbb~XlK@PKMf&%1pTBUOfR#M-Ins^_QEE`8nbPRR+Pq^n_pkC*5cpevV zCw|MxRz_BmJ{{Uhc3W_L#T3HKfPoKs*96~jmK?O30n)tU=u0K1|pGXY$CI;gJ zsbx!F$tvER=pF3pO~yMyFZCySLVf-5SGy9)fl%KIso{Ljmlv+7s;v!$8yah(6*aXf j|MDiEFOu3(7|+h#@$X0<72jC0>i>*ls{v$dOUOS9S4&AFA=L>-KlT#UrRSr$f(Rcf0=th`Ve zCKUU_lCYvp5yXn%uEL;SgauJl{?T%h!D@q=yLD-dCz&@bDrls?|JWE z*}d7^nK=c|2R=D|SMsYYu=W3^v^a!PnzOJFYj8fM@G@K*U619oH(@3A;B4HDj(-kk z;X#~w7(9oz%)9p6Kk*==i(!=e-Nu_AI4UE zAM5Z>ya}sHToB9N$Vn9)n~`f_ClWgh;3|A7wm(K!@Hx)FF?8HGw%{b1NE6vQPbX&a zRxH9{UT8Y_2GhibJSK5Npurs#1(5H158gLsr&qHWp z{n35s_*e0296=w=H<&Z#PqE`X+Mb@A%Cro91oL9M2@TkW+!``yrMl1rZbMgiC%Tt< z(26{b&O3yxHN1gq@ZBW!H?x1~;2X+GYXPRv0qfAxZ9q$YJ37JE*nS{h??*S?K)gPP z&i4|o#A9g5e?}86U?aJgl4aE271Ytvg=m1K=*lzbfGkeOJJ1SjLGQl@O{^F9VIMZ) z#n|7#Bqr8`wYUbIcPj_uJe=diUAr3%bN~%7gg(n7Xn@zy*KP!@$S69&nRxvyI_?j& zau?A13g%2DIx|{{ugeBBkzPE>X557a?qnGz)Qh%vq7~R5eHq=f zN6>lRLpR|lUW4b5>W3;i-8&6P0=dx4Nj)7|T!Q_`Hyq;Ndwv{QO!yj^Bm97iaWY=7 zC#vIC;^6-e1Y!%bNHa|f0}p18(zWoY3x?qNPB{J$oKU| zc8)99g5I|u-AqFqOymRfwL6I>@Exwe!mC19ju~`;eb|97qLum{b0iT;NK5O{0ISeS zbfE*gk#Bf{gO6Z1w%#-=s&c{}y`e7S7egLh^V2bB&#tD|`N*8gk zq+Mu2+tC5f;H3(okKh;@=uKZ)M|Hah=D^K(5waodqcDetgUB=CC=yFJflYWe*8f6xFpg7k8c{hejkjSn8ptMeBOT~` z-I&21oPxh1Q-nXTl=Z_k3iVh_o=kBD9k|iFO$uQ%I$}abCL3e7S=sqkGT=y3m~;LZ5#H^RN%iz)5sm zKN{HE_$&_MBFr$@_FZUToj4BLuNEnRuAtaz|_&HYyf1{UW5?7UCC`9i<1sc#YG{E)IE$H*@ zvEGSZu5NT(ADZF;G?QPW0gRy;PV!2v@cpl(P(#C`xC&oDck~UKvhUE8kD?hF!{s=R zW}u#5BX`)0rgS5^;6u0!cOz?t*RdQgAVb3sxOU?Gr{Gz(Fv`@eLz=>aScN;#gz&Ltjd7PgcEJ8O}7F|?I{s}JB(%`~t&;>T36F-Ix zxC;&RG`heC=Wgv8sE!OaG~GO9bQE~AvHf2 zSQUC!4QTsnB&%T?x=hR|`t(bd0DF!iIcVe*1p>Qd;$ zX|%rt*=)EKouCE1Y?)Z!)_+TKUVgHzZRZnhJGZv?uPjVVEvTzqyktpv-5two8~QiQ QUYba)`mcX~$>5ZK0k@LL0{{R3 delta 2142 zcmYM!eQ1?c9KiA8Uc9qSUFvc<*IX@)<|5m!x*40foI-`-A7zjlIAI_efg&>D$pw}# z;CySOB;v~-ZWZb!`Xff9QeDOVP%KTDX%2E+wH0!VsoA7a*k7ICk^eudt_C}n9+i*M{LdSoG zWARHY#%%6+60UGFk&Z!p1pmfTEM;~ltVRdaqx~&78JD8tI&cbZ#&Yb5{U`BJ+UIaK z4qz3QJ;WTC#=?+Scp#4MpOf@;NptcVjd>3-G%PjhiJfq z=sd^K1pA_2qvLwqSd35LYv_PZv~(Y!rQd~4&=cE7(K#QF(13p3hYD2eS{`< z1h-=^PRBHZ?SBJJtQ{+H6Y>c?30DK1Kuh&GdWtWh0f*2)570dwK_?6oa$mzDv@*5m zJkO!eo6&J?Xa!$F-&>9*yegV>a6_`;9keuE=!=KYug`Hbk*{zohcb)q`BIi+fR*U) z!D{@kLeXxd+Tj2)B=p91Kbp|RoJshJ8xPAJbWNxNO>j`6S$66cosjG|mttei_?Y3jK#U>mvx>(H;wd+18{poi-) zTKZ3ra~Qrr-^-#2Tt&C)26_m8Ll^c}G>`oxhfspXonArx4bVu36EDI>T!v=46Af?_ z{XIC1zW+n)zl{d|16}C|x`p{{wEacsg2toIYtY2&@C9s{O8qV67COxM02=TJy5dvO zesnLh@%fGDFdFC|G;jeY&jiPyE1!&=SdCBN$7q~y&;@>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"module, in ": "\u043c\u043e\u0434\u0443\u043b\u044c, \u0432 ", "Preparing search...": "\u041f\u0456\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0434\u043e \u043f\u043e\u0448\u0443\u043a\u0443...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0412\u0430\u0448 \u043f\u043e\u0448\u0443\u043a \u043d\u0435 \u0432\u0438\u044f\u0432\u0438\u0432 \u0436\u043e\u0434\u043d\u043e\u0433\u043e \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f. \u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u043f\u0435\u0440\u0435\u043a\u043e\u043d\u0430\u0439\u0442\u0435\u0441\u044f \u0449\u043e \u0432\u0441\u0456 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u0431\u0440\u0430\u043d\u0456 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0456 \u0432\u0438 \u043e\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0439.", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0448\u0443\u043a \u0437\u0430\u043a\u0456\u043d\u0447\u0435\u043d\u043e, \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u043e\u0440\u0456\u043d\u043e\u043a \u044f\u043a\u0456 \u0441\u043f\u0456\u0432\u043f\u0430\u043b\u0438 \u0437 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u043c \u0437\u0430\u043f\u0438\u0442\u043e\u043c.", ", in ": ", \u0432 ", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Searching": "\u0428\u0443\u043a\u0430\u044e", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "uk_UA", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443", "Preparing search...": "\u041f\u0456\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0434\u043e \u043f\u043e\u0448\u0443\u043a\u0443...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0412\u0430\u0448 \u043f\u043e\u0448\u0443\u043a \u043d\u0435 \u0432\u0438\u044f\u0432\u0438\u0432 \u0436\u043e\u0434\u043d\u043e\u0433\u043e \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f. \u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u043f\u0435\u0440\u0435\u043a\u043e\u043d\u0430\u0439\u0442\u0435\u0441\u044f \u0449\u043e \u0432\u0441\u0456 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u0431\u0440\u0430\u043d\u0456 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0456 \u0432\u0438 \u043e\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043d\u044c\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0439.", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0448\u0443\u043a \u0437\u0430\u043a\u0456\u043d\u0447\u0435\u043d\u043e, \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u043e\u0440\u0456\u043d\u043e\u043a \u044f\u043a\u0456 \u0441\u043f\u0456\u0432\u043f\u0430\u043b\u0438 \u0437 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u043c \u0437\u0430\u043f\u0438\u0442\u043e\u043c.", ", in ": ", \u0432 ", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Searching": "\u0428\u0443\u043a\u0430\u044e", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "module, in ": "\u043c\u043e\u0434\u0443\u043b\u044c, \u0432 ", "Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443"}}); \ No newline at end of file diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 3c0eb4b3ce75a4c62a13d2869c43715b4439e746..c85724e4d384b85beda867506dee2d270cf4eca4 100644 GIT binary patch delta 2237 zcmZ|PeN5F=9LMqRCAfj<4G|v#gbRU?1_2^+@%k`bOiZWqAGX|TDG$2zUPP{~QT|5O z)H_Eqr?4{CN;fKX>UC=2Tx(^!`bRBe%QaQ65UgwG8V>#*jjGtcq3ivBcSM9%_r!&pQQ?0}dY{U{=gju-Gxd|sye+6@K7e0Hgm`uI*Y?Q(z8gAkg{2j9~o6$93F{;CCRQp1limOol)?*&NhSPAswI9PL zsDFv|IEF zYr9bW`%vQzq5>Rpo<#M(fWMf`V*CJzB2P$JR zQ~=vh{dS_x)Lv9(j-l3e5m~eS5Fr1HDcqnzk(Dz$MVp6D;xbf+2r7j=sMNoK8X)fK z``!B?)Zshi-hYM~?>vTa6qWiM4$?oF&L;mlR1G||f@bGx)C6l#EAK#ccoiSP?Whdw zK=s>=3Tz+7@jaY@6?9hnN>pGiI2|`4zZUm+YN7+ER1Kp}@mHt`$50d9Lhb3#r~&Vy zuHhf3%oOIN#wkO+uR-+-p)$At_1$x*fLA-cH53TeT2ZNqp+4+KU7tZzASdt}4&_f(0U^Sk^dc286y8i|A>Y*WwTG1IS#B-=qd=-_# zTiA;CQHS$+_DPxBhT5{XdFWaV<2<~8d}@AX*Pa(*Cx($E+7Zmv{r{Xo1CC-l2DmFa zwJ}sm-^5QzeIGVbU&=u#!tGdvAEE;M4z;ptsKBN$tHvouy{|`Y@e-ViFQTWF3{aSj zBdFB>iuy2zG!T@-hN2T_C)Wk~n+FFC{UC~X!&aSqt8=|o-!OoWwJriH|1!}4*Yiolw4UN^IS=F@(|D>?b fSC?3l`!FM`>EDsUd9%h9{QpQDZHe~M>%PAMqrB+u delta 2130 zcmYM!YiQP09KiAO=(d*5$IZ>kP2H@y++yQ#TW(&aVr8Q>hE|l#YK9m(wJb$);6E+8 zj2KE}f*~m(SZxr`BI-pVu|x`1FH|bp3%e2#wHWI{m+#l-K*R0xKlk7HopXG*^ZcF3 z*sQ#l13wABbNMaHv-JN@QDF#06lY*QmgDtUg;(P((M~L(d@q*aR-B3Z(eVQ~1CQZ! zJe_M#!aIDFQZa(p;OAJ3zn~MQSj7RQXniGKiy3rWJC@@{ybkxq`a?K}^6R(+Kfp?y zz*RVVnj2!<_wX^Bif*JW>_XNKeYg^ziRBN`9ejdU;TPz*%h-&+qk+^Dt@E^F7p}(w zJc)D(r?CQuvBk81%7>{fG*77z(r6}TvYHFl@W-7t;}mR<SUt|eHR!xO{BfPf6F$7P`_YA7K^HiIp5-ZYfw$0SH;iWF5<09SxuXjiBQ%#`bT~vmM74OcRY8Sc^@#4bAv*Oze1;4`K*kMJLgSOGu0D z)oA-_biw=4Gwnq)mc;sgblfrYeGf%{MY0{5*^L?Kz@6Ar$@$mvF-nE0`~!`&qAIuG zDs;gO=tA4jfcBvEhtc|zNS4DO5_|Xvo$nhwfCUt+e;)0B3f<7#3zFQKeN2UC_cb=+ zU$J8YdE#D$rD*EA(1ka~@(y(2efTrJglq92yYShbM@}<*hKunhWa==Vn_h#f6F#hX z1ZfK|pwDp-U2qtU^enE%FJt}Og}GNzi}qWNroJ6XV(3Qyf9OL4ehy9jQFOgQ^b*b) z<-?Q|5>6eKqUDv@+QNdo?9!q~^Rpu*`%>vlQ+;D|Ri<^>&8;_OGTF}36{%EHw!iGp Q{Omw^-L&k5>dUGB0G>0$Q2+n{ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js index 911a8f26c..d35c9acae 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_CN", "plural_expr": "0", "messages": {"module, in ": "\u6a21\u5757\uff0c\u4f4d\u4e8e", "Preparing search...": "\u51c6\u5907\u641c\u7d22...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u4f60\u7684\u641c\u7d22\u6ca1\u6709\u5339\u914d\u5230\u4efb\u4f55\u6587\u6863\u3002\u8bf7\u786e\u8ba4\u4f60\u6240\u641c\u7d22\u7684\u5173\u952e\u5b57.", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c \u627e\u5230\u4e86 %s \u9875\u5339\u914d\u6240\u641c\u7d22\u7684\u5173\u952e\u5b57", ", in ": ", \u4f4d\u4e8e", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Searching": "\u641c\u7d22\u4e2d", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Search Results": "\u641c\u7d22\u7ed3\u679c"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_CN", "plural_expr": "0", "messages": {"Search Results": "\u641c\u7d22\u7ed3\u679c", "Preparing search...": "\u51c6\u5907\u641c\u7d22...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u4f60\u7684\u641c\u7d22\u6ca1\u6709\u5339\u914d\u5230\u4efb\u4f55\u6587\u6863\u3002\u8bf7\u786e\u8ba4\u4f60\u6240\u641c\u7d22\u7684\u5173\u952e\u5b57.", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c \u627e\u5230\u4e86 %s \u9875\u5339\u914d\u6240\u641c\u7d22\u7684\u5173\u952e\u5b57", ", in ": ", \u4f4d\u4e8e", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Searching": "\u641c\u7d22\u4e2d", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "module, in ": "\u6a21\u5757\uff0c\u4f4d\u4e8e", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c"}}); \ No newline at end of file diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 8d8fbefa81ab81babfd67fed7bb850840087d106..16c492cac055b6a3f15e7460c24c438c7a6e1b0e 100644 GIT binary patch delta 2399 zcmb8vduY{V9LMqJ%*|cSHr>r#&-QZ{TUxr!X6tM#H>gCqu>}phcq5EVlv{$ZJ>^^YPoMo|)E?~i+kAo?RX{9e!X`+T2g z&$G*|SDIg`j%ONU0%^vi;Bu_QI!wn->n6;hz7_Lv7#HCfYW@Mt!lUTNN!x!4^QfQ2 zC3poFqk=15PP&QToKQuBI#yvJu0>7k!V>JmB7E7lPhc_i6SxMau>w;vjJXGEP#bcw z0G~#Nm|aK?W-s22`!nM64QFW34$fmLUPVou!#gmIZ7GpfRG=<=7`t&H9!G|nNi4-F zyc54iB~rvOXO^jhv#J(e%SStY2$Qhe)?G}dK8y;m0~K%-mEf555NiI% zxD=;Rf1+8`nkIX`o`tFhPzlGEQ_$a{(Kg(VTCf9|YaT-#nQQy|v5fjK>O@{c1$+!ns*H~?+;XhSp}TG-g`M$Sx2@8)zOZ69-XL5^c3FA z+}6iY^Nt}uGsP!}-=GpNU~)A!p-yHKvPaX4I*DP_3G7_L`LCw1$99}Vox~|ypFt&b z4)va|q5@U2y2dr)I&4P;-ir$SDr(%DsMqkW?Vq##*YR807sR<4+QCKC#9vVpZ=eF^ zvTfCiQT5xbtF1vKC)0*ZFht)=(? z^-8S82GiLqZXbT6m_FPrzV;xOKVR`r20?z z(jt*qe)A8xBRCNUsy@=?g`p!7Vk>E#6N#ttCB?{#dwwyZeOG zI~dvK3=FzM;mG!=GZ0GD=Dy_f*Vo2|IIoXDcf}Azb8Y3yo?C8CU8VONpxV^5bZgVTKlzv29iQ|2KYst;|9}36*2y=X z-@h$9$ z9a)VbDiNtc4aKQAI>z7DV9_8uc^5lk5z55vI1X!23c7-l=pMd=5Ai9?;5b-I&BuPY z2q)qil!8v8icqQ%U$7nC)A4=mKpYd>wqRG3M14^TGqe*>=Fdic zY7u`1qJ{FRN>J9W)^V+l&!Ob;f6aqb{wvD6`9sGKQ3~ip7HUzkC`Z>HW&9BAkE2me zCLLv=9OO_`0ZL(OkyL6I4#pakaTk%3^Q)hDkR!i_GBK><+ie5X1C-16NcZ>PCP_jA zr{E}*Bln`bnquUqKID%S{IT{JO8$Bri5D=I_0?@2Wap1i62ud<$9^a$FaRY{5=x;X za0`ydXYe!K-i(RFw~(Le(yeX50VtPv7)t&bD0wq5lJ(VG9whMsl+VzEa;Y|;RQ!SN zFGHEQALR&ZP{y4=DX>9%0ojZC3gu+3qKvzb^7TAKDWo^=$G?$VIfw_jTtUuR3aCXn z@*lJ=%8~zrva@Jzj@*gbiI|G%D1{ee5*|f4k?-*^UO_gk)-zd7VmHbORQ2Ng$MSGU zcU(m|+8a8)g;Md~I1xMYA|+88%D6fBB4(l_4x%KkLm77(r{N{tAIEO45+|T+;7>mf zG9ij@NG5bcNi;;q!*!gdovBSnHl^kvxz#e{15q2ar8tzh1||O`l!7no{+l}X-{nCT zmYX6AcSlLoSDT{SQ&AGUpyLefe3YHMsr8|}(qi3TijuEFdlXqxok8;X)ny)J;hWmu z+B(!79Y54Y^4~@-WoMK^25Lv*Wa7!lP_+tW#{rZ}SA|kQo%X!;J4})9|7RW~VKg7F z*bAkgB$PzMwBvPqnsz46rav8@#d4HO_c=--mr(MxpcL>I%3X?lx-EZ#DBpjgZb-t% z3nD)?UboLfN$`e_m!XXFY1ioXA{}qjmT9X|3Ob6iu`f{y`xc|5;VKWI44?TYUM za6@6Z;YiE*O>Wt#=JE}#fphNmgEtG;8E$b&_{_1Ex?N7iIp=s0^IJDt+}c8*4eEo;ie*YPn}b{-q}&tvcAbVeX6x;A2Z#}g>L13x3Yo> zZKFeGLTN;(eed@p;+&14*3w$%lQMT_W%J1cfxaDUuu-d6A3ta27 zITY+WBVwYv=Uj75qqF0PQyFYIzc<`i;hYXRJC27Nwy;D2IH{^E! diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 753831003..3e4631d4f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_TW", "plural_expr": "0", "messages": {"module, in ": "", "Preparing search...": "\u6e96\u5099\u641c\u5c0b...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Search finished, found %s page(s) matching the search query.": "", ", in ": "", "Permalink to this headline": "", "Searching": "\u641c\u5c0b\u4e2d", "Permalink to this definition": "", "Hide Search Matches": "", "Search Results": "\u641c\u5c0b\u7d50\u679c"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_TW", "plural_expr": "0", "messages": {"Search Results": "\u641c\u5c0b\u7d50\u679c", "Preparing search...": "\u6e96\u5099\u641c\u5c0b...", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "Search finished, found %s page(s) matching the search query.": "", ", in ": "", "Permalink to this headline": "", "Searching": "\u641c\u5c0b\u4e2d", "Permalink to this definition": "", "module, in ": "", "Hide Search Matches": ""}}); \ No newline at end of file diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 46d3cd27e9b0463de4205bf3a7e227d987a1cf3e..05f098b1c8b375b3403ee71ad8bd9a5b12e6e9a6 100644 GIT binary patch delta 2296 zcmaLXeMnt(9LMpWULUTH^Xjde&WF21SElGSk+t@qCA9URtkJLy|FG@OYf zjs1~2h{3IB_CV1JqJ-KtDxxt4K`q!*#2Ahi+prSX9~(1*tll5*xA3pzdS2)EJLmWP zeShEcJ7?tn$yMlvy7X6j`oy(_Pftgr`cVZLf;6}3t1GM`vhE}Ci)!p`kg>k z<|-=Cj9s5Yjr$8#L0@s|z9L*$pczJTbn&}6QE6790&YURHa)0BhH;q9cmNgf51yA2 z%3@hcBpHzM3-bj#|et)PNJ_c~pkiQ1AOK)JhB3(&{fo zy&ZL^J=Bg${0VD&sBs68pL?Byz5}0N75;*2_5S;bq7|(}-Pnn$#5Pm~cA&lkL#Pr? zqAKwf>b_H`gwA0LUP0~p5VLdYno;+!$1dE28uvct=>4DIgzCD_?7}HspnVSY9hgD| zy2J)i|4r12=TYB*0LxZ8hzfj{*=V++7Pi{lh`PTYZAr`A4c?enO> zm#u%=oU{HcmaFjvs0vk}?yp5{?gr%N9_FA&7)4!wu8jKYL$HSq1^CkZ4*9t$4oYYa zHNeMCmARvAMP0fj;#n;kXauc)JE0QNm(tXtr{x^K_ mWbWtDk?D`drbqWrzcHGK&BMYITuqM|EE1>Lsy2fr{m{$Ky!{rmg=f4`&kol}C_ z;goLU?<@Wz{HLU-^#9+JG_x#*gh&ial6>zhf@`iJI^ZYCyl&|BHo`b6H*E%CQLRaX2pU`sFx+@;aP^y;zLb zumN9Uss&~>nP$VNn1a;VTx1Pfgdbz8mw!R+-~f^YJAoQ^9;@*NDv)fV)jZ|cf|WQ3 zJCH8cg(LBMOl5sL%!`H0j-xX0EBVqwS5Z5>g-Q6r%l)XYltw2ll!f{<1*m``ZY65` z3@pLLs87<4OktZbP{mHK*pG_vH&p5`c=;M?!9L_?_jxEo{iy!$P-iDCXCMO~p%!RB z?X4N7;zCqFJCUCq$|3)yyquw=0e4ZUdX7r*E7SxZyqrn2Y7e6h*$7no1f+}AVLdjX zQv59{L%UID>HsS6)9$4qh}Ps3tdgAKR?wV|8H&-!=_(*1wMi!$&Yb>GuiO)2~om5CNq$`+#nU4qrP5_RAA zq556K7W@mX1!D1>We+Lx5Ax_ z#A=PGexD& Date: Sun, 25 Oct 2009 11:09:09 +0100 Subject: [PATCH 09/16] Add "important" to print rule. --- sphinx/themes/basic/static/basic.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/themes/basic/static/basic.css b/sphinx/themes/basic/static/basic.css index 128114b76..64964c983 100644 --- a/sphinx/themes/basic/static/basic.css +++ b/sphinx/themes/basic/static/basic.css @@ -392,7 +392,7 @@ span.eqno { div.document, div.documentwrapper, div.bodywrapper { - margin: 0; + margin: 0 !important; width: 100%; } From f04ca65690f1d1f63965f24b3b9bd4250f13cc33 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 25 Oct 2009 11:26:10 +0100 Subject: [PATCH 10/16] Fix "fixed" descriptor handling, and add tests. --- CHANGES | 2 ++ sphinx/ext/autodoc.py | 9 ++++++--- tests/test_autodoc.py | 18 ++++++++++++++++++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index cf7afdb33..c00bbe008 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 0.6.4 (in development) ============================== +* Fix the handling of non-data descriptors in autodoc. + Release 0.6.3 (Sep 03, 2009) ============================ diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index 012244f1e..f5b988789 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -1015,11 +1015,14 @@ class AttributeDocumenter(ClassLevelDocumenter): # some non-data descriptors as methods priority = 10 + method_types = (FunctionType, BuiltinFunctionType, MethodType) + @classmethod def can_document_member(cls, member, membername, isattr, parent): - return (isdescriptor(member) and not - isinstance(member, (FunctionType, BuiltinFunctionType))) \ - or (not isinstance(parent, ModuleDocumenter) and isattr) + isdatadesc = isdescriptor(member) and not \ + isinstance(member, cls.method_types) + return isdatadesc or \ + (isattr and not isinstance(parent, ModuleDocumenter)) def document_members(self, all_members=False): pass diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 8e0114386..687fbd0d7 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -379,6 +379,7 @@ def test_generate(): options.exclude_members = set(['excludemeth']) assert_processes(should, 'class', 'Class') should.extend([('attribute', 'test_autodoc.Class.prop'), + ('attribute', 'test_autodoc.Class.descr'), ('attribute', 'test_autodoc.Class.attr'), ('attribute', 'test_autodoc.Class.docattr'), ('attribute', 'test_autodoc.Class.udocattr')]) @@ -427,6 +428,10 @@ def test_generate(): ('method', 'test_autodoc.Outer.Inner.meth')], 'class', 'Outer', all_members=True) + # test descriptor docstrings + assert_result_contains(' Descriptor instance docstring.', + 'attribute', 'test_autodoc.Class.descr') + # test generation for C modules (which have no source file) directive.env.currmodule = 'time' assert_processes([('function', 'time.asctime')], 'function', 'asctime') @@ -445,6 +450,17 @@ class CustomEx(Exception): def f(self): """Exception method.""" +class CustomDataDescriptor(object): + """Descriptor class docstring.""" + + def __init__(self, doc): + self.__doc__ = doc + + def __get__(self, obj, type=None): + if obj is None: + return self + return 42 + class Base(object): def inheritedmeth(self): """Inherited function.""" @@ -452,6 +468,8 @@ class Base(object): class Class(Base): """Class to document.""" + descr = CustomDataDescriptor("Descriptor instance docstring.") + def meth(self): """Function.""" From ccd4c85b20cfea2bfc8bf90acb922eaef0a1c6d1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 25 Oct 2009 22:29:22 +0100 Subject: [PATCH 11/16] Test change. --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 672d44703..4c024816c 100644 --- a/CHANGES +++ b/CHANGES @@ -3,8 +3,6 @@ Release 1.0 (in development) * Added ``html_output_encoding`` config value. -* Added ``latexpdf`` target in quickstart Makefile. - * #200: Added ``Sphinx.add_stylesheet()``. * Added ``titlesonly`` option to ``toctree`` directive. @@ -34,6 +32,8 @@ Release 1.0 (in development) * Added simplified Chinese locale. +* Added ``latexpdf`` target in quickstart Makefile. + Release 0.6.4 (in development) ============================== From f175d7a0ba1d12e923700858d88e280659667370 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Oct 2009 09:30:43 +0100 Subject: [PATCH 12/16] Dummy change. --- TODO | 1 - 1 file changed, 1 deletion(-) diff --git a/TODO b/TODO index dbfd72b8d..c22f12ed7 100644 --- a/TODO +++ b/TODO @@ -3,4 +3,3 @@ Sphinx TODO All todo items are now tracked as issues in the Sphinx issue tracker at . - From 23a75e5e62c6a5f078a1737d5c7c3c3970365dec Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Oct 2009 09:32:33 +0100 Subject: [PATCH 13/16] Expand news item. --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index c00bbe008..bb6076d08 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,7 @@ Release 0.6.4 (in development) ============================== -* Fix the handling of non-data descriptors in autodoc. +* Fix the handling of non-data, but non-method descriptors in autodoc. Release 0.6.3 (Sep 03, 2009) From 2942a6f7236cee60289a3a551cc168eb17460623 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Oct 2009 09:45:50 +0100 Subject: [PATCH 14/16] Fix whitespace. --- doc/ext/autosummary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ext/autosummary.rst b/doc/ext/autosummary.rst index 57abd6165..f270a67b6 100644 --- a/doc/ext/autosummary.rst +++ b/doc/ext/autosummary.rst @@ -220,6 +220,6 @@ The following variables available in the templates: for classes. .. note:: - + You can use the :dir:`autosummary` directive in the stub pages. Stub pages are generated also based on these directives. From a2fba1187b00e6b26be57c2f425b36aadee309d8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Oct 2009 09:52:48 +0100 Subject: [PATCH 15/16] make check: ignore "build" and "dist" dirs. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dbe7c36e2..64fef3346 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx all: clean-pyc check test check: - @$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js \ + @$(PYTHON) utils/check_sources.py -i build -i dist -i sphinx/style/jquery.js \ -i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \ -i doc/_build -i ez_setup.py -i tests/path.py -i tests/coverage.py . From 13478a49867d358ef2c519cd5079ecd319d82628 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Oct 2009 09:56:14 +0100 Subject: [PATCH 16/16] Make "make check" happy. --- doc/builders.rst | 2 +- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/autosummary/generate.py | 6 ++++-- sphinx/quickstart.py | 3 ++- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/builders.rst b/doc/builders.rst index 9b001105b..7891ce747 100644 --- a/doc/builders.rst +++ b/doc/builders.rst @@ -58,7 +58,7 @@ The builder's "name" must be given to the **-b** command-line option of .. class:: DevhelpBuilder This builder produces the same output as the standalone HTML builder, but - also generates `GNOME Devhelp `__ + also generates `GNOME Devhelp `__ support file that allows the GNOME Devhelp reader to view them. Its name is ``devhelp``. diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index dc641674f..3c9ff466b 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -226,7 +226,7 @@ class Autosummary(Directive): ``[(name, signature, summary_string, real_name), ...]``. """ env = self.state.document.settings.env - + prefixes = [''] if env.currmodule: prefixes.insert(0, env.currmodule) diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index f8447e949..8c0e10111 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -233,8 +233,10 @@ def find_autosummary_in_lines(lines, module=None, filename=None): corresponding options set. """ autosummary_re = re.compile(r'^\s*\.\.\s+autosummary::\s*') - automodule_re = re.compile(r'^\s*\.\.\s+automodule::\s*([A-Za-z0-9_.]+)\s*$') - module_re = re.compile(r'^\s*\.\.\s+(current)?module::\s*([a-zA-Z0-9_.]+)\s*$') + automodule_re = re.compile( + r'^\s*\.\.\s+automodule::\s*([A-Za-z0-9_.]+)\s*$') + module_re = re.compile( + r'^\s*\.\.\s+(current)?module::\s*([a-zA-Z0-9_.]+)\s*$') autosummary_item_re = re.compile(r'^\s+(~?[_a-zA-Z][a-zA-Z0-9_.]*)\s*.*?') toctree_arg_re = re.compile(r'^\s+:toctree:\s*(.*?)\s*$') template_arg_re = re.compile(r'^\s+:template:\s*(.*?)\s*$') diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 914d95672..7b11dfdd4 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -333,7 +333,8 @@ devhelp: \t@echo "Build finished." \t@echo "To view the help file:" \t@echo "# mkdir -p $$HOME/.local/share/devhelp/%(project_fn)s" -\t@echo "# ln -s %(rbuilddir)s/devhelp $$HOME/.local/share/devhelp/%(project_fn)s" +\t@echo "# ln -s %(rbuilddir)s/devhelp\ + $$HOME/.local/share/devhelp/%(project_fn)s" \t@echo "# devhelp" latex: