Takayuki SHIMIZUKAWA

Results 63 comments of Takayuki SHIMIZUKAWA

To summarize, there are two problems with `autodoc-skip-member`. (a). The values of `what` and `name` are wrong. (b). It has been wrong as its beginning, so many code uses this...

> In as much as the various versions of an event have different signatures (usually defined with positional arguments), how could it be possible that the arguments passed to the...

_From Chris Jerdonek on 2012-08-26 18:50:43+00:00_ Here is a patch that I tested against the Sphinx documentation. This is my first Sphinx patch, so my apologies in advance if I...

[html_search_option](http://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_search_options) のデフォルトでは、Sphinx本体側でもっている検索インデックスを作るために、元の文章をTinySegmenter(のPython実装)を使って分かち書きしています。 http://chasen.org/~taku/software/TinySegmenter/ Sphinxのビルド時に生成される検索インデックス https://docs.python.org/ja/3.8/searchindex.js を「内包( `\u5185\u5305` ) 」で探してみると、分割された状態になっていることがわかります。 ユーザーが検索ボックスに入力する単語は、JS実装のTinySegmenterで分かち書きされ、Sphinxの用意した検索インデックスで検索するのですが、その分かち書きがうまく動作していない可能性がありそうです。

- リスト `"\u30ea\u30b9\u30c8":[84,91,99,102,144,317,341,421,432,433,440,443,451,459],` - 内包 `"\u5185\u5305":[99,433,451],` - 表記 `"\u8868\u8a18":[99,421,425,433,442,451],` 共通するインデックス番号 99,433,451 それぞれのページ ``` docnames[99] == 'howto/functional' docnames[433] == 'tutorial/datastructures' docnames[451] == 'whatsnew/2.0' ```

やっぱり、検索語が分割されてないですね。 ![image](https://user-images.githubusercontent.com/151623/44304203-fcb26280-a38f-11e8-8b97-a896288c6b93.png) Sphinx自体の問題なのかどうか、調べてみます。

検索語が分割される前提でコメントしたけど、そのような実装はなさそう( https://github.com/sphinx-doc/sphinx/pull/3154 で実装してあると記憶違いしていた)。 また、クライアントサイドの分かち書きを設定で差し込む仕組みも現状はないので、実現するには以下が必要そうです。 1. クライアントサイドの単語分割の仕組みをプラグインで設定可能とする(サーバーサイドの単語分割は現状でもプラグインで設定可能) 2. プラグインを用意する(JSのTinySegmenterを使うコードでよさそう) 要望を https://github.com/sphinx-doc/sphinx/issues に書いてくれるとうれしいです

Here is a summary of my opinion. 1. Sometime I also want to have a type for the term and allow a term with the same name for each type....

mongodb_beaker-0.5.tar.gz in the https://pypi.python.org/pypi/mongodb_beaker did not contain README.rst file. I think it is reason of error.