[JBoss JIRA] (JBDS-3492) JBDS app icon and installer icon are not the same
by Nick Boldt (JIRA)
Nick Boldt created JBDS-3492:
--------------------------------
Summary: JBDS app icon and installer icon are not the same
Key: JBDS-3492
URL: https://issues.jboss.org/browse/JBDS-3492
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: installer
Affects Versions: 9.0.0.Beta2
Reporter: Nick Boldt
Assignee: Nick Boldt
Attachments: jbds-installer-vs-installer-jbds-icon.png
The icon used for the installer is a more-or-less solid red ball, but the icon for the JBDS app is a red ball with while circles through it.
Unless this is a quirk of the way that izpack compresses/displays the icon, we may be using a different one for the installer than the app.
This may also be an intentional design choice, so that if you're running JBDS and an installer you can tell which is which visually.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBDS-3492) JBDS app icon and installer icon are not the same
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3492?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-3492:
-----------------------------
Attachment: jbds-installer-vs-installer-jbds-icon.png
> JBDS app icon and installer icon are not the same
> -------------------------------------------------
>
> Key: JBDS-3492
> URL: https://issues.jboss.org/browse/JBDS-3492
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Components: installer
> Affects Versions: 9.0.0.Beta2
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Attachments: jbds-installer-vs-installer-jbds-icon.png
>
>
> The icon used for the installer is a more-or-less solid red ball, but the icon for the JBDS app is a red ball with while circles through it.
> Unless this is a quirk of the way that izpack compresses/displays the icon, we may be using a different one for the installer than the app.
> This may also be an intentional design choice, so that if you're running JBDS and an installer you can tell which is which visually.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20388) Renaming an FTL file doesn't update the path of the open editor
by Daniel Dekany (JIRA)
Daniel Dekany created JBIDE-20388:
-------------------------------------
Summary: Renaming an FTL file doesn't update the path of the open editor
Key: JBIDE-20388
URL: https://issues.jboss.org/browse/JBIDE-20388
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: freemarker
Reporter: Daniel Dekany
Create a new file with name {{t1.ftl}}. Open it (with the FreeMarker IDE editor). In the Project Explorer's tree rename it to {{t2.ftl}}. Open {{t2.ftl}} too. Now you will have two open editors, both editing the same FTL file.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20387) Use column number when navigating to errors, and more
by Daniel Dekany (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20387?page=com.atlassian.jira.plugi... ]
Daniel Dekany updated JBIDE-20387:
----------------------------------
Description:
The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
* {{getColumnNumber()}}, {{getEndColumnNumber()}}
* {{getEndLineNumber()}}
* {{getEditorMessage()}}: This should be used instead of {{getMessage()}} (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that)).
was:
The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
* {{getColumnNumber()}}, {{getEndColumnNumber()}}
* {{getEndLineNumber()}}
* {{getEditorMessage()}}: This should be used instead of `getMessage()` (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that)).
> Use column number when navigating to errors, and more
> -----------------------------------------------------
>
> Key: JBIDE-20387
> URL: https://issues.jboss.org/browse/JBIDE-20387
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: freemarker
> Reporter: Daniel Dekany
>
> The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
> * {{getColumnNumber()}}, {{getEndColumnNumber()}}
> * {{getEndLineNumber()}}
> * {{getEditorMessage()}}: This should be used instead of {{getMessage()}} (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that)).
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20387) Use column number when navigating to errors, and more
by Daniel Dekany (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20387?page=com.atlassian.jira.plugi... ]
Daniel Dekany updated JBIDE-20387:
----------------------------------
Description:
The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
* {{getColumnNumber()}}, {{getEndColumnNumber()}}
* {{getEndLineNumber()}}
* {{getEditorMessage()}}: This should be used instead of {{getMessage()}} (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that).
was:
The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
* {{getColumnNumber()}}, {{getEndColumnNumber()}}
* {{getEndLineNumber()}}
* {{getEditorMessage()}}: This should be used instead of {{getMessage()}} (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that)).
> Use column number when navigating to errors, and more
> -----------------------------------------------------
>
> Key: JBIDE-20387
> URL: https://issues.jboss.org/browse/JBIDE-20387
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: freemarker
> Reporter: Daniel Dekany
>
> The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
> * {{getColumnNumber()}}, {{getEndColumnNumber()}}
> * {{getEndLineNumber()}}
> * {{getEditorMessage()}}: This should be used instead of {{getMessage()}} (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that).
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20387) Use column number when navigating to errors, and more
by Daniel Dekany (JIRA)
Daniel Dekany created JBIDE-20387:
-------------------------------------
Summary: Use column number when navigating to errors, and more
Key: JBIDE-20387
URL: https://issues.jboss.org/browse/JBIDE-20387
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: freemarker
Reporter: Daniel Dekany
The plugin doesn't utilize some tooling-centric information available in {{freemarker.core.ParseException}}, most importantly, the column number that Eclipse could utilize to jump at the error start inside the line. The information that's not used is (see {{plugins/org.jboss.ide.eclipse.freemarker/src/org/jboss/ide/eclipse/freemarker/editor/Editor.java}}):
* {{getColumnNumber()}}, {{getEndColumnNumber()}}
* {{getEndLineNumber()}}
* {{getEditorMessage()}}: This should be used instead of `getMessage()` (though apparently the output of `getMessage()` is identical, it's actually because FM detects that it was called from JBoss Tools and then creates a message customized for that)).
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months