[JBoss JIRA] (ERT-741) [WAYLAND] [HiDPI] Some icons scaled incorrect [EBZ#507020]
by Friendly Jira Robot (Jira)
Friendly Jira Robot created ERT-741:
---------------------------------------
Summary: [WAYLAND] [HiDPI] Some icons scaled incorrect [EBZ#507020]
Key: ERT-741
URL: https://issues.jboss.org/browse/ERT-741
Project: Eclipse Release Train
Issue Type: Task
Components: Platform
Reporter: Friendly Jira Robot
Testing Eclipse 4.6.1 with Wayland on Fedora 25 on a Macbook with retina display.
When I start up eclipse on the retina display the icons in menues, and the header of the editor, header of the navigation sidebar and the icons in the navigation sidebar are scaled to about double the expected size. However, the icons in the toolbar is scaled correctly.
Then when I attach a secondary screen with a regular resolution and move eclipse to that screen. It seems that ALL the icons, including the toolbar, gets scaled to double the expected size.
Under X everything seems to be scaled as I expect.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months
[JBoss JIRA] (JBIDE-26694) Server adapter: should be able to freely set a war name
by André Dietisheim (Jira)
[ https://issues.jboss.org/browse/JBIDE-26694?page=com.atlassian.jira.plugi... ]
André Dietisheim edited comment on JBIDE-26694 at 7/15/19 12:24 PM:
--------------------------------------------------------------------
Filed a PR in jbosstools-server to display deployed modules (not all available ones) by default: https://github.com/jbosstools/jbosstools-server/pull/632
was (Author: adietish):
Filed a PR in jbosstools-server to display deployed modules (not all available ones) by default: https://github.com/jbosstools/jbosstools-server/pull/631
> Server adapter: should be able to freely set a war name
> -------------------------------------------------------
>
> Key: JBIDE-26694
> URL: https://issues.jboss.org/browse/JBIDE-26694
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.12.0.AM1
> Reporter: André Dietisheim
> Assignee: André Dietisheim
> Priority: Major
> Labels: server_adapter
> Fix For: 4.13.0.AM1
>
> Attachments: console-output-1.png, console-output-2.png, deployment-page-edit-war-name.png, server-adapter-configuration.png, switch-location.png
>
>
> For the server adapters in tools/as we have UI that allows a user to set the name of the deployment archive. We're missing this feature for the OpenShift server adapters currently. We're asked to add it.
> Steps:
> # EXEC: create a new app by using the *jboss-webserver31-tomcat8-openshift:1.2* builder image
> # ASSERT: *websocket-chat* application is imported into your workspace
> # ASSERT: server adapter *jboss-webserver31-tomcat* is created
> # ASSERT: In OpenShift explorer, below the service jboss-webserver31-tomcat*, you have the running pod (build is finished, pod running)
> # EXEC: start the server adapter
> # ASSERT: RSync is executed and the output is visible in the "Console"
> Result:
> If you look closely at the output you see that the project is synced to the pod in a folder called *websocket-chat.jar*
> !console-output-1.png!
> Expected result:
> I should be able to set the output folder to anything I want. Ex. we have a customer that wants the application war to be synced up into a folder *ROOT* (without the extension *.war*).
> Currently, to achieve this I have to do the following:
> # EXEC: create the following xml snippet (notice the *outputName* property for the module)
> and make sure it reads as follows:
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <deployment>
> <local>
> <module id="org.eclipse.jst.jee.server:websocket-chat">
> <property key="tempLocation" value="" />
> <property key="location" value="" />
> <property key="outputName" value="ROOT" />
> </module>
> </local>
> </deployment>
> {code}
> # EXEC: html-encode, join it into a single line and copy it (into the clipboard)
> # EXEC: open the properties for the server adapter and hit "Switch Location"
> !switch-location.png!
> # ASSERT: in my workspace, a new project *Servers* is created. It contains the configuration for my server adapter.
> !server-adapter-configuration.png!
> # EXEC: open the file with the *XML Editor*
> # EXEC: in your *XML Editor*: go to the end of the line *<server auto-publish-setting="2"* and insert your html-encoded xml as a value to the attribute *org.jboss.ide.eclipse.as.core.util.deploymentPreferenceKey="*
> {code}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <server auto-publish-setting="2" auto-publish-time="2" hostname="jboss-webserver31-tomcat-test.192.168.64.76.nip.io" id="test@jboss-webserver31-tomcat" id-set="true" name="jboss-webserver31-tomcat (Service) at OpenShift 3 (192.168.64.76)" org.jboss.ide.eclipse.as.core.server.IGNORE_LAUNCH_COMMANDS="true" org.jboss.ide.eclipse.as.core.server.deployDirectoryType="custom" org.jboss.ide.eclipse.as.core.server.serverMode="openshift3" org.jboss.ide.eclipse.as.core.server.webPort="80" org.jboss.ide.eclipse.as.core.server.webPortAutoDetect="false" org.jboss.ide.eclipse.as.core.server.zipDeploymentsPreference="true" org.jboss.tools.openshift.Connection="https://developer@192.168.64.76:8443" org.jboss.tools.openshift.DeployProject="websocket-chat" org.jboss.tools.openshift.PodPath="/opt/webserver/webapps" org.jboss.tools.openshift.SERVER_START_ON_CREATION="false" org.jboss.tools.openshift.Service="test@jboss-webserver31-tomcat" org.jboss.tools.openshift.SourcePath="${workspace_loc:/websocket-chat}" port="80" runtime-id="test@jboss-webserver31-tomcat" server-type="org.jboss.tools.openshift.server.type" server-type-id="org.jboss.tools.openshift.server.type" start-timeout="450" stop-timeout="450" timestamp="2" org.jboss.ide.eclipse.as.core.util.deploymentPreferenceKey="<?xml version="1.0" encoding="UTF-8"?> <deployment> <local> <module id="org.eclipse.jst.jee.server:websocket-chat"> <property key="tempLocation" value="" /> <property key="location" value="" /> <property key="outputName" value="ROOT" /> </module> </local> </deployment>">
> <list key="modules" value0="websocket-chat::org.eclipse.jst.jee.server:websocket-chat::jst.web::3.0"/>
> </server>
> {code}
> # EXEC: Save the editor and restart the server
> Result:
> Syncing now happens into a folder *ROOT*
> !console-output-2.png!
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months
[JBoss JIRA] (JBIDE-26694) Server adapter: should be able to freely set a war name
by André Dietisheim (Jira)
[ https://issues.jboss.org/browse/JBIDE-26694?page=com.atlassian.jira.plugi... ]
André Dietisheim commented on JBIDE-26694:
------------------------------------------
Filed a PR in jbosstools-server to display deployed modules (not all available ones) by default: https://github.com/jbosstools/jbosstools-server/pull/631
> Server adapter: should be able to freely set a war name
> -------------------------------------------------------
>
> Key: JBIDE-26694
> URL: https://issues.jboss.org/browse/JBIDE-26694
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift
> Affects Versions: 4.12.0.AM1
> Reporter: André Dietisheim
> Assignee: André Dietisheim
> Priority: Major
> Labels: server_adapter
> Fix For: 4.13.0.AM1
>
> Attachments: console-output-1.png, console-output-2.png, deployment-page-edit-war-name.png, server-adapter-configuration.png, switch-location.png
>
>
> For the server adapters in tools/as we have UI that allows a user to set the name of the deployment archive. We're missing this feature for the OpenShift server adapters currently. We're asked to add it.
> Steps:
> # EXEC: create a new app by using the *jboss-webserver31-tomcat8-openshift:1.2* builder image
> # ASSERT: *websocket-chat* application is imported into your workspace
> # ASSERT: server adapter *jboss-webserver31-tomcat* is created
> # ASSERT: In OpenShift explorer, below the service jboss-webserver31-tomcat*, you have the running pod (build is finished, pod running)
> # EXEC: start the server adapter
> # ASSERT: RSync is executed and the output is visible in the "Console"
> Result:
> If you look closely at the output you see that the project is synced to the pod in a folder called *websocket-chat.jar*
> !console-output-1.png!
> Expected result:
> I should be able to set the output folder to anything I want. Ex. we have a customer that wants the application war to be synced up into a folder *ROOT* (without the extension *.war*).
> Currently, to achieve this I have to do the following:
> # EXEC: create the following xml snippet (notice the *outputName* property for the module)
> and make sure it reads as follows:
> {code}
> <?xml version="1.0" encoding="UTF-8"?>
> <deployment>
> <local>
> <module id="org.eclipse.jst.jee.server:websocket-chat">
> <property key="tempLocation" value="" />
> <property key="location" value="" />
> <property key="outputName" value="ROOT" />
> </module>
> </local>
> </deployment>
> {code}
> # EXEC: html-encode, join it into a single line and copy it (into the clipboard)
> # EXEC: open the properties for the server adapter and hit "Switch Location"
> !switch-location.png!
> # ASSERT: in my workspace, a new project *Servers* is created. It contains the configuration for my server adapter.
> !server-adapter-configuration.png!
> # EXEC: open the file with the *XML Editor*
> # EXEC: in your *XML Editor*: go to the end of the line *<server auto-publish-setting="2"* and insert your html-encoded xml as a value to the attribute *org.jboss.ide.eclipse.as.core.util.deploymentPreferenceKey="*
> {code}
> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
> <server auto-publish-setting="2" auto-publish-time="2" hostname="jboss-webserver31-tomcat-test.192.168.64.76.nip.io" id="test@jboss-webserver31-tomcat" id-set="true" name="jboss-webserver31-tomcat (Service) at OpenShift 3 (192.168.64.76)" org.jboss.ide.eclipse.as.core.server.IGNORE_LAUNCH_COMMANDS="true" org.jboss.ide.eclipse.as.core.server.deployDirectoryType="custom" org.jboss.ide.eclipse.as.core.server.serverMode="openshift3" org.jboss.ide.eclipse.as.core.server.webPort="80" org.jboss.ide.eclipse.as.core.server.webPortAutoDetect="false" org.jboss.ide.eclipse.as.core.server.zipDeploymentsPreference="true" org.jboss.tools.openshift.Connection="https://developer@192.168.64.76:8443" org.jboss.tools.openshift.DeployProject="websocket-chat" org.jboss.tools.openshift.PodPath="/opt/webserver/webapps" org.jboss.tools.openshift.SERVER_START_ON_CREATION="false" org.jboss.tools.openshift.Service="test@jboss-webserver31-tomcat" org.jboss.tools.openshift.SourcePath="${workspace_loc:/websocket-chat}" port="80" runtime-id="test@jboss-webserver31-tomcat" server-type="org.jboss.tools.openshift.server.type" server-type-id="org.jboss.tools.openshift.server.type" start-timeout="450" stop-timeout="450" timestamp="2" org.jboss.ide.eclipse.as.core.util.deploymentPreferenceKey="<?xml version="1.0" encoding="UTF-8"?> <deployment> <local> <module id="org.eclipse.jst.jee.server:websocket-chat"> <property key="tempLocation" value="" /> <property key="location" value="" /> <property key="outputName" value="ROOT" /> </module> </local> </deployment>">
> <list key="modules" value0="websocket-chat::org.eclipse.jst.jee.server:websocket-chat::jst.web::3.0"/>
> </server>
> {code}
> # EXEC: Save the editor and restart the server
> Result:
> Syncing now happens into a folder *ROOT*
> !console-output-2.png!
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months
[JBoss JIRA] (JBIDE-25069) Add User Access Control permissions for default browser used by central for Windows snapshots
by Zbyněk Červinka (Jira)
[ https://issues.jboss.org/browse/JBIDE-25069?page=com.atlassian.jira.plugi... ]
Zbyněk Červinka updated JBIDE-25069:
------------------------------------
Summary: Add User Access Control permissions for default browser used by central for Windows snapshots (was: Add User Access Control permissions for default browser used by central for Windwos snapshots)
> Add User Access Control permissions for default browser used by central for Windows snapshots
> ---------------------------------------------------------------------------------------------
>
> Key: JBIDE-25069
> URL: https://issues.jboss.org/browse/JBIDE-25069
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: central, integration-tests, maven
> Affects Versions: 4.5.1.Final
> Environment: Windows 7,8.1, 10
> Reporter: Vojtech Prusa
> Assignee: Zbyněk Červinka
> Priority: Major
> Fix For: 4.13.x
>
>
> Job is failing for Windows 7, 8.1 & 10 most likely because lack of User Access Control permissions for default browser used by central component.
> My suggestion is:
> * change privileges for default browser (edge?)
> * change default browser
> * in worst case exclude these tests for windows
> Now blocked by https://redhat.service-now.com/surl.do?n=PNT0065275
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months
[JBoss JIRA] (JBIDE-26741) WEB_INF/lib is not transmitted after full publishing
by nimo stephan (Jira)
[ https://issues.jboss.org/browse/JBIDE-26741?page=com.atlassian.jira.plugi... ]
nimo stephan updated JBIDE-26741:
---------------------------------
Description:
I am using
Eclipse IDE for Enterprise Java Developers.
Version: 2019-06 (4.12.0)
with actual Jboss Tools.
When publising war archives
to "Wildfly 17 Server" with *"Full Publish"* (or "Incremental Publish"),
the *WEB_INF/lib* folder is *not* transferred.
I guess, it s a bug..
was:
I am using
Eclipse IDE for Enterprise Java Developers.
Version: 2019-06 (4.12.0)
with actual Jboss Tools.
When publising war archives
to "Wildfly 17 Server" with *Full Publish*,
then the *WEB_INF/lib* folder is *not* transferred.
I guess, it s a bug..
> WEB_INF/lib is not transmitted after full publishing
> ----------------------------------------------------
>
> Key: JBIDE-26741
> URL: https://issues.jboss.org/browse/JBIDE-26741
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.12.0.Final
> Reporter: nimo stephan
> Priority: Major
>
> I am using
> Eclipse IDE for Enterprise Java Developers.
> Version: 2019-06 (4.12.0)
> with actual Jboss Tools.
>
> When publising war archives
> to "Wildfly 17 Server" with *"Full Publish"* (or "Incremental Publish"),
> the *WEB_INF/lib* folder is *not* transferred.
> I guess, it s a bug..
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months
[JBoss JIRA] (JBIDE-26741) WEB_INF/lib is not transmitted after full publishing
by nimo stephan (Jira)
[ https://issues.jboss.org/browse/JBIDE-26741?page=com.atlassian.jira.plugi... ]
nimo stephan updated JBIDE-26741:
---------------------------------
Description:
I am using
Eclipse IDE for Enterprise Java Developers.
Version: 2019-06 (4.12.0)
with actual Jboss Tools.
When publising war archives
to "Wildfly 17 Server" with *Full Publish*,
then the *WEB_INF/lib* folder is *not* transferred.
I guess, it s a bug..
was:
I am using
Eclipse IDE for Enterprise Java Developers.
Version: 2019-06 (4.12.0)
with actual Jboss Tools.
When publising war archives
to Jboss Wildfly 17 Server with "Full Publish",
then the *WEB_INF/lib* folder is *not* transferred.
I guess, it s a bug..
> WEB_INF/lib is not transmitted after full publishing
> ----------------------------------------------------
>
> Key: JBIDE-26741
> URL: https://issues.jboss.org/browse/JBIDE-26741
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.12.0.Final
> Reporter: nimo stephan
> Priority: Major
>
> I am using
> Eclipse IDE for Enterprise Java Developers.
> Version: 2019-06 (4.12.0)
> with actual Jboss Tools.
>
> When publising war archives
> to "Wildfly 17 Server" with *Full Publish*,
> then the *WEB_INF/lib* folder is *not* transferred.
> I guess, it s a bug..
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
6 years, 8 months