Bug 139858 - New port: converters/py-unidecode ASCII transliterations of Unicode text
Summary: New port: converters/py-unidecode ASCII transliterations of Unicode text
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-python (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-10-23 07:30 UTC by Douglas Thrift
Modified: 2009-11-04 14:40 UTC (History)
0 users

See Also:


Attachments
py-unidecode.shar (23.79 KB, text/plain)
2009-10-23 07:30 UTC, Douglas Thrift
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Douglas Thrift 2009-10-23 07:30:05 UTC
It often happens that you have non-Roman text data in Unicode, but
you can't display it -- usually because you're trying to show it
to a user via an application that doesn't support Unicode, or
because the fonts you need aren't accessible. You could represent
the Unicode characters as "???????" or "\15BA\15A0\1610...", but
that's nearly useless to the user who actually wants to read what
the text says.

What Unidecode provides is a function, 'unidecode(...)' that
takes Unicode data and tries to represent it in ASCII characters
(i.e., the universally displayable characters between 0x00 and 0x7F).
The representation is almost always an attempt at *transliteration*
-- i.e., conveying, in Roman letters, the pronunciation expressed by
the text in some other writing system. (See the example above)

This is a Python port of the Text::Unidecode Perl module by
Sean M. Burke <sburke@cpan.org>.

WWW: http://code.zemanta.com/tsolc/unidecode/
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2009-10-23 07:30:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2009-11-04 14:37:28 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2009-11-04 14:37:56 UTC
miwi        2009-11-04 14:37:37 UTC

  FreeBSD ports repository

  Modified files:
    converters           Makefile 
  Added files:
    converters/py-unidecode Makefile distinfo pkg-descr pkg-plist 
  Log:
  What Unidecode provides is a function, 'unidecode(...)' that
  takes Unicode data and tries to represent it in ASCII characters
  (i.e., the universally displayable characters between 0x00 and 0x7F).
  The representation is almost always an attempt at *transliteration*
  -- i.e., conveying, in Roman letters, the pronunciation expressed by
  the text in some other writing system. (See the example above)
  
  WWW: http://code.zemanta.com/tsolc/unidecode/
  
  PR:             ports/139858
  Submitted by:   Douglas Thrift
  
  Revision  Changes    Path
  1.167     +1 -0      ports/converters/Makefile
  1.1       +23 -0     ports/converters/py-unidecode/Makefile (new)
  1.1       +3 -0      ports/converters/py-unidecode/distinfo (new)
  1.1       +8 -0      ports/converters/py-unidecode/pkg-descr (new)
  1.1       +544 -0    ports/converters/py-unidecode/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"