[JBoss JIRA] Created: (JBIDE-8519) ?floor, ?ceiling and ?round are not recognized by FreeMarker IDE
by Rafal Piotrowski (JIRA)
?floor, ?ceiling and ?round are not recognized by FreeMarker IDE
----------------------------------------------------------------
Key: JBIDE-8519
URL: https://issues.jboss.org/browse/JBIDE-8519
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: FreeMarker
Environment: Ubuntu Linux
Eclipse Helios Java EE (Build id: 20100917-0705)
FreeMarker IDE 1.1.0.v20110215-1224-H22-GA
Reporter: Rafal Piotrowski
Priority: Minor
Sample code:
[#ftl]
[#assign testlist=[0, 1, -1, 0.5, 1.5, -0.5, -1.5, 0.25, -0.25, 1.75, -1.75] /]
[#list testlist as result]
${result} ?floor=${result?floor}
${result} ?ceiling=${result?ceiling}
${result} ?round=${result?round}
[/#list]
is causing parse errors in eclipse, because plugin is using freemarker 2.3.8. These functions are in Freemarker from version 2.3.13 (http://freemarker.sourceforge.net/docs/ref_builtins_number.html#ref_built...).
I have tried to add new freemarker library to plugin directory and change Bundle-ClassPath in META-INF/MANIFEST.MF, but it didn't work.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-4346) -Djava.library.path always overwritten with some default
by arne anka (JIRA)
-Djava.library.path always overwritten with some default
--------------------------------------------------------
Key: JBIDE-4346
URL: https://jira.jboss.org/jira/browse/JBIDE-4346
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: JBossAS
Affects Versions: 3.0.1.GA
Environment: jboss 4.2.2.GA
eclipse:
Version: 3.4.2
Build id: M20090211-1700
Reporter: arne anka
in the launch configuration for my configured jboss server i need to add another directory to the parameter -Djava.library.path.
after editing it looks like
-Djava.library.path="/home/arne/jboss-4.2.2.GA/bin/native:/foo/bar/"
saving and reopening shows instead
-Djava.library.path="/home/arne/jboss-4.2.2.GA/bin/native"
adding another parameter instead
-Djava.library.path="/foo/bar"
resulting in
-Djava.library.path="/home/arne/jboss-4.2.2.GA/bin/native"
-Djava.library.path="/foo/bar"
ends up with
-Djava.library.path="/home/arne/jboss-4.2.2.GA/bin/native"
-Djava.library.path="/home/arne/jboss-4.2.2.GA/bin/native"
after saving
obviously some simple logic checks for the existence of the -Djava.library.path parameter and overwrites it with a default instead of at least appending its default.
i don't really see what's the meaning behind that, and therefore am convinced it has to be a bug.
additionally, it stops me from running at least one webapp, that requires the parameter to be set correctly.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-7630) Quickfix for "Stereotype annotation type must be annotated with one of @Target..." error marker
by Daniel Azarov (JIRA)
Quickfix for "Stereotype annotation type must be annotated with one of @Target..." error marker
-----------------------------------------------------------------------------------------------
Key: JBIDE-7630
URL: https://jira.jboss.org/browse/JBIDE-7630
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: cdi (jsr-299)
Reporter: Daniel Azarov
Assignee: Daniel Azarov
Fix For: 3.3.x
Quickfix for "Stereotype annotation type must be annotated with one of @Target('{'TYPE, METHOD, FIELD'}'), @Target('{'METHOD, FIELD'}'), @Target('{'TYPE'}'), @Target('{'METHOD'}'), @Target('{'FIELD'}') [JSR-299 §2.7.1]" error marker.
This quickfix should offer next:
1. Add @Target({TYPE, METHOD, FIELD}) annotation
2. Add @Target({METHOD, FIELD}) annotation
3. Add @Target({TYPE}) annotation
4. Add @Target({METHOD}) annotation
5. Add @Target({FIELD}) annotation
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-7632) Quickfix for "Qualifier annotation type must be annotated with @Target..." error marker
by Daniel Azarov (JIRA)
Quickfix for "Qualifier annotation type must be annotated with @Target..." error marker
---------------------------------------------------------------------------------------
Key: JBIDE-7632
URL: https://jira.jboss.org/browse/JBIDE-7632
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: cdi (jsr-299)
Reporter: Daniel Azarov
Assignee: Daniel Azarov
Fix For: 3.3.x
Quickfix for "Qualifier annotation type must be annotated with @Target('{'TYPE, METHOD, FIELD, PARAMETER'}') or @Target('{'FIELD, PARAMETER'}') [JSR-299 §2.3.2, §10.1]" error marker.
If there is no @Target annotation this quickfix should offer next:
1. Add @Target({TYPE, METHOD, FIELD, PARAMETER}) annotation
2. Add @Target({FIELD, PARAMETER}) annotation
If current @Target annotation is not correct this quickfix should offer next:
1. Change current @Target to @Target({TYPE, METHOD, FIELD, PARAMETER}) annotation
2. Change current @Target to @Target({FIELD, PARAMETER}) annotation
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months