Description
In non alphabetic languages, wiki links have to be created using square brackets and double quotes ["like this"]. On the editing page, if the user deside to select a category, the category name is added to the end of the page. If a category name is not in CamelCase, the category link won't be attached to the category name - I am not sure if it is a bug, or just a feature request.
Suggestion: if a category is not in CamelCase, it should be added to the category list on the eding interface in its ["double quoted form"]. All the non ABC speaking people will appreciate a lot.
Example
Details
MoinMoin Version |
1.3 with configured chinese categories |
Workaround
Manually add the quotes.
It would be nice if the machine can do it for me -- JunHu 2004-12-06 17:04:11
- See at the heading of this section. And see below.
Discussion
Fix consists of:
- Fix the category adding.
- Create documentation for categories.
There is a configuration option called page_category_regex which set what is a category page.
The default value of this is '^Category[A-Z]' which will recognize only page like CategoryThis etc. This pattern should be set according to your language, for example, in Hebrew language wiki, this pattern should be:
page_category_regex = '^Category[A-Z]|^קטגוריה .+'
Which will match any page name starting with the word "קטגוריה" or any page starting with Category.That was exactly what i did - see the screenshot. Otherwise there won't be anything like "日记类" in the category list :). The problem is when adding this 日记类 to the page, it should be added as ["日记类"]. As you said, need to fix the category adding. -- JunHu 2004-12-06 17:09:57
Plan
- Priority: medium
Assigned to: ThomasWaldmann
- Status: fixed