|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (QDOX-134) Upgrading breaks parsing of parametersUpgrading breaks parsing of parameters
-------------------------------------- Key: QDOX-134 URL: http://jira.codehaus.org/browse/QDOX-134 Project: QDox Issue Type: Bug Affects Versions: 1.6.3 Reporter: Josh Auerbach We have been using qdox 1.1 for a while now, and in a desire to have support for Java generics we are attempting to upgrade to 1.6.3 However we are encountering a bug... consider this class: /** * @myTag name=TestClass attrs=Something1,Something2,Something3 */ public class TestClassImpl { } before we would get the DocletTag for myTag and do a getParameters and it would give us a String array: {"name=TestClass","attrs=Something1,Something2,Something3"} now the same thing gives us {"name","=","TestClass","attrs","=","Something1",",","Something2",",","Something3"} ie it gets split up at all ='s and ,'s I think this may have to due with this change: http://archive.qdox.codehaus.org/scm/20040531145056.11387.qmail%40codehaus.org I am now starting to hack around this, but would much prefer to get this resolved. -- 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: (QDOX-134) Upgrading breaks parsing of parameters[ http://jira.codehaus.org/browse/QDOX-134?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=163349#action_163349 ] Paul Hammant commented on QDOX-134: ----------------------------------- I've updated LexerTest.java it now has a test testQDOX134_MoreAnnotationTokens() But also see the method above for an additional broken item in respect of doclet params. Josh : is this still important to you? Or have you flipped your codebase to Java 5 ? > Upgrading breaks parsing of parameters > -------------------------------------- > > Key: QDOX-134 > URL: http://jira.codehaus.org/browse/QDOX-134 > Project: QDox > Issue Type: Bug > Affects Versions: 1.6.3 > Reporter: Josh Auerbach > > We have been using qdox 1.1 for a while now, and in a desire to have support for Java generics we are attempting to upgrade to 1.6.3 > However we are encountering a bug... consider this class: > /** > * @myTag name=TestClass attrs=Something1,Something2,Something3 > */ > public class TestClassImpl { > } > before we would get the DocletTag for myTag and do a getParameters and it would give us a String array: {"name=TestClass","attrs=Something1,Something2,Something3"} > now the same thing gives us {"name","=","TestClass","attrs","=","Something1",",","Something2",",","Something3"} ie it gets split up at all ='s and ,'s > I think this may have to due with this change: http://archive.qdox.codehaus.org/scm/20040531145056.11387.qmail%40codehaus.org > I am now starting to hack around this, but would much prefer to get this resolved. -- 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: (QDOX-134) Upgrading breaks parsing of doclet tag parameters[ http://jira.codehaus.org/browse/QDOX-134?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Hammant updated QDOX-134: ------------------------------ Summary: Upgrading breaks parsing of doclet tag parameters (was: Upgrading breaks parsing of parameters) > Upgrading breaks parsing of doclet tag parameters > ------------------------------------------------- > > Key: QDOX-134 > URL: http://jira.codehaus.org/browse/QDOX-134 > Project: QDox > Issue Type: Bug > Affects Versions: 1.6.3 > Reporter: Josh Auerbach > > We have been using qdox 1.1 for a while now, and in a desire to have support for Java generics we are attempting to upgrade to 1.6.3 > However we are encountering a bug... consider this class: > /** > * @myTag name=TestClass attrs=Something1,Something2,Something3 > */ > public class TestClassImpl { > } > before we would get the DocletTag for myTag and do a getParameters and it would give us a String array: {"name=TestClass","attrs=Something1,Something2,Something3"} > now the same thing gives us {"name","=","TestClass","attrs","=","Something1",",","Something2",",","Something3"} ie it gets split up at all ='s and ,'s > I think this may have to due with this change: http://archive.qdox.codehaus.org/scm/20040531145056.11387.qmail%40codehaus.org > I am now starting to hack around this, but would much prefer to get this resolved. -- 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: (QDOX-134) Upgrading breaks parsing of doclet tag parameters[ http://jira.codehaus.org/browse/QDOX-134?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul Hammant updated QDOX-134: ------------------------------ Fix Version/s: 1.11 > Upgrading breaks parsing of doclet tag parameters > ------------------------------------------------- > > Key: QDOX-134 > URL: http://jira.codehaus.org/browse/QDOX-134 > Project: QDox > Issue Type: Bug > Affects Versions: 1.6.3 > Reporter: Josh Auerbach > Fix For: 1.11 > > > We have been using qdox 1.1 for a while now, and in a desire to have support for Java generics we are attempting to upgrade to 1.6.3 > However we are encountering a bug... consider this class: > /** > * @myTag name=TestClass attrs=Something1,Something2,Something3 > */ > public class TestClassImpl { > } > before we would get the DocletTag for myTag and do a getParameters and it would give us a String array: {"name=TestClass","attrs=Something1,Something2,Something3"} > now the same thing gives us {"name","=","TestClass","attrs","=","Something1",",","Something2",",","Something3"} ie it gets split up at all ='s and ,'s > I think this may have to due with this change: http://archive.qdox.codehaus.org/scm/20040531145056.11387.qmail%40codehaus.org > I am now starting to hack around this, but would much prefer to get this resolved. -- 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] Closed: (QDOX-134) Upgrading breaks parsing of doclet tag parameters[ http://jira.codehaus.org/browse/QDOX-134?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Scholte closed QDOX-134. ------------------------------- Resolution: Fixed Assignee: Robert Scholte Fix in [rev-675 | http://fisheye.codehaus.org/changelog/qdox/?cs=675] > Upgrading breaks parsing of doclet tag parameters > ------------------------------------------------- > > Key: QDOX-134 > URL: http://jira.codehaus.org/browse/QDOX-134 > Project: QDox > Issue Type: Bug > Affects Versions: 1.6.3 > Reporter: Josh Auerbach > Assignee: Robert Scholte > Fix For: 1.11 > > > We have been using qdox 1.1 for a while now, and in a desire to have support for Java generics we are attempting to upgrade to 1.6.3 > However we are encountering a bug... consider this class: > /** > * @myTag name=TestClass attrs=Something1,Something2,Something3 > */ > public class TestClassImpl { > } > before we would get the DocletTag for myTag and do a getParameters and it would give us a String array: {"name=TestClass","attrs=Something1,Something2,Something3"} > now the same thing gives us {"name","=","TestClass","attrs","=","Something1",",","Something2",",","Something3"} ie it gets split up at all ='s and ,'s > I think this may have to due with this change: http://archive.qdox.codehaus.org/scm/20040531145056.11387.qmail%40codehaus.org > I am now starting to hack around this, but would much prefer to get this resolved. -- 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 |