ruby-changes:8033
From: akr <ko1@a...>
Date: Fri, 26 Sep 2008 02:43:07 +0900 (JST)
Subject: [ruby-changes:8033] Ruby:r19558 (trunk): update rdoc.
akr 2008-09-26 02:42:52 +0900 (Fri, 26 Sep 2008) New Revision: 19558 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19558 Log: update rdoc. Modified files: trunk/transcode.c Index: transcode.c =================================================================== --- transcode.c (revision 19557) +++ transcode.c (revision 19558) @@ -2974,40 +2974,40 @@ * The option integer should be logical-or of constants such as * Encoding::Converter::INVALID_REPLACE, etc. * - * :invalid => nil :: + * [:invalid => nil] * raise error on invalid byte sequence. This is a default behavior. - * :invalid => :replace :: + * [:invalid => :replace] * replace invalid byte sequence as a replacement string. - * :undef => nil :: + * [:undef => nil] * raise error on conversion failure due to an character in source_encoding is not defined in destination_encoding. * This is a default behavior. - * :undef => :replace :: + * [:undef => :replace] * replace undefined character in destination_encoding as a replacement string. - * :replace => string :: + * [:replace => string] * specify the replacement string. * If not specified, "\uFFFD" is used for Unicode encodings and "?" for others. - * :universal_newline => true :: + * [:universal_newline => true] * convert CRLF and CR to LF. - * :crlf_newline => true :: + * [:crlf_newline => true] * convert LF to CRLF. - * :cr_newline => true :: + * [:cr_newline => true] * convert LF to CR. - * :xml => :text :: + * [:xml => :text] * escape as XML CharData. + * This form can be used as a HTML 4.0 #PCDATA. * - '&' -> '&' * - '<' -> '<' * - '>' -> '>' * - undefined characters in destination_encoding -> hexadecimal CharRef such as &#xHH; - * This form can be used as a HTML 4.0 #PCDATA. - * :xml => :attr :: + * [:xml => :attr] * escape as XML AttValue. * The converted result is quoted as "...". + * This form can be used as a HTML 4.0 attribute value. * - '&' -> '&' * - '<' -> '<' * - '>' -> '>' * - '"' -> '"' * - undefined characters in destination_encoding -> hexadecimal CharRef such as &#xHH; - * This form can be used as a HTML 4.0 attribute value. * * example: * # UTF-16BE to UTF-8 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/