diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-24 16:02:37 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-24 16:02:37 +0000 |
| commit | 40ea82a318764d4133ab25b32ec5c274c01d1d43 (patch) | |
| tree | ab275eacb22614b63231a145acaa2c35c132d19d /transcode.c | |
| parent | 672a3bfad02185534829835baad1e5ea6d9fc000 (diff) | |
| download | ruby-40ea82a318764d4133ab25b32ec5c274c01d1d43.tar.gz ruby-40ea82a318764d4133ab25b32ec5c274c01d1d43.tar.xz ruby-40ea82a318764d4133ab25b32ec5c274c01d1d43.zip | |
update rdoc.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode.c')
| -rw-r--r-- | transcode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/transcode.c b/transcode.c index b82729cb5..39e3d6cbe 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. * |
