[JBoss JIRA] (JBIDE-15362) Page is just simply rendered in VPE editor
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15362?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15362:
----------------------------------
Labels: (was: new_and_noteworthy)
> Page is just simply rendered in VPE editor
> ------------------------------------------
>
> Key: JBIDE-15362
> URL: https://issues.jboss.org/browse/JBIDE-15362
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: visual-page-editor-core
> Affects Versions: 4.1.0.Final
> Reporter: Jiri Peterka
> Assignee: Yahor Radtsevich
> Fix For: 4.1.1.Alpha2, 4.2.0.Alpha1
>
> Attachments: login-real-page.png, login-vpe-page.png, screenshot-PR161.png, standard-vpe-page.png
>
>
> Not sure if this is not supported or if it's a bug. Thing is that page is not rendered with style but only very simple. See real output and output in VPE editor.
--
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, 6 months
[JBoss JIRA] (JBIDE-15589) fix compilation error in openshift
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15589?page=com.atlassian.jira.plugi... ]
Andre Dietisheim closed JBIDE-15589.
------------------------------------
nothing for QE to verify here.
> fix compilation error in openshift
> ----------------------------------
>
> Key: JBIDE-15589
> URL: https://issues.jboss.org/browse/JBIDE-15589
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.2.0.Alpha1
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.2.0.Alpha1
>
>
> Jenkins is red for openshift-master since 3 days:
> {code}
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 47.448s
> [INFO] Finished at: Mon Sep 30 14:21:53 CEST 2013
> [INFO] Final Memory: 62M/747M
> [INFO] ------------------------------------------------------------------------
> [ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.18.1:compile (default-compile) on project org.jboss.tools.openshift.express.ui: Compilation failure: Compilation failure:
> [ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[60,0]
> [ERROR] if ((result == CheckboxMessageDialog.INCLUDE_APPS) || (result == MessageDialog.OK)) {
> [ERROR] ^^^^^^^^^^^^
> [ERROR] INCLUDE_APPS cannot be resolved or is not a field
> [ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[63,0]
> [ERROR] final boolean includeApps = ((result & CheckboxMessageDialog.INCLUDE_APPS) > 0);
> [ERROR] ^^^^^^^^^^^^
> [ERROR] INCLUDE_APPS cannot be resolved or is not a field
> [ERROR] 2 problems (2 errors)
> [ERROR] -> [Help 1]
> {code}
> The compilation error is caused by a commit in jbosstools-base which renamed INCLUDE_APPS to CHECKBOX_SELECTED.
> {code: Alexey Karsakov on the 2013-9-27 [JBIDE-15348]}
> +++ b/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/dialog/CheckboxMessageDialog.java
> @@ -30,10 +30,10 @@
> */
> public class CheckboxMessageDialog extends MessageDialog {
> - public static final int INCLUDE_APPS = 2;
> + public static final int CHECKBOX_SELECTED = 2;
> {code}
--
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, 6 months
[JBoss JIRA] (JBIDE-15589) fix compilation error in openshift
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-15589:
----------------------------------------
Summary: fix compilation error in openshift
Key: JBIDE-15589
URL: https://issues.jboss.org/browse/JBIDE-15589
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Affects Versions: 4.2.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.2.0.Alpha1
Jenkins is red for openshift-master since 3 days:
{code}
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 47.448s
[INFO] Finished at: Mon Sep 30 14:21:53 CEST 2013
[INFO] Final Memory: 62M/747M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.18.1:compile (default-compile) on project org.jboss.tools.openshift.express.ui: Compilation failure: Compilation failure:
[ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[60,0]
[ERROR] if ((result == CheckboxMessageDialog.INCLUDE_APPS) || (result == MessageDialog.OK)) {
[ERROR] ^^^^^^^^^^^^
[ERROR] INCLUDE_APPS cannot be resolved or is not a field
[ERROR] /home/adietish/jboss-workspaces/jbosstools-github/jbosstools-openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/DeleteDomainAction.java:[63,0]
[ERROR] final boolean includeApps = ((result & CheckboxMessageDialog.INCLUDE_APPS) > 0);
[ERROR] ^^^^^^^^^^^^
[ERROR] INCLUDE_APPS cannot be resolved or is not a field
[ERROR] 2 problems (2 errors)
[ERROR] -> [Help 1]
{code}
The compilation error is caused by a commit in jbosstools-base which renamed INCLUDE_APPS to CHECKBOX_SELECTED.
{code: Alexey Karsakov on the 2013-9-27 [JBIDE-15348]}
+++ b/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/dialog/CheckboxMessageDialog.java
@@ -30,10 +30,10 @@
*/
public class CheckboxMessageDialog extends MessageDialog {
- public static final int INCLUDE_APPS = 2;
+ public static final int CHECKBOX_SELECTED = 2;
{code}
--
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, 6 months