transliterated
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7
MILA::Transliterate 0.01
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Cent more>>
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Center for Processing Hebrew (MILA) and vise versa.
SYNOPSIS
use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);
# note that the reverse transliteration does NOT maintain final Hebrew letters!
Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).
This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.
This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.
<<lessSYNOPSIS
use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);
# note that the reverse transliteration does NOT maintain final Hebrew letters!
Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).
This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.
This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.
Download (0.004MB)
Added: 2007-03-05 License: Perl Artistic License Price:
964 downloads
Convert::CEGH::Transliterate 0.0.2
Convert::CEGH::Transliterate is a Coptic/Ethiopic/Greek/Hebrew Transliteration. more>> <<less
Download (0.006MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1167 downloads
Convert::Translit 1.03
Convert::Translit, transliterate, build_substitutes is a Perl module for string conversion among numerous character sets. more>>
Convert::Translit, transliterate, build_substitutes is a Perl module for string conversion among numerous character sets.
SYNOPSIS
use Convert::Translit;
$translator = new Convert::Translit($result_chset);
$translator = new Convert::Translit($orig_chset, $result_chset);
$translator = new Convert::Translit($orig_chset, $result_chset, $verbose);
$result_st = $translator->transliterate($orig_st);
$result_st = Convert::Translit::transliterate($orig_st);
build_substitutes Convert::Translit();
Convert::Translit::build_substitutes();
This module converts strings among 8-bit character sets defined by IETF RFC 1345 (about 128 sets). The RFC document is included so you can look up character set names and aliases; its also read by the module when composing conversion maps. Failing functions or objects return undef value.
Export_OK Functions:
transliterate()
returns a string in $result_chset for an argument string in $orig_chset, transliterating by a map composed by new().
build_substitutes()
rebuilds the file "substitutes" containing character definitions and approximate substitutions used when a character in $orig_chset isnt defined in $result_chset. For example, "Latin capital A" may be substituted for "Latin capital A with ogonek". It takes a long time to rebuild this file, but you should never need to. Its only source of information is file "rfc1345".
Object methods:
new()
creates a new object for converting from $orig_chset to $result_chset, these being names (or aliases) of 8-bit character sets defined in RFC 1345. If only one argument, then $orig_chset is assumed "ascii". If three arguments, the third is verbosity flag. Verbose output lists approximate substitutions and other compromises.
transliterate()
is same as the function of that name.
build_substitutes()
is same as the function of that name.
<<lessSYNOPSIS
use Convert::Translit;
$translator = new Convert::Translit($result_chset);
$translator = new Convert::Translit($orig_chset, $result_chset);
$translator = new Convert::Translit($orig_chset, $result_chset, $verbose);
$result_st = $translator->transliterate($orig_st);
$result_st = Convert::Translit::transliterate($orig_st);
build_substitutes Convert::Translit();
Convert::Translit::build_substitutes();
This module converts strings among 8-bit character sets defined by IETF RFC 1345 (about 128 sets). The RFC document is included so you can look up character set names and aliases; its also read by the module when composing conversion maps. Failing functions or objects return undef value.
Export_OK Functions:
transliterate()
returns a string in $result_chset for an argument string in $orig_chset, transliterating by a map composed by new().
build_substitutes()
rebuilds the file "substitutes" containing character definitions and approximate substitutions used when a character in $orig_chset isnt defined in $result_chset. For example, "Latin capital A" may be substituted for "Latin capital A with ogonek". It takes a long time to rebuild this file, but you should never need to. Its only source of information is file "rfc1345".
Object methods:
new()
creates a new object for converting from $orig_chset to $result_chset, these being names (or aliases) of 8-bit character sets defined in RFC 1345. If only one argument, then $orig_chset is assumed "ascii". If three arguments, the third is verbosity flag. Verbose output lists approximate substitutions and other compromises.
transliterate()
is same as the function of that name.
build_substitutes()
is same as the function of that name.
Download (0.078MB)
Added: 2006-08-08 License: Perl Artistic License Price:
1179 downloads
Template::Plugin::Translit::RU 0.05
Template::Plugin::Translit::RU is a filter for converting cyrillic text into transliterated one and back. more>>
Template::Plugin::Translit::RU is a filter for converting cyrillic text into transliterated one and back.
SYNOPSIS
Use as filters.
[% USE Translit::RU translit detranslit %]
[% FILTER translit( koi ) %]
...
This text would stay unchanged because it is not cyrillic.
...
[% END %]
Use as object. First argument - text for conversion. Second optional argument - charset (koi is default).
[% USE plTranslit = Translit::RU %]
[% plTranslit.translit( without cyrillic text is useless ) %]
[% plTranslit.detranslit( kirilitca, win ) %]
Template::Plugin::Translit::RU is Template Toolkit filter which allows to convert cyrillic text into transliterated latin text. Currently two most popular charsets are supported - koi8-r and windows-1251. Also back conversion supported.
<<lessSYNOPSIS
Use as filters.
[% USE Translit::RU translit detranslit %]
[% FILTER translit( koi ) %]
...
This text would stay unchanged because it is not cyrillic.
...
[% END %]
Use as object. First argument - text for conversion. Second optional argument - charset (koi is default).
[% USE plTranslit = Translit::RU %]
[% plTranslit.translit( without cyrillic text is useless ) %]
[% plTranslit.detranslit( kirilitca, win ) %]
Template::Plugin::Translit::RU is Template Toolkit filter which allows to convert cyrillic text into transliterated latin text. Currently two most popular charsets are supported - koi8-r and windows-1251. Also back conversion supported.
Download (0.005MB)
Added: 2007-04-07 License: Perl Artistic License Price:
575 downloads
Text::XLogfile 0.03
Text::XLogfile module allows reading and writing xlogfiles. more>>
Text::XLogfile module allows reading and writing xlogfiles.
SYNOPSIS
use Text::XLogfile :all;
my @scores = read_xlogfile("scores.xlogfile");
for (@scores) { $_->{player} = lc $_->{player} }
write_xlogfile(@scores, "scores.xlogfile.new");
my $xlogline = make_xlogline($scores[0], -1);
my $score = parse_xlogline($xlogline);
print "First place: $score->{player}n";
print "$xloglinen";
xlogfile format
xlogfile is a simple line-based data format. An xlogfile is analogous to an array of hashes. Each line corresponds to a hash. A sample xlogline looks like:
name=Eidolos:ascended=1:role=Wiz:race=Elf:gender=Mal:align=Cha
This obviously corresponds to the following hash:
{
ascended => 1,
align => Cha,
name => Eidolos,
race => Elf,
role => Wiz,
gender => Mal,
}
xlogfile supports no quoting. Keys and values may be any non-colon characters. The first = separates the key from the value (so in a=b=c, the key is a, and the value is b=c. Colons are usually transliterated to underscores. Like a Perl hash, if multiple values have the same key, later values will overwrite earlier values. Heres something resembling the actual grammar:
xlogfile<<less
SYNOPSIS
use Text::XLogfile :all;
my @scores = read_xlogfile("scores.xlogfile");
for (@scores) { $_->{player} = lc $_->{player} }
write_xlogfile(@scores, "scores.xlogfile.new");
my $xlogline = make_xlogline($scores[0], -1);
my $score = parse_xlogline($xlogline);
print "First place: $score->{player}n";
print "$xloglinen";
xlogfile format
xlogfile is a simple line-based data format. An xlogfile is analogous to an array of hashes. Each line corresponds to a hash. A sample xlogline looks like:
name=Eidolos:ascended=1:role=Wiz:race=Elf:gender=Mal:align=Cha
This obviously corresponds to the following hash:
{
ascended => 1,
align => Cha,
name => Eidolos,
race => Elf,
role => Wiz,
gender => Mal,
}
xlogfile supports no quoting. Keys and values may be any non-colon characters. The first = separates the key from the value (so in a=b=c, the key is a, and the value is b=c. Colons are usually transliterated to underscores. Like a Perl hash, if multiple values have the same key, later values will overwrite earlier values. Heres something resembling the actual grammar:
xlogfile<<less
Download (0.022MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
Faerion IRC Server 1.17.7.1
Faerion IRC Server project consists of an advanced, secure, multi-lingual IRC server for Unix/Win32. more>>
Faerion IRC Server project consists of an advanced, secure, multi-lingual IRC server for Unix/Win32.
Faerion is a Unicode-based IRC server. It features enhanced support and transparent conversion for different charsets, and provides a stealth network model, persistent channels, compressed links, etc.
Main features:
- Support for transparent, user-controlled charset translation (virtually) from anything to anything. This is done by using Unicode mappings, which can be installed or removed on the fly, without having to interrupt the server. The server supports a special "fallback" conversion table which maps all characters that are not supported by a users preferred charset to the closest looking characters. This process is typically referred to as "transliteration" and is widely used on Russian IRC networks to avoid problems with incompatible charsets. The difference is that with Faerion, the server takes all necessary investigation to see what should be transliterated, and what can be passed without changes.
- Clients that have native support for Unicode (UTF-8), will benefit from using it at full scale without the implication of "cryptic writings" (which raw UTF-8 is for a typical human eye).
- Support for "persistent channels": channels registered with the Channel Service (mode +r) are not deleted when the last user leaves. This slightly saves bandwidth and helps mitigate several privacy issues (such as channel key revelation).
- Support for channel forwarding based on user address matching rules: with channel mode +f enabled, all ban masks can have a ",#channel" suffix appended to them to forward clients to another channel instead of declining the attempt to join the channel.
- Limited portability. The server is currently available for most POSIX platforms (modern BSD and Linux variants) and Microsoft Windows.
Enhancements:
- The LIST command now requires users with unregistered nicknames to additionally specify a pseudo random number to prove their human nature, otherwise the command is ignored.
- Opers no longer need an O-line to use any command; remotely set +o works just fine.
- Fixed the charset conversion problem when a user gets registered on the server.
- Invite list no longer overrides ban list.
- Fixed a crash in WHOIS.
- Fixed to compile without warnings in -Werror mode with GCC 3+.
- Fixed the +c channel mode to disallow colors instead of stripping them.Also, when a topic is being changed by a nonop on a +c-t channel to something that contains colors, the attempt is denied.
<<lessFaerion is a Unicode-based IRC server. It features enhanced support and transparent conversion for different charsets, and provides a stealth network model, persistent channels, compressed links, etc.
Main features:
- Support for transparent, user-controlled charset translation (virtually) from anything to anything. This is done by using Unicode mappings, which can be installed or removed on the fly, without having to interrupt the server. The server supports a special "fallback" conversion table which maps all characters that are not supported by a users preferred charset to the closest looking characters. This process is typically referred to as "transliteration" and is widely used on Russian IRC networks to avoid problems with incompatible charsets. The difference is that with Faerion, the server takes all necessary investigation to see what should be transliterated, and what can be passed without changes.
- Clients that have native support for Unicode (UTF-8), will benefit from using it at full scale without the implication of "cryptic writings" (which raw UTF-8 is for a typical human eye).
- Support for "persistent channels": channels registered with the Channel Service (mode +r) are not deleted when the last user leaves. This slightly saves bandwidth and helps mitigate several privacy issues (such as channel key revelation).
- Support for channel forwarding based on user address matching rules: with channel mode +f enabled, all ban masks can have a ",#channel" suffix appended to them to forward clients to another channel instead of declining the attempt to join the channel.
- Limited portability. The server is currently available for most POSIX platforms (modern BSD and Linux variants) and Microsoft Windows.
Enhancements:
- The LIST command now requires users with unregistered nicknames to additionally specify a pseudo random number to prove their human nature, otherwise the command is ignored.
- Opers no longer need an O-line to use any command; remotely set +o works just fine.
- Fixed the charset conversion problem when a user gets registered on the server.
- Invite list no longer overrides ban list.
- Fixed a crash in WHOIS.
- Fixed to compile without warnings in -Werror mode with GCC 3+.
- Fixed the +c channel mode to disallow colors instead of stripping them.Also, when a topic is being changed by a nonop on a +c-t channel to something that contains colors, the attempt is denied.
Download (MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
950 downloads
Bundle::Unicode 0.01
Bundle::Unicode is a Perl bundle to install Unicode modules and their dependencies. more>>
Bundle::Unicode is a Perl bundle to install Unicode modules and their dependencies.
SYNOPSIS
perl -MCPAN -e install Bundle::Unicode
CONTENTS
Unicode::Lite
Unicode::String
Unicode::Map
enum
Unicode::EastAsianWidth
ExtUtils::MakeMaker
Module::Build
Unicode::Collate
Unicode::Collate::Standard
File::Spec
Cwd
Exporter
Test
Test::More
Inline
XSLoader
Unicode::CheckUTF8
Unicode::Char
Unicode::Unihan
Fcntl
File::Path
Lingua::Han::Utils
Unicode::IMAPUtf7
Unicode::Map8
Unicode::Map
Unicode::MapUTF8
App::Info::Lib::Iconv
Encode
Module::Install
FindBin
Jcode
MIME::Base64
Unicode::UTF8simple
Unicode::Japanese
ExtUtils::Manifest
ExtUtils::Embed
Unicode::Escape
Filter::Simple
Unicode::Transliterate
AutoLoader
Clone
Unicode::Wrap
File::Copy
Unicode::Normalize
Unicode::Regex::Set
Unicode::Transform
Unicode::Decompose
Unicode::RecursiveDowngrade
String::Multibyte
String::Multibyte::Unicode
String::Multibyte::Grapheme
Acme::MetaSyntactic
Scalar::List::Util
IO::Compress::Base
Text::Unidecode
ShiftJIS::X0213::MapUTF
ShiftJIS::CP932::MapUTF
ShiftJIS::CP932::Correct
Convert::Base32
Convert::RACE
HTML::Fraction
String::Fraction
XML::Simple
YAML
Convert::CharMap
Config
File::Spec::Functions
File::Basename
Scalar::Util
AppConfig
Template
Template::Config
version
Template::Provider::Unicode::Japanese
Bundle::Encode
ShiftJIS::Collate
ShiftJIS::Regexp
encoding::warnings
Locale::Recode
TeX::Encode
Pod::LaTeX
Pod::Find
Pod::ParseUtils
Pod::Select
Locale::Maketext
Locale::Maketext::Lexicon
Locale::Maketext::Simple
i18n
Convert::ASCIInames
Apache::GuessCharset
HTML::Entities
HTML::Parser
<<lessSYNOPSIS
perl -MCPAN -e install Bundle::Unicode
CONTENTS
Unicode::Lite
Unicode::String
Unicode::Map
enum
Unicode::EastAsianWidth
ExtUtils::MakeMaker
Module::Build
Unicode::Collate
Unicode::Collate::Standard
File::Spec
Cwd
Exporter
Test
Test::More
Inline
XSLoader
Unicode::CheckUTF8
Unicode::Char
Unicode::Unihan
Fcntl
File::Path
Lingua::Han::Utils
Unicode::IMAPUtf7
Unicode::Map8
Unicode::Map
Unicode::MapUTF8
App::Info::Lib::Iconv
Encode
Module::Install
FindBin
Jcode
MIME::Base64
Unicode::UTF8simple
Unicode::Japanese
ExtUtils::Manifest
ExtUtils::Embed
Unicode::Escape
Filter::Simple
Unicode::Transliterate
AutoLoader
Clone
Unicode::Wrap
File::Copy
Unicode::Normalize
Unicode::Regex::Set
Unicode::Transform
Unicode::Decompose
Unicode::RecursiveDowngrade
String::Multibyte
String::Multibyte::Unicode
String::Multibyte::Grapheme
Acme::MetaSyntactic
Scalar::List::Util
IO::Compress::Base
Text::Unidecode
ShiftJIS::X0213::MapUTF
ShiftJIS::CP932::MapUTF
ShiftJIS::CP932::Correct
Convert::Base32
Convert::RACE
HTML::Fraction
String::Fraction
XML::Simple
YAML
Convert::CharMap
Config
File::Spec::Functions
File::Basename
Scalar::Util
AppConfig
Template
Template::Config
version
Template::Provider::Unicode::Japanese
Bundle::Encode
ShiftJIS::Collate
ShiftJIS::Regexp
encoding::warnings
Locale::Recode
TeX::Encode
Pod::LaTeX
Pod::Find
Pod::ParseUtils
Pod::Select
Locale::Maketext
Locale::Maketext::Lexicon
Locale::Maketext::Simple
i18n
Convert::ASCIInames
Apache::GuessCharset
HTML::Entities
HTML::Parser
Download (0.002MB)
Added: 2007-05-26 License: Perl Artistic License Price:
882 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above transliterated search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed