PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3177

*** shadow/3177 Mon Aug 20 08:01:42 2001
--- shadow/3177.tmp.22204       Mon Aug 20 08:01:42 2001
***************
*** 0 ****
--- 1,45 ----
+ +============================================================================+
+ | Javadoc double-quotes group arguments                                      |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 3177                        Product: Ant                     |
+ |       Status: NEW                         Version: 1.4Beta1                |
+ |   Resolution:                            Platform: Other                   |
+ |     Severity: Normal                   OS/Version: Linux                   |
+ |     Priority: Other                     Component: Core tasks              |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: [EMAIL PROTECTED]                                   |
+ |  Reported By: [EMAIL PROTECTED]                                          |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ The javadoc command double-quotes arguments given by the <group> tag.  For
+ example, the following build.xml fragment will give a command line containing
+ 
+ -group '"foo.bar:foo.baz:foo.mumble"'
+ 
+ The javadoc command interprets this as needing to group the classes
+ 
+ "foo.bar
+ foo.baz
+ foo.mumble"
+ 
+ resulting in foo.bar and foo.mumble being listed in "Other Packages" instead 
of
+ under "Foo Package".
+ 
+ This occurs using ANT 1.4Beta1 (and built locally from CVS) under "Java(TM) 2
+ Runtime Environment, Standard Edition (build 1.3.1)" on Red Hat Linux 6.2.
+ 
+ 
+ <javadoc
+     sourcepath="${built.src}"
+     destdir="${built.javadocs}"
+     version="true"
+     packagenames="foo.*"
+ >
+     <group
+         title="Foo Package"
+         packages="foo.bar,foo.baz,foo.mumble"
+     />
+ </javadoc>

Reply via email to