[JBoss JIRA] (JBIDE-21962) See if we can use higher resolution for openshift/patternfly icons
by Fred Bricon (JIRA)
Fred Bricon created JBIDE-21962:
-----------------------------------
Summary: See if we can use higher resolution for openshift/patternfly icons
Key: JBIDE-21962
URL: https://issues.jboss.org/browse/JBIDE-21962
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 4.3.1.CR1
Reporter: Fred Bricon
Priority: Minor
This is a follow up on JBIDE-21911. Current patternfly 16px icons used for openshift tooling were scaled down via icomoon.io or manually, eg.:
- Route !https://raw.githubusercontent.com/jbosstools/jbosstools-openshift/master/plugins/org.jboss.tools.openshift.ui/icons/route.png!
- Service !https://raw.githubusercontent.com/jbosstools/jbosstools-openshift/master/plugins/org.jboss.tools.openshift.ui/icons/service.png!
Resolution seems suboptimal, would be nice to use nicer looking icons for the full openshift icons set.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years
[JBoss JIRA] (JBIDE-20998) Application wizard: Validation error description in Resource Labels page is cut off
by Viacheslav Kabanovich (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20998?page=com.atlassian.jira.plugi... ]
Viacheslav Kabanovich commented on JBIDE-20998:
-----------------------------------------------
Ok, let's return status cancel, as it is already done for project name in new project wizard.
[~fbricon], please take a look at pull request https://github.com/jbosstools/jbosstools-openshift/pull/1055
> Application wizard: Validation error description in Resource Labels page is cut off
> -----------------------------------------------------------------------------------
>
> Key: JBIDE-20998
> URL: https://issues.jboss.org/browse/JBIDE-20998
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.3.0.Final
> Reporter: Marián Labuda
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Labels: application_wizard, openshift_v3
> Fix For: 4.3.1.CR1
>
> Attachments: resource_label_complete.png, resource_label_incomplete.png
>
>
> In Resource Label dialog there is a validation error description about correct format of a label. But the validation error description is cut off. On first sight it does not look like like cut off, but after resizing a shell more text is showed. See following image of cut off description:
> !resource_label_incomplete.png!
> And following image contains full description after resizing to "long enough" width:
> !resource_label_complete.png!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years
[JBoss JIRA] (JBIDE-21453) Server Adapter: use rsync flag instead of local filtered-copy
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21453?page=com.atlassian.jira.plugi... ]
Xavier Coulon edited comment on JBIDE-21453 at 3/23/16 1:55 PM:
----------------------------------------------------------------
so, after a bit of investigation, the {{oc rsync}} command only supports a single {{--exclude=PATTERN}} argument. But it also supports the {{--no-perms}} flag, which according to the CLI help, can be set to {{true}} to avoid transfering permissions.
As discussed with [~adietish], the solution to fix this issue would be:
- stop doing the pod->local rsync. It was initially used to retrieve all files from the pod with their permissions and becomes useless now.
- run the 'oc rsync' command from local->pod using the {{--exclude='.git'}} flag to avoid pushing the changes in the {{.git}} folder (only), assuming this is the largest folder that does not need to be rsync'ed.
I also opened https://github.com/openshift/origin/issues/8223 to request support for the {{--exclude-from=FILE}} option in the command line, to be able to exclude multiple files/folders during the rsync (.svn, .git, etc)
was (Author: xcoulon):
so, after a bit of investigation, the {{oc rsync}} command only supports a single {{--exclude=PATTERN}} argument. But it also supports the {{--no-perms}} flag, which according to the CLI help, can be set to {{true}} to avoid transfering permissions.
As discussed with [~adietish], the solution to fix this issue would be:
- stop doing the pod->local rsync. It was initially used to retrieve all files from the pod with their permissions and becomes useless now.
- run the 'oc rsync' command from local->pod using the {{--exclude='.git'}} flag to avoid pushing the changes in the {{.git}} folder (only), assuming this is the largest folder that does not need to be rsync'ed.
> Server Adapter: use rsync flag instead of local filtered-copy
> -------------------------------------------------------------
>
> Key: JBIDE-21453
> URL: https://issues.jboss.org/browse/JBIDE-21453
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.1.Beta1
> Reporter: Andre Dietisheim
> Assignee: Xavier Coulon
> Fix For: 4.3.1.CR1, 4.4.0.Alpha1
>
>
> With https://github.com/openshift/origin/issues/6143 *oc rsync* now allows specific white-listed flag to be used.
> Our current implementation works around this by doing a local copy where excluded bits are filtered (not copied). We need to use exclusion flags if available.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years
[JBoss JIRA] (JBIDE-21453) Server Adapter: use rsync flag instead of local filtered-copy
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21453?page=com.atlassian.jira.plugi... ]
Xavier Coulon commented on JBIDE-21453:
---------------------------------------
so, after a bit of investigation, the {{oc rsync}} command only supports a single {{--exclude=PATTERN}} argument. But it also supports the {{--no-perms}} flag, which according to the CLI help, can be set to {{true}} to avoid transfering permissions.
As discussed with [~adietish], the solution to fix this issue would be:
- stop doing the pod->local rsync. It was initially used to retrieve all files from the pod with their permissions and becomes useless now.
- run the 'oc rsync' command from local->pod using the {{--exclude='.git'}} flag to avoid pushing the changes in the {{.git}} folder (only), assuming this is the largest folder that does not need to be rsync'ed.
> Server Adapter: use rsync flag instead of local filtered-copy
> -------------------------------------------------------------
>
> Key: JBIDE-21453
> URL: https://issues.jboss.org/browse/JBIDE-21453
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.1.Beta1
> Reporter: Andre Dietisheim
> Assignee: Xavier Coulon
> Fix For: 4.3.1.CR1, 4.4.0.Alpha1
>
>
> With https://github.com/openshift/origin/issues/6143 *oc rsync* now allows specific white-listed flag to be used.
> Our current implementation works around this by doing a local copy where excluded bits are filtered (not copied). We need to use exclusion flags if available.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years
[JBoss JIRA] (JBDS-3607) Update Suite installer UI/names
by Josephine Qian (JIRA)
[ https://issues.jboss.org/browse/JBDS-3607?page=com.atlassian.jira.plugin.... ]
Josephine Qian edited comment on JBDS-3607 at 3/23/16 1:19 PM:
---------------------------------------------------------------
The success/getting started page is added. More work needs to be done around branding and wording. The attachment has been updated.
was (Author: joqian):
The success/getting started page is added. More work needs to be done around branding and wording.
> Update Suite installer UI/names
> -------------------------------
>
> Key: JBDS-3607
> URL: https://issues.jboss.org/browse/JBDS-3607
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Task
> Components: installer
> Reporter: Max Rydahl Andersen
> Assignee: Joshua Wilson
> Priority: Blocker
> Labels: havoc, ui
> Fix For: 9.1.0.CR1
>
> Attachments: installer flow.pdf, installer_version.png
>
>
> Suite Installer should use Red Hat Developer style. more details to follow.
> https://patternfly.atlassian.net/browse/RHUAP-26
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years
[JBoss JIRA] (JBTIS-610) Cannot build JBDS-IS due to error with downloading ant-contrib
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBTIS-610?page=com.atlassian.jira.plugin.... ]
Paul Leacu commented on JBTIS-610:
----------------------------------
[~apodhrad] - can we just go with this fix?
> Cannot build JBDS-IS due to error with downloading ant-contrib
> --------------------------------------------------------------
>
> Key: JBTIS-610
> URL: https://issues.jboss.org/browse/JBTIS-610
> Project: JBoss Tools Integration Stack
> Issue Type: Bug
> Components: distribution
> Affects Versions: 9.0.0.Beta1
> Reporter: Andrej Podhradsky
>
> I'm not able to build JBDS-IS from the source. I'm getting the following error
> {code}
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (install) on project generation: An Ant BuildException has occured: The following error occurred while executing this line:
> [ERROR] /home/apodhrad/Projects/jbosstools-integration-stack/scripts/build.xml:47: The following error occurred while executing this line:
> [ERROR] /home/apodhrad/Projects/jbosstools-integration-stack/scripts/build.xml:100: Redirection detected from https to http. Protocol switch unsafe, not allowed.
> [ERROR] around Ant part ...<ant antfile="../../../scripts/build.xml" dir="." target="basic.build">... @ 4:74 in /home/apodhrad/Projects/jbosstools-integration-stack/jbosstools/discovery/generation/target/antrun/build-main.xml
> {code}
> The problem seems to be with downloading http://sourceforge.net/projects/ant-contrib/files/ant-contrib/ant-contrib...
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years