added: two tables to locales/substitute: smallleters, capitalics

added: locale.ToSmall(wchar_t), locale.ToCapital(wchar_t)
       now we are able to recognize other than ASCII characters
added: static/basic/winix.css with basic styles
removed: [include "item_options.html"] from html templates (fun_cat.html and others)




git-svn-id: svn://ttmath.org/publicrep/winix/trunk@760 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2011-08-29 22:23:54 +00:00
parent b984475e49
commit 8c01b0f6c0
10 changed files with 626 additions and 54 deletions

View File

@@ -1,7 +1,16 @@
# these tables are used to change url characters
# one character from 'original' table at a specific position
# will be translated to one character from 'changeto' at the same position
# one character from 'url_original' table at a specific position
# will be translated to one character from 'url_changeto' at the same position
url_original = "ąćęłńóśźżĄĆĘŁŃÓŚŹŻ"
url_changeto = "acelnoszzacelnoszz"
# these tables are used to change from small to capital letters
# ASCII characters (a-z, A-Z) are tested beforehand
# so these tables are not used for such characters
smallleters = "ąćęłńóśźż"
capitalics = "ĄĆĘŁŃÓŚŹŻ"
original = "ąćęłńóśźżĄĆĘŁŃÓŚŹŻ"
changeto = "acelnoszzacelnoszz"