Skip to main content

Fix the Sphinx to enable any order to sort indices

Project description

Introduction

Currently, June 7, 2015, Sphinx 1.3.1 sorts indices only with ‘Normalization Form Canonical Decomposition(NFD)’. And what is worse, grouping is done only with US-ASCII. There is non or few problems when you use the language similar to English, because the NFD method decompose diacritical marks.

But with the other languages, the grouping is useless. Almost all characters are grouped into ‘Symbols’. What a meaningless behavior it is!

I don’t know what happens with each language in the world, but one of the worst might be Japanese case. The many terms are written with kanzi (kanji, 漢字, Chinese characters), and the sorting should be done by how to read, that generally cannot be defined from the characters of the terms.

This extension tries to resolve these problems above, using sortorder. Not only with these problematic languages, you can define the alternate sort order for any language you want.

Sorry to say, this extension can resolve .. glossary:: directive only, by replacing with .. yogosyu:: one. Other directives like index would be resolved with future release.

License

2-clause BSD, same as the Sphinx project.

Installation

You can install or uninstall this package like another Python packages. Also, you can use this package without installing this package on your Python systems, the configuration file of Sphinx(conf.py) enable you to use.

System requirements

Tested with 32bit version of Python 2.7.10 and 64bit version of 3.4.3, both on the Microsoft Windows 8.1 Pro 64bit edition. But with another versions and on another OSs would be usable.

Python 3 is required if you need full unicode support. When used with Python 2, the usable character set is limited with local encoding.

How to install

You can install this package as you will do with another one.

  1. Open a console and do pip install yogosyu.

    On the MS-Windows, <python_installed_path>\Scripts\pip.exe install yogosyu.

  2. Or when you get zip archive like yogosyu-2.0.5(.zip) where ‘2.0.5’ is version number, change current directiory to the folder that has the zip file, and do pip install yogosyu-2.0.5.zip.

    On the MS-Windows, <python_installed_path>\Scripts\pip.exe install yogosyu-2.0.5.zip.

  3. Or, this way is the Sphinx specific, you can use this package just extracted any folder you want. the conf.py enables you to use the themes and extensions.

If you don’t resolve dependencies, you also have to get sortorder module.

How to use

1) Add the paths

As another extensions, you can use this extension by editing conf.py.

First, you should add:

# add 4 lines below
import distutils.sysconfig
site_package_path = distutils.sysconfig.get_python_lib()
sys.path.insert(0, os.path.join(site_package_path, 'sortorder'))
sys.path.insert(0, os.path.join(site_package_path, 'sphinxcontrib/yogosyu'))

Or, when you don’t install with pip or like,

# add just 2 line below
sys.path.insert(0, '<path_to_the_folder_contains_sortorder___init___py>')
sys.path.insert(0, '<path_to_the_folder_contains_yogosyu_py>')

If you want to use your own sort order module(.py file), you should add the path of it, too:

# after adding paths as above, add the line below.
sys.path.insert(0, '<path_to_the_folder_sort_order_xx_py>')

2) declare the extensions

Next, add yogosyu extension into extension list:

language = 'xx' # make sure your language if you want to use autodetect

#
# (snip...)
#

extension = [
  'sort_order_xx', # omit when using one of preset sort order or autodetect
  'sortorder', # you can omit always, because 'yogosyu' automatically loads
  'yogosyu', # you can omit if activate next line, but this is main module
  'user_ordered_index_patch', # omit when you DON'T use general indices
] # Of course you can add another extensions.

3) replace ‘glossary’ with ‘yogosyu’

Now, just replace .. glossary:: with .. yogosyu::. When :sorted: is given, the terms are sorted in each glossary.

And anyway, the general index in genindex.html is also sorted as you want to define.

4) add the how to read each terms

For the languages like Japanese, .. yogosyu:: directive has another option :yomimark: <a separater char>. the separator is a character you want to use split. When the separator is given, the term can be followed the string how to read. If you think some terms don’t need the reading, you can simply omit for the terms.

Consider to use the preset Japanese sort order defined in sortorder extension:

language = 'ja'

#
# (snip...)
#

extension = [
  'user_ordered_index_patch',
]  # all omitted modules will be automatically loaded

And write glossary like:

.. yogosyu::
  :sorted:
  :yomimark:

  ひらがな

    比較的曲線が多い日本語の表音文字

  カタカナ

    比較的直線が多い日本語の表音文字

  漢字、かんじ

    日本語でも使われる表意文字

  英字、えいじ

    義務教育で教わるため、日本語でもよく使われる表音文字

  記号、きごう

    国内国外を問わず多種多様な記号が携帯電話などでも使えるようになってきた

The separator is (U+3001) in this case.

This reorders the terms 英字 -> カタカナ -> 漢字 -> 記号 -> ひらがな. The preset sortorder.ja module sorts them depending on えいじ, カタカナ, かんじ, きごう, ひらがな.

And in the genindex.html, カタカナ, 漢字, 記号 is grouped in one heading . Also because the module desides it depending on how to read.

Author

Suzumizaki-Kimitaka(鈴見咲 君高), 2011-2015

History

2.0.5(2015-07-04):

2013-12-07:

Add Python 3 support.

2013-12-06:

updated to meet Sphinx 1.2.

2011-05-24:

First release. Includes sortorder and unicode_ids.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yogosyu-2.0.5.zip (316.7 kB view details)

Uploaded Source

Built Distribution

yogosyu-2.0.5-py2.py3-none-any.whl (245.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file yogosyu-2.0.5.zip.

File metadata

  • Download URL: yogosyu-2.0.5.zip
  • Upload date:
  • Size: 316.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for yogosyu-2.0.5.zip
Algorithm Hash digest
SHA256 1bb0ea20a0272a21e494083c773d17e788a533defa5b18d68a1e2673ed7c3048
MD5 e5068643d3704bd8a35257f4c3a0dd06
BLAKE2b-256 e2452854fc3d855d37817502d4a5f3c15b3c9736f7185a025506e6df7c409c9b

See more details on using hashes here.

File details

Details for the file yogosyu-2.0.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for yogosyu-2.0.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c4e02ac6da19a5ab018167024b1c84c0b2df756884d96aca162e8625bddf72a9
MD5 4a165c38c89b8979e9de9ce10bd7bdb4
BLAKE2b-256 317d8f144272152de5c19b55c4b789c5791b79ec2a80e91a4690b52ce7606405

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page