|
View:
New views
13 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (MTAGLIST-46) Support for other programming languages as wellSupport for other programming languages as well
----------------------------------------------- Key: MTAGLIST-46 URL: http://jira.codehaus.org/browse/MTAGLIST-46 Project: Maven 2.x Taglist Plugin Issue Type: New Feature Environment: environment independent Reporter: Christoph Pickl Priority: Minor Attachments: patch-taglist-cpickl_2009_09_02.txt currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. changes which have to be made: 1) TagListReport#hasSources() ... change ".java" 2) FileAnalyser#findFilesToScan() ... change "**/*.java" in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=189557#action_189557 ] Nate Stoddard commented on MTAGLIST-46: --------------------------------------- Great feature request Christoph, and I like the filename check logic encapsulation within your SourceFileFilter. I do have a suggestion. If Taglist uses this "mode" approach, we will need to update the source code and perform a release for every new language or new file extension that is wanted. Also some developers use non-standard filename extensions, so what if we move the control to the user? e.g. private List languageExtensions; <languageExtensions> <languageExtension>as</languageExtension> <languageExtension>mxml</languageExtension> </languageExtensions> This list could be passed and used by your SourceFileFilter. > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=189561#action_189561 ] Nate Stoddard commented on MTAGLIST-46: --------------------------------------- One more item, but it is more toward the Taglist future plans then this specific feature request. How will Taglist handle languages with different comment strings? For example the "mxml" file could have an XML comment (<!-- TODO: add validation to this form field -->), but the current Taglist logic is looking for /* or // to start a comment. My first thought was that the selectable file extensions and selectable comments should be in separate Jira tickets, but I don't know if users will want to have these combined in the configuration. They could then mix multiple languages in the same build. E.g. Java, XML and HTML. In that mix language case, we could use a configuration like this... <languageExtensions> <languageExtension> <fileExts> <fileExt>java</fileExt> </fileExts> <commentDelims> <commentDelim> <start><![CDATA[/*]]></start> <end><![CDATA[*/]]></end> </commentDelim> <commentDelim> <start><![CDATA[//]]></start> </commentDelim> </commentDelims> </languageExtension> <languageExtension> <fileExts> <fileExt>xml</fileExt> <fileExt>html</fileExt> </fileExts> <commentDelims> <commentDelim> <start><![CDATA[<!--]]></start> <end><![CDATA[-->]]></end> </commentDelim> </commentDelims> </languageExtension> </languageExtensions> This is much more complex then a simple file extension list, but the user has flexibility. Not sure sure what is the best approach. > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=190550#action_190550 ] Christoph Pickl commented on MTAGLIST-46: ----------------------------------------- hi nate, first of all thanks for the input, and also thanks for your appreciation about the "file name check logic encapsulation" ;) regarding user-defined comment strings: of course the whole thing would get highly configurable (and therefore usable for more people) with the introduction of such thing. but maybe some investigation has to be done first (as you seemed not so sure about your own proposition) by creating a list of comment styles among the different languages to get a picture of the needs. finally got time to implement the languageExtensions-feature (as to called from now on): [patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt] some issues i would need some feedback: 1. artifact handler's language: it is compared with "java" if aggregate is enabled; could this be a problem for the languageExtensions feature? (see FIXME tasktag in TagListReport:577) 2. no encoding set: if you dont set the (source-)encoding in your pom, the xml report fails with a warning; see current version of TagListReport:422. in my patch i added a null check (as done already in other methods). or use the "file.encoding" system-property instead?! 3. hm... where to instantiate sourceFileFilter? because it is accessed either for "taglist:taglist" or "site" in a different method, and there is no constructor... currently i just access it via a getter with lazy instantiating. 4. i also added some tests, yesss :) by the way refactored the class a bit (new POM_BASE_PATH constant in TaglistMojoBasicConfigTest) ~christoph > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Updated: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christoph Pickl updated MTAGLIST-46: ------------------------------------ Comment: was deleted (was: patch implementing a languageExtensions configuration as suggested by nate.) > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Updated: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christoph Pickl updated MTAGLIST-46: ------------------------------------ Attachment: patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt patch implementing a languageExtensions configuration as suggested by nate. > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=193924#action_193924 ] Christoph Pickl commented on MTAGLIST-46: ----------------------------------------- hello?! someone still around here? this feature is actually DONE. it even includes some tests.... > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=194052#action_194052 ] Nate Stoddard commented on MTAGLIST-46: --------------------------------------- Hello, Taglist is not a high activity plugin, so it can take some time before someone with commit powers has time to push the changes. Usually once a few issues are fixed I'll post to the dev mailing list directly asking for someone to commit multiple issues. In the meantime can you take a look at the "site" output for your patch changes? I believe there are 118 checkstyle errors in the patch. I know it is kind of anal on my part, but I have be pushing to keep Taglist at zero CPD, PDM, and Checkstyle errors. Thanks for your work on this Christoph, and I look forward to this feature in 2.5. > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=194317#action_194317 ] Anthony Whitford commented on MTAGLIST-46: ------------------------------------------ I really would like the following source codes checked for tags: * Java (*.java) * JavaScript (*.js) * Scala (*.scala) * Groovy (*.groovy) * ActionScript (*.as) * XML (*.xml, *.xhtml, *.mxml) * CSS (*.css) Since Scala and Groovy have Java roots, the comment logic is the same or similar. I look forward to the support. > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Commented: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=196879#action_196879 ] Christoph Pickl commented on MTAGLIST-46: ----------------------------------------- @nate: okay, fixed all checkstyle errors (cpd/pmd did not find anything wrong with my patch). glad that there are people taking care about such things! @anthony: the way it is implemented right now you can do this at your own. just add for example "<languageExtensions><languageExtension>groovy</languageExtension></languageExtensions>" to the taglist mojo configuration and you are done. same for the other file types -at least if they are using the same comment style... this is what we have to think about for the next step: support different comment styles for different languages... there is still one unsolved issue i would need support with: in the TagListReport class i've added a FIXME tag concerning reactor projects and the artifact handler's language (which is checked against "java"). my question now is now: why was this check introduced and how does this affect the languageExtension feature? and also i would need someone to answer me the question concerning sourceFileFilter instantiation (see my comment from 10/Sep/09 03:49 PM). would be very nice. ~christoph > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-cpickl_2009_09_02.txt, patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Updated: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christoph Pickl updated MTAGLIST-46: ------------------------------------ Attachment: patch-taglist-languageExtensions_configuration-cpickl_2009_11_02.txt > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-languageExtensions_configuration-cpickl_2009_11_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Updated: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christoph Pickl updated MTAGLIST-46: ------------------------------------ Attachment: (was: patch-taglist-languageExtensions_configuration-cpickl_2009_09_10.txt) > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-languageExtensions_configuration-cpickl_2009_11_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
|
[jira] Updated: (MTAGLIST-46) Support for other programming languages as well[ http://jira.codehaus.org/browse/MTAGLIST-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christoph Pickl updated MTAGLIST-46: ------------------------------------ Attachment: (was: patch-taglist-cpickl_2009_09_02.txt) > Support for other programming languages as well > ----------------------------------------------- > > Key: MTAGLIST-46 > URL: http://jira.codehaus.org/browse/MTAGLIST-46 > Project: Maven 2.x Taglist Plugin > Issue Type: New Feature > Environment: environment independent > Reporter: Christoph Pickl > Priority: Minor > Attachments: patch-taglist-languageExtensions_configuration-cpickl_2009_11_02.txt > > > currently only java files are supported. but as the syntax of many other languages are similar to java's, it should not be that hard to adjust the plugin for these other languages. > changes which have to be made: > 1) TagListReport#hasSources() ... change ".java" > 2) FileAnalyser#findFilesToScan() ... change "**/*.java" > in the attached eclipse patch you will find these changes, plus a SourceFileFilter class which handles proper filtering depending on a new maven configuration "languageMode" (which can now be either "java" which is the default, or "flex" which looks for *.as and *.mxml files). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
| Free embeddable forum powered by Nabble | Forum Help |