[jira] (MNG-5178) Substitute environment variable M2_HOME by M3_HOME

2012-03-04 Thread Michael (JIRA)

[ 
https://jira.codehaus.org/browse/MNG-5178?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=293365#comment-293365
 ] 

Michael commented on MNG-5178:
--

Can this be added such that M3_HOME & M3 are the default, if neither are set it 
falls back to M2?

> Substitute environment variable M2_HOME by M3_HOME
> --
>
> Key: MNG-5178
> URL: https://jira.codehaus.org/browse/MNG-5178
> Project: Maven 2 & 3
>  Issue Type: Wish
>  Components: Command Line
>Reporter: Oliver B. Fischer
>Priority: Minor
>
> Maven 3 uses the environment variable {{M2_HOME}} to point to it's 
> installation directory. This variable should be replaced by {{M3_HOME}} to 
> allow users to have parallel installations of Maven 2 and Maven 3 without any 
> special handling of the environment variable {{M2_HOME}}.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] (JXR-58) Syntax highlighting broken for inline comments

2012-03-04 Thread Lukas Theussl (JIRA)

 [ 
https://jira.codehaus.org/browse/JXR-58?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukas Theussl closed JXR-58.


Resolution: Won't Fix
  Assignee: Lukas Theussl

> Syntax highlighting broken for inline comments
> --
>
> Key: JXR-58
> URL: https://jira.codehaus.org/browse/JXR-58
> Project: Maven JXR
>  Issue Type: Bug
>  Components: jxr
>Affects Versions: 2.1
>Reporter: Lukas Theussl
>Assignee: Lukas Theussl
>
> For instance, for the line
> {code}
> out.write( text, /*preserveSpace*/ false );
> {code}
> the whole rest of the line after the comment will also be highlighted in 
> green, where only the comment should be.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] (JXR-96) [PATCH] JXR Comment handling has several shortcomings

2012-03-04 Thread Lukas Theussl (JIRA)

 [ 
https://jira.codehaus.org/browse/JXR-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukas Theussl updated JXR-96:
-

Affects Version/s: (was: 2.4)

> [PATCH] JXR Comment handling has several shortcomings
> -
>
> Key: JXR-96
> URL: https://jira.codehaus.org/browse/JXR-96
> Project: Maven JXR
>  Issue Type: Bug
>Affects Versions: 2.3
>Reporter: Matt Benson
> Fix For: 2.4
>
> Attachments: JXR-96.patch.txt
>
>
> I have identified the following issues:
>  * a // comment does not properly mask a subsequent /* on the same line.
>  * explicitly tries not to terminate comments if */ is embedded in a string, 
> but compilers don't behave this way.
>  * does not handle /**/ construct properly: recognized as javadoc but not 
> terminated, while it is better interpreted as /*[empty]*/.
> I have addressed these issues + JXR-58 by reworking the comment handling 
> code.  Formerly the filters were applied { multiline, inline }; my version of 
> the code uses { ongoing-multiline, inline, begin-multiline } specifically to 
> address the first of the issues noted above.  I was unable to find any 
> exhaustive tests for this code; please guide me if there is any further 
> testing I can provide.  I have collapsed the duplicate code in these regions 
> as much as possible, and since this project is on maven-parent v21 I believe 
> I was justified in replacing the StringBuffers in affected areas with 
> StringBuilders (obviously the whole file might benefit minutely from this 
> treatment).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] (JXR-96) [PATCH] JXR Comment handling has several shortcomings

2012-03-04 Thread Lukas Theussl (JIRA)

 [ 
https://jira.codehaus.org/browse/JXR-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukas Theussl closed JXR-96.


   Resolution: Fixed
Fix Version/s: 2.4
 Assignee: Lukas Theussl

Patch applied in 
[r1296948|http://svn.apache.org/viewvc?view=revision&revision=1296948]. Thanks!

> [PATCH] JXR Comment handling has several shortcomings
> -
>
> Key: JXR-96
> URL: https://jira.codehaus.org/browse/JXR-96
> Project: Maven JXR
>  Issue Type: Bug
>Affects Versions: 2.3
>Reporter: Matt Benson
>Assignee: Lukas Theussl
> Fix For: 2.4
>
> Attachments: JXR-96.patch.txt
>
>
> I have identified the following issues:
>  * a // comment does not properly mask a subsequent /* on the same line.
>  * explicitly tries not to terminate comments if */ is embedded in a string, 
> but compilers don't behave this way.
>  * does not handle /**/ construct properly: recognized as javadoc but not 
> terminated, while it is better interpreted as /*[empty]*/.
> I have addressed these issues + JXR-58 by reworking the comment handling 
> code.  Formerly the filters were applied { multiline, inline }; my version of 
> the code uses { ongoing-multiline, inline, begin-multiline } specifically to 
> address the first of the issues noted above.  I was unable to find any 
> exhaustive tests for this code; please guide me if there is any further 
> testing I can provide.  I have collapsed the duplicate code in these regions 
> as much as possible, and since this project is on maven-parent v21 I believe 
> I was justified in replacing the StringBuffers in affected areas with 
> StringBuilders (obviously the whole file might benefit minutely from this 
> treatment).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira