From a7dd79c1b4050b7132f072e38b4563433c3f1fe0 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 24 Sep 2008 16:02:37 +0000 Subject: update rdoc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- transcode.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'transcode.c') diff --git a/transcode.c b/transcode.c index b82729cb5b..39e3d6cbef 100644 --- a/transcode.c +++ b/transcode.c @@ -2943,10 +2943,15 @@ rb_econv_init_by_convpath(VALUE self, VALUE convpath, * :universal_newline => true # decorator for converting CRLF and CR to LF * :crlf_newline => true # decorator for converting LF to CRLF * :cr_newline => true # decorator for converting LF to CR + * :xml => :text # escape as XML CharData (AMPERSAND, LESS-THAN SIGN and GREATER-THAN SIGN are escaped as &, < and >, respectively) + * :xml => :attr # escape as XML AttValue (AMPERSAND, LESS-THAN SIGN, GREATER-THAN SIGN and QUOTATION MARK are escaped as &, <, > and "e;. quoted by QUOTATION MARK.) * integer form: * Encoding::Converter::UNIVERSAL_NEWLINE_DECORATOR * Encoding::Converter::CRLF_NEWLINE_DECORATOR * Encoding::Converter::CR_NEWLINE_DECORATOR + * Encoding::Converter::XML_TEXT_DECORATOR + * Encoding::Converter::XML_ATTR_CONTENT_DECORATOR + * Encoding::Converter::XML_ATTR_QUOTE_DECORATOR * * Encoding::Converter.new creates an instance of Encoding::Converter. * -- cgit v1.2.3