Revert last change. URL was wrong.

This commit is contained in:
John Schember 2011-02-14 17:54:46 -05:00
parent 0d12978c94
commit bb148ef0c1
2 changed files with 4 additions and 7 deletions

View File

@ -9,10 +9,8 @@ __all__ = ["Unihandecoder"]
Decode unicode text to an ASCII representation of the text.
Translate unicode characters to ASCII.
Inspired from John Schember's unidecode library
(https://code.launchpad.net/~user-none/+junk/unidecoder).
Copyright(c) 2009, John Schember <john@nachtimwald.com>
inspired from John's unidecode library.
Copyright(c) 2009, John Schember
Tranliterate the string from unicode characters to ASCII in Chinese and others.

View File

@ -8,10 +8,9 @@ __docformat__ = 'restructuredtext en'
Decode unicode text to an ASCII representation of the text in Chinese.
Transliterate unicode characters to ASCII based on chinese pronounce.
Derived from John Schember's unidecode library
(https://code.launchpad.net/~user-none/+junk/unidecoder).
derived from John's unidecode library.
Copyright(c) 2009, John Schember <john@nachtimwald.com>
Copyright(c) 2009, John Schember
Based on the ruby unidecode gem (http://rubyforge.org/projects/unidecode/) which
is based on the perl module Text::Unidecode