You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Wolfgang Werner <ww...@picturesafe.de> on 2000/05/08 23:20:38 UTC

Javadoc task : handling of groups

Hi there,

I need help with the javadoc task. Everything works just fine,
with the exception of the group tag.

This works fine

	[...]
           group='"${Name} Packages" "de.picturesafe.adam.*"'
	[...]

but this doesn't work:

	[...]
           group='"${Name} Packages"
"de.picturesafe.adam.*:de.picturesafe.util.*"'
	[...]

The result is, that only the **/util/* packages are grouped.

I would like this to work, plus more than one group, what about:

	[...]
           group='"${Name} Packages"
"de.picturesafe.adam.*:de.picturesafe.util.*"'
           group='"User Packages" "de.picturesafe.user.*"'
	[...]

Any idea?

Thanks a lot! Great work!

Wolfgang Werner

	pictureSafe media / data / bank GmbH
	Großer Burstah 36-38
	20457 Hamburg

	Web		www.picturesafe.de
	eMail		wwerner@picturesafe.de
	Telefon		+49 (0)40 / 37 41 27 - 81
	Telefax		+49 (0)40 / 37 41 27 - 99


RE: Javadoc task : handling of groups

Posted by Wolfgang Werner <ww...@picturesafe.de>.
Great. That would be a great help. Please send again, I can't find your old
email.
Thanks,

Wolfgang

> -----Original Message-----
> From: Patrick Chanezon [mailto:chanezon@netscape.com]
> Sent: Tuesday, May 09, 2000 12:03 AM
> To: ant-dev@jakarta.apache.org
> Subject: Re: Javadoc task : handling of groups
>
>
> Hi Wolfgang,
>
> I posted a patch for javadoc the 3/27, fixing this group option, and
> adding
> the support for multiple groups, link and linoffline options.
> I received no feedback at all about it and I don't think it has been
> commited.
>
> I don't know if there are archives of this list somewhere. If not, and
> you're interested in the patch, I can send it to you.
>
> The new syntax looks like:
> <javadoc packagenames="com.dummy.test.*"
>            sourcepath="src"
>            destdir="docs/api"
>            author="true"
>            version="true"
>            use="true"
>            windowtitle="Test API"
>            doctitle="<h1>Test</h1>"
>            bottom="<i>Copyright &#169; 2000 Dummy Corp. All Rights
> Reserved.</i>"/>
>            <linkoffline
> href="http://java.sun.com/products/jdk/1.2/docs/api/"
> packagelistLoc="C:\tmp"/>
>            <link
> href="http://developer.java.sun.com/developer/products/xml/doc
> s/api/"/>
>            <group title="Group 1 Packages"
> packages="com.dummy.test.a*"/>
>            <group title="Group 2 Packages"
> packages="com.dummy.test.b*"/>
>   </javadoc>
>
> P@
>
> Wolfgang Werner wrote:
>
> > Hi there,
> >
> > I need help with the javadoc task. Everything works just fine,
> > with the exception of the group tag.
> >
> > This works fine
> >
> >         [...]
> >            group='"${Name} Packages" "de.picturesafe.adam.*"'
> >         [...]
> >
> > but this doesn't work:
> >
> >         [...]
> >            group='"${Name} Packages"
> > "de.picturesafe.adam.*:de.picturesafe.util.*"'
> >         [...]
> >
> > The result is, that only the **/util/* packages are grouped.
> >
> > I would like this to work, plus more than one group, what about:
> >
> >         [...]
> >            group='"${Name} Packages"
> > "de.picturesafe.adam.*:de.picturesafe.util.*"'
> >            group='"User Packages" "de.picturesafe.user.*"'
> >         [...]
> >
> > Any idea?
> >
> > Thanks a lot! Great work!
> >
> > Wolfgang Werner
> >
> >         pictureSafe media / data / bank GmbH
> >         Großer Burstah 36-38
> >         20457 Hamburg
> >
> >         Web             www.picturesafe.de
> >         eMail           wwerner@picturesafe.de
> >         Telefon         +49 (0)40 / 37 41 27 - 81
> >         Telefax         +49 (0)40 / 37 41 27 - 99
>
> --
> Patrick Chanezon, Vortex - Portal/EServices Technical Lead
> Netscape Communications Corp. - http://people.netscape.com/chanezon/
> Opinions are my own.
>
> "Two monks were arguing about a flag. One said: `The flag is moving.'
> The other said: `The wind is moving.'
> The sixth patriach happened to be passing by. He told them: `Not the
> wind, not the flag; mind is moving.'"
> Zen Koan
>
>


Re: Javadoc task : handling of groups

Posted by Patrick Chanezon <ch...@netscape.com>.
Hi Wolfgang,

I posted a patch for javadoc the 3/27, fixing this group option, and
adding
the support for multiple groups, link and linoffline options.
I received no feedback at all about it and I don't think it has been
commited.

I don't know if there are archives of this list somewhere. If not, and
you're interested in the patch, I can send it to you.

The new syntax looks like:
<javadoc packagenames="com.dummy.test.*"
           sourcepath="src"
           destdir="docs/api"
           author="true"
           version="true"
           use="true"
           windowtitle="Test API"
           doctitle="<h1>Test</h1>"
           bottom="<i>Copyright &#169; 2000 Dummy Corp. All Rights
Reserved.</i>"/>
           <linkoffline
href="http://java.sun.com/products/jdk/1.2/docs/api/"
packagelistLoc="C:\tmp"/>
           <link
href="http://developer.java.sun.com/developer/products/xml/docs/api/"/>
           <group title="Group 1 Packages"
packages="com.dummy.test.a*"/>
           <group title="Group 2 Packages"
packages="com.dummy.test.b*"/>
  </javadoc>

P@

Wolfgang Werner wrote:

> Hi there,
>
> I need help with the javadoc task. Everything works just fine,
> with the exception of the group tag.
>
> This works fine
>
>         [...]
>            group='"${Name} Packages" "de.picturesafe.adam.*"'
>         [...]
>
> but this doesn't work:
>
>         [...]
>            group='"${Name} Packages"
> "de.picturesafe.adam.*:de.picturesafe.util.*"'
>         [...]
>
> The result is, that only the **/util/* packages are grouped.
>
> I would like this to work, plus more than one group, what about:
>
>         [...]
>            group='"${Name} Packages"
> "de.picturesafe.adam.*:de.picturesafe.util.*"'
>            group='"User Packages" "de.picturesafe.user.*"'
>         [...]
>
> Any idea?
>
> Thanks a lot! Great work!
>
> Wolfgang Werner
>
>         pictureSafe media / data / bank GmbH
>         Gro�er Burstah 36-38
>         20457 Hamburg
>
>         Web             www.picturesafe.de
>         eMail           wwerner@picturesafe.de
>         Telefon         +49 (0)40 / 37 41 27 - 81
>         Telefax         +49 (0)40 / 37 41 27 - 99

--
Patrick Chanezon, Vortex - Portal/EServices Technical Lead
Netscape Communications Corp. - http://people.netscape.com/chanezon/
Opinions are my own.

"Two monks were arguing about a flag. One said: `The flag is moving.'
The other said: `The wind is moving.'
The sixth patriach happened to be passing by. He told them: `Not the
wind, not the flag; mind is moving.'"
Zen Koan