uni2ascii 4.9 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News uni2ascii 4.9 (Default branch)
# 1  
Old 05-07-2008
uni2ascii 4.9 (Default branch)

Imageuni2ascii and ascii2uni convert between UTF-8Unicode and 29 7-bit ASCII equivalents including:hexadecimal and decimal HTML and SGML numericcharacter references, \u-escapes, standardhexadecimal, raw hexadecimal, and RFC2396 URIformat. Such ASCII equivalents are useful forentering Unicode in program source or in programsthat are not 8-bit safe, and for testing anddebugging. Several options allow Unicode to beconverted to approximately equivalent ASCII, e.g.by stripping diacritics. An optional GUI isprovided.License: GNU General Public License v3Changes:
This release fixes a bug that produced bad outputor a segmentation fault if a line ended in theprefix to an escape. In quoted-printable format,if a line ends in an equal-sign, both the equalsign and the immediately following newline are nowskipped by ascii2uni, in accordance with RFC 2045.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
HTML::FormHandler::Field::Float(3pm)			User Contributed Perl Documentation		      HTML::FormHandler::Field::Float(3pm)

NAME
HTML::FormHandler::Field::Float - validate a float value VERSION
version 0.40013 DESCRIPTION
This accepts a positive or negative float/integer. Negative numbers may be prefixed with a dash. By default a max of eight digits including 2 precision are accepted. Default decimal symbol is ','. Widget type is 'text'. # For example 1234,12 has size of 6 and precision of 2 # and separator symbol of ',' has_field 'test_result' => ( type => 'Float', size => 8, # Total size of number including decimal part. precision => 2, # Size of the part after decimal symbol. decimal_symbol => '.', # Decimal symbol accepted in web page form decimal_symbol_for_db => '.', # For inflation. Decimal symbol accepted in DB, which automatically converted to. range_start => 0, range_end => 100 ); messages float_needed float_size float_precision AUTHOR
FormHandler Contributors - see HTML::FormHandler COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Gerda Shank. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-25 HTML::FormHandler::Field::Float(3pm)