Yup, the fix works. Once I wiped out the target dir, things started working.
Thanks Richard
Vaidhy

-----Original Message-----
From: Richard Burgess [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 01, 2003 10:13 AM
To: Maven Users List
Subject: RE: jxr-plugin fails if '_' in packagename


This fix worked for me.  The issue is listed as an unassigned bug:

http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-822

Did you clean out the previously generated docs?

Richard

On Wed, 2003-10-01 at 15:24, Kumar, Vaidhyanatha K. wrote:
> Matthias,
> Did that fix help you. I tried your suggestion and I still have the summary and 
> other frames generated incorrectly.
> Vaidhy
> 
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:13 AM
> To: [EMAIL PROTECTED]
> Subject: RE: jxr-plugin fails if '_' in packagename
> 
> 
> The problem is in the class org.apache.maven.jxr.pacman.JavaFileImpl. The
> used StreamTokenizer has to be extended by '_' as a word character:
> 
>    private StreamTokenizer getTokenizer() throws IOException
>    {
>       ...
>       stok.commentChar('*');
>       stok.wordChars('_', '_');  // add here the underscore character as
> an word character
>       ...
>    }
> 
> Regards, Matthias
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to