[JBoss JIRA] Created: (JBIDE-4936) Support for static navigation.
by Yura Zhishko (JIRA)
Support for static navigation.
------------------------------
Key: JBIDE-4936
URL: https://jira.jboss.org/jira/browse/JBIDE-4936
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Visual Page Editor core
Affects Versions: 3.1.0.M4
Reporter: Yura Zhishko
Assignee: Maxim Areshkau
As a new Feature for VPE I propose to make a support for static navigation. A simple example can be founded in JSF 1.2 Kick Start project.
1) Open inputUserName.jsp
2) One click on button Say Hello on the visual pane
Static navigation assumes, when we make a click on this button, hello.jsp page should be opened with JBT editor, as the navigation-rule describes this in faces-config.xml:
<navigation-rule>
<from-view-id>/pages/inputUserName.jsp</from-view-id>
<navigation-case>
<from-outcome>hello</from-outcome>
<to-view-id>/pages/hello.jsp</to-view-id>
</navigation-case>
</navigation-rule>
The utility of this feature is that the user can see the result of clicking on this button is some cases (the page that will be opened, when he(she) clicks on button). Plus, there is faster navigation.
--
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
15 years
[JBoss JIRA] Created: (JBIDE-3427) Undo (Ctrl+Z) unworked correctly for comments
by Yura Zhishko (JIRA)
Undo (Ctrl+Z) unworked correctly for comments
---------------------------------------------
Key: JBIDE-3427
URL: https://jira.jboss.org/jira/browse/JBIDE-3427
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml source editing
Affects Versions: 3.0.0.cr1
Reporter: Yura Zhishko
Assignee: Alexey Kazakov
1) Choose any tag or text
2) Choose Source -> Toggle Comment (or press Ctrl+Shift+C)
ASSERT: Line is commented
3) Make Undo (Ctrl+Z)
ASSERT: This action delete only the end of tag (-->)
4) Make Undo (Ctrl+Z) again
ASSERT: Delete start tag (<!--)
I think that the line should be uncommented from the first time of using Ctrl+Z
Another test case:
1) Select more than one line
2) Choose Source -> Add Block Comment
ASSERT: Block is commented
3) Choose Source -> Add Block Comment again
ASSERT: Nothing happens
4) Press Ctrl+Z (Undo)
ASSERT: New <!-- --> appeared around existed comments
--
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
15 years