diff --git a/docs/native2ascii.html b/docs/native2ascii.html index e93a7988f..4ce960bec 100644 --- a/docs/native2ascii.html +++ b/docs/native2ascii.html @@ -1,58 +1,131 @@ -Native2Ascii - -

Native2Ascii

+ Native2Ascii + +

Native2Ascii

+ +

Description:

+ +

+ Converts files from native encodings to ASCII with escaped Unicode. + A common usage is to convert source files maintained in a native + operating system encoding, to ASCII prior to compilation. +

-

Description:

+

+ Files in the directory src + are converted from a native encoding to ASCII. + By default, all files in the directory are converted. + However, conversion may be limited to selected files using + includes and excludes attributes. + For more information on file matching patterns, + see the section on + directory based tasks. + If no encoding is specified, + the default encoding for the JVM is used. + If ext is specified, then output files are renamed + to use it as a new extension. + If dest and src point to the same directory, + the ext attribute is required. +

-

Converts files from native encodings to ascii with escaped Unicode. -A common usage is to convert source files maintained in a native -operating system encoding, to ascii prior to compilation.

+

+ This task forms an implicit File Set, + and supports all attributes of <fileset> + (dir becomes src) as well as + nested <include>, <exclude>, + and <patternset> elements. +

-

All matching files in the source directory are converted from a -native encoding to ascii. If no encoding is specified, the default -encoding for the JVM is used. If ext is specified, then output -files are renamed to use it as a new extension. If dest and -src point to the same directory, ext is required.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
reverseReverse the sense of the conversion, + i.e. convert from ASCII to nativeNo
encodingThe native encoding the files are in + (default is the default encoding for the JVM)No
srcThe directory to find files in (default is basedir)No
destThe directory to output file toYes
extFile extension to use in renaming output filesNo
defaultexcludesindicates whether default excludes should be used or not + ("yes"/"no"). + Default excludes are used when omitted. + No
includescomma separated list of patterns of files that must be + included. All files are included when omitted.No
includesfilethe name of a file. Each line of this file is + taken to be an include patternNo
excludescomma separated list of patterns of files that must be excluded. + No files (except default excludes) are excluded when omitted.No
excludesfilethe name of a file. Each line of this file is + taken to be an exclude patternNo
+ +

Examples

-

This is a directory based task, and supports includes, includesfile, -excludes, excludesfile, and defaultexcludes along with its specific -attributes.

- -
-Attribute Description                              Required
------------------------------------------------------------
-reverse   Reverse the sense of the conversion,     No
-          i.e. convert from ascii to native 
-
-encoding  The native encoding the files are in     No
-
-src       The directory to find files in           No
-
-dest      The directory to output file to          Yes
-
-ext       File extension to use in renaming        No
-          output files 
-
- -

Examples

- -
+    
 <native2ascii encoding="EUCJIS" src="srcdir" dest="srcdir"
    includes="**/*.eucjis" ext=".java" />
-
+
-

Converts all files in the directory srcdir ending in eucjis -from the EUCJIS encoding to ascii and renames the to end in -.java.

+

+ Converts all files in the directory srcdir + ending in .eucjis from the EUCJIS encoding to ASCII + and renames them to end in .java. +

 <native2ascii encoding='EUCJIS" src="native/japanese" dest="src"
    includes="**/*.java />
 
-

Converts all the files ending in .java in the directory native/japanese -to ascii, placing the results in the directory src. The names of -the files remain the same.

- - \ No newline at end of file +

+ Converts all the files ending in .java + in the directory native/japanese to ASCII, + placing the results in the directory src. + The names of the files remain the same. +

+ +