[JBoss JIRA] (JBIDE-7239) Code completion for faces-config.xml
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-7239?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-7239.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Code completion for faces-config.xml
> ------------------------------------
>
> Key: JBIDE-7239
> URL: https://issues.jboss.org/browse/JBIDE-7239
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 3.2.0.M2
> Reporter: Fabricio Lemos
> Assignee: Victor Rubezhny
> Labels: code_completion, jsf
> Fix For: LATER
>
>
> It would be nice to have code-completion for faces-config.xml. Something like xhtml path completion for <from-view-id> and <to-view-id> and bean properties and methods for Naviagtion <from-action> and <if>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-8098) Validate that no unknown attributes are used according to tablibs
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8098?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-8098.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Validate that no unknown attributes are used according to tablibs
> -----------------------------------------------------------------
>
> Key: JBIDE-8098
> URL: https://issues.jboss.org/browse/JBIDE-8098
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsf
> Reporter: Lukáš Fryč
> Assignee: Alexey Kazakov
> Fix For: LATER
>
>
> Currently, when you type nonexistent attribute, you are lost in the battle trying to find what's wrong.
> Try this:
> <h:commandButton id="commandButton" value="Submit" >
> <a4j:ajax onComplete="alert('completed')" />
> </h:commandButton>
> Neither JSF-RI nor the IDE warn you that you did a mistake and that you should use "oncomplete" instead to show the alert window on completion.
> <h:commandButton id="commandButton" value="Submit" >
> <a4j:ajax oncomplete="alert('completed')" />
> </h:commandButton>
> I propose to check this mistakes on level of IDE and trigger warnings where the unknown attributes is used to give user feedback .
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-5163) XML tree tab is locked when xml is well formed but not valid
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-5163?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-5163.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> XML tree tab is locked when xml is well formed but not valid
> ------------------------------------------------------------
>
> Key: JBIDE-5163
> URL: https://issues.jboss.org/browse/JBIDE-5163
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: common/jst/core
> Affects Versions: 3.1.0.M4
> Reporter: Denis Golovin
> Assignee: Viacheslav Kabanovich
> Fix For: LATER
>
>
> There is no reason to block tree tab when there are validation errors. SO editor should distinguish syntax and logical errors.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-521) Auto-maintain Local interface
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-521?page=com.atlassian.jira.plugin.... ]
Max Rydahl Andersen resolved JBIDE-521.
---------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Auto-maintain Local interface
> -----------------------------
>
> Key: JBIDE-521
> URL: https://issues.jboss.org/browse/JBIDE-521
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: seam2
> Reporter: Max Rydahl Andersen
> Assignee: Alexey Kazakov
> Fix For: LATER
>
>
> Consider this:
> @Stateless
> class CustomerBean implements Customer, Serializable, ... {
> public addOrder(Order o) {
> }
> private doStuff() {
> }
> }
> @Local
> interface Customer {
> }
> On save of CustomerBean autoadd public methods on Bean to the first @Local interface found in the implements part.
> Autoremove as an option.
> Use jmerge to control add/remove ?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-9265) Seam booking example - actionListener validation error
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-9265?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-9265.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Seam booking example - actionListener validation error
> ------------------------------------------------------
>
> Key: JBIDE-9265
> URL: https://issues.jboss.org/browse/JBIDE-9265
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: upstream
> Affects Versions: 3.3.0.M2
> Reporter: Libor Zoubek
> Assignee: Alexey Kazakov
> Fix For: LATER
>
>
> I am not sure if this error should be fixed in example or it is tooling issue.
> {noformat}
> Method must have signature "void method(ActionEvent)" but has signature "void method()" template.xhtml /seam-booking/src/main/webapp/WEB-INF/layout Facelet Validator
> {noformat}
> But I suspect tooling, error appears on this line:
> {noformat}
> <h:commandLink action="pretty:home"
> actionListener="#{facesContext.externalContext.invalidateSession}"
> value="#{bundles.messages.template_linkReset}"/>
> {noformat}
> But if I change actionListener to contain "#{bookingAgent.bookHotel}" (method with signature void bookHotel()) than, this line is not marked as error.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-812) Adding JSF suport: multiple wb-resources
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-812?page=com.atlassian.jira.plugin.... ]
Max Rydahl Andersen resolved JBIDE-812.
---------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Adding JSF suport: multiple wb-resources
> ----------------------------------------
>
> Key: JBIDE-812
> URL: https://issues.jboss.org/browse/JBIDE-812
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Affects Versions: 2.0.0.Beta3
> Reporter: Petr Lindovsky
> Assignee: Viacheslav Kabanovich
> Fix For: LATER
>
> Attachments: screenshot.jpg, toy_firstjsf.zip, toy_firstjsf_redhat.zip
>
>
> We have a Web project whose directory structure is enforced by our internal build system. To make it work with Europa, the .settings\org.jboss.tools.jst.web.xml file has two wb-resource elements. My problem is that when adding RedHat JSF support to this project using the wizard, the resulting project seems to ignore the second wb-resource directory.
> To reproduce this, I created a helloworld-style project based on http://www.horstmann.com/corejsf/ (see attachment). With Europa, this works OK, that is, the project is correctly exported with Export... > WAR file and correctly run with Run As > Run on Server. But I'm not sure how to make this work with RedHat JSF support, that is how to tell it that ui/resources is a second WebContent directory.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-8606) Reverse Engineering FK-Detection in parent table
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8606?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-8606.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Reverse Engineering FK-Detection in parent table
> ------------------------------------------------
>
> Key: JBIDE-8606
> URL: https://issues.jboss.org/browse/JBIDE-8606
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: hibernate
> Affects Versions: LATER
> Environment: winxp32 vista64 postgresql8.3
> Reporter: Peter Rader
> Fix For: 3.3.x
>
> Original Estimate: 5 hours
> Remaining Estimate: 5 hours
>
> Postgresql does allow to inherit a table from another table.
> But the RevEng does not detect Foregin-keys from parent table.
> Example:
> CREATE TABLE changed (
> created_from_user_id INTEGER NOT NULL,
> CONSTRAINT "created_user" FOREIGN KEY ("created_from_user_id") REFERENCES user("user_id")
> )
> CREATE TABLE guestbook (
> caption TEXT,
> ) INHERITS (changed)
> insert into guestbook (1,'hi')
> RevEng will create
> public int getCreatedFromUserId()
> instead of
> public User getCreatedFromUser()
> what i expected to become.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-6020) Add interactive debugging to BPEL editor
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-6020?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-6020.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Add interactive debugging to BPEL editor
> ----------------------------------------
>
> Key: JBIDE-6020
> URL: https://issues.jboss.org/browse/JBIDE-6020
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: bpel, bpm
> Reporter: Robert (Bob) Brodt
> Assignee: Robert (Bob) Brodt
> Fix For: LATER
>
> Original Estimate: 0 minutes
> Remaining Estimate: 0 minutes
>
> At the least I would like to be able to set breakpoints and inspect variables at runtime; of course a full-featured interactive debugger, which allows single-stepping, changing variables, watchpoints, etc. would be nice to have.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-7808) Should ship with demos, cheat sheets and examples on using Infinispan
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-7808?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-7808.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Should ship with demos, cheat sheets and examples on using Infinispan
> ---------------------------------------------------------------------
>
> Key: JBIDE-7808
> URL: https://issues.jboss.org/browse/JBIDE-7808
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: infinispan
> Reporter: Manik Surtani
> Assignee: Max Rydahl Andersen
> Labels: cheatsheet, demo, examples, infinispan
> Fix For: 3.3.x
>
>
> This could be repackaged versions of the demos that ship with Infinispan anyway. Further tutorials are available on Infinispan's wiki, along with a DZone RefCard which could be used as information sources for this feature.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (JBIDE-6358) Adding inner class as Fact to guided Rule generates incorrect BRL source
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-6358?page=com.atlassian.jira.plugin... ]
Max Rydahl Andersen resolved JBIDE-6358.
----------------------------------------
Resolution: Out of Date
Thank you for reporting this issue but this issue have been resolved as out-of-date since it has not had any updates for the last 2+ years (730 days).
If you believe this issue is still relevant and important then please reopen the issue or create a new one mentioning/linking this jira for background information.
Thank you!
> Adding inner class as Fact to guided Rule generates incorrect BRL source
> ------------------------------------------------------------------------
>
> Key: JBIDE-6358
> URL: https://issues.jboss.org/browse/JBIDE-6358
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: drools
> Affects Versions: 3.1.1
> Environment: Linux 32bit
> JBDS 3.0.1.v201005241821R-H78-GA
> JDK Sun 1.6
> Reporter: Vlado Pakan
> Priority: Minor
> Fix For: LATER
>
>
> When inner class is used as Fact for guided rule it generates incorrect .brl file with error "BuildError: Unable to resolve ObjectType '<class>$<innerclass>'"
> .brl source looks something like this:
> <rule>
> <name>guided</name>
> <modelVersion>1.0</modelVersion>
> <attributes/>
> <metadataList/>
> <lhs>
> <fact>
> <factType><class>$<innerclass></factType>
> </fact>
> </lhs>
> <rhs/>
> </rule>
> When .brl file is modified and '$" is replaced with '.' i.e "<factType><class>$<innerclass></factType>" is replaced with "<factType><class>.<innerclass></factType>" error is fixed. .brl file is displayed without errors.
> Steps to reproduce:
> 1. create new Drools Project
> 2. create new guided rule
> 3. add "import com.sample.DroolsTest.Message;" line to drools.package file
> 4. open new guided rule file add new when condition and select "DroolsTest$Message" as Fact type
> 5. save guided rule file and error will appear in Problems view
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months