[JBoss JIRA] (JBIDE-21935) Import application wizard: "Reuse" flow in clone wizard is ambiguous
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21935?page=com.atlassian.jira.plugi... ]
Andre Dietisheim resolved JBIDE-21935.
--------------------------------------
Resolution: Done
The improvement described in this jira were done in the patch for JBIDE-24048
> Import application wizard: "Reuse" flow in clone wizard is ambiguous
> --------------------------------------------------------------------
>
> Key: JBIDE-21935
> URL: https://issues.jboss.org/browse/JBIDE-21935
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.1.CR1
> Reporter: Max Rydahl Andersen
> Assignee: Rob Stryker
> Labels: import_wizard, openshift_v3
> Fix For: 4.5.0.AM1
>
>
> continuation of JBIDE-14828:
> with the intended behavior explained then lets make that visible to the user:
> a) don't hide/show controls in a wizard, enable/disable them.
> b) The "Reuse" is ambiguous, i.e. I read it as the clone will happen into this folder, not that it will do exactly the opposite of what the wizard says (not clone). I suggest something like "Do not clone - reuse existing folder".
> c) if not already there, add a check that what is inside the folder is actually a clone of what we are trying to clone.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-21935) Import application wizard: "Reuse" flow in clone wizard is ambiguous
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21935?page=com.atlassian.jira.plugi... ]
Andre Dietisheim reassigned JBIDE-21935:
----------------------------------------
Assignee: Andre Dietisheim (was: Rob Stryker)
> Import application wizard: "Reuse" flow in clone wizard is ambiguous
> --------------------------------------------------------------------
>
> Key: JBIDE-21935
> URL: https://issues.jboss.org/browse/JBIDE-21935
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.1.CR1
> Reporter: Max Rydahl Andersen
> Assignee: Andre Dietisheim
> Labels: import_wizard, openshift_v3
> Fix For: 4.4.4.AM2, 4.5.0.AM1
>
>
> continuation of JBIDE-14828:
> with the intended behavior explained then lets make that visible to the user:
> a) don't hide/show controls in a wizard, enable/disable them.
> b) The "Reuse" is ambiguous, i.e. I read it as the clone will happen into this folder, not that it will do exactly the opposite of what the wizard says (not clone). I suggest something like "Do not clone - reuse existing folder".
> c) if not already there, add a check that what is inside the folder is actually a clone of what we are trying to clone.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-21935) Import application wizard: "Reuse" flow in clone wizard is ambiguous
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21935?page=com.atlassian.jira.plugi... ]
Andre Dietisheim updated JBIDE-21935:
-------------------------------------
Fix Version/s: 4.4.4.AM2
> Import application wizard: "Reuse" flow in clone wizard is ambiguous
> --------------------------------------------------------------------
>
> Key: JBIDE-21935
> URL: https://issues.jboss.org/browse/JBIDE-21935
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.1.CR1
> Reporter: Max Rydahl Andersen
> Assignee: Andre Dietisheim
> Labels: import_wizard, openshift_v3
> Fix For: 4.4.4.AM2, 4.5.0.AM1
>
>
> continuation of JBIDE-14828:
> with the intended behavior explained then lets make that visible to the user:
> a) don't hide/show controls in a wizard, enable/disable them.
> b) The "Reuse" is ambiguous, i.e. I read it as the clone will happen into this folder, not that it will do exactly the opposite of what the wizard says (not clone). I suggest something like "Do not clone - reuse existing folder".
> c) if not already there, add a check that what is inside the folder is actually a clone of what we are trying to clone.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-20028) Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20028?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-20028 at 3/23/17 5:22 AM:
-------------------------------------------------------------------
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though).
* The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing:
** https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
** https://wiki.eclipse.org/Platform_UI/Notifications
* Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup. Eclipse Aeri is extending it in NotificationPopup
was (Author: adietish):
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though).
The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing:
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
* https://wiki.eclipse.org/Platform_UI/Notifications
Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup.
> Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
> ----------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20028
> URL: https://issues.jboss.org/browse/JBIDE-20028
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.0.Beta1
> Reporter: Andre Dietisheim
> Labels: openshift_v3
> Fix For: 4.5.0.AM1
>
> Attachments: modal-dialog-blocks-me.png
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-20028) Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20028?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-20028 at 3/23/17 5:23 AM:
-------------------------------------------------------------------
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though).
* The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
* non-modal notifications are lacking in the platform, efforts are ongoing:
** https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
** https://wiki.eclipse.org/Platform_UI/Notifications
* Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup. Eclipse Aeri is extending it in NotificationPopup
was (Author: adietish):
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though).
* The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing:
** https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
** https://wiki.eclipse.org/Platform_UI/Notifications
* Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup. Eclipse Aeri is extending it in NotificationPopup
> Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
> ----------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20028
> URL: https://issues.jboss.org/browse/JBIDE-20028
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.0.Beta1
> Reporter: Andre Dietisheim
> Labels: openshift_v3
> Fix For: 4.5.0.AM1
>
> Attachments: modal-dialog-blocks-me.png
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-20028) Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20028?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-20028 at 3/23/17 5:20 AM:
-------------------------------------------------------------------
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though).
The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing:
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
* https://wiki.eclipse.org/Platform_UI/Notifications
Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup.
was (Author: adietish):
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though). The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing: https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup.
> Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
> ----------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20028
> URL: https://issues.jboss.org/browse/JBIDE-20028
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.0.Beta1
> Reporter: Andre Dietisheim
> Labels: openshift_v3
> Fix For: 4.5.0.AM1
>
> Attachments: modal-dialog-blocks-me.png
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBIDE-20028) Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20028?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-20028:
------------------------------------------
If we close the wizard before we launch the import job, it's not obvious to the user that the import is being executed (especially if he at some point decided to put all progress dialogs to the background). He only gets that if he's is closely watching to the Eclipse status bar (where the job displays it's progress) or the progress view (which might not be opened though). The only standard means to improve this slightly is to keep the job in the press view once it's finished and possibly have it a link which unveils further informations.
The code required for is described here: https://www.eclipse.org/articles/Article-Concurrency/jobs-api.html
{code}
Job job = new Job("Online Reservation") {
protected IStatus run(IProgressMonitor monitor) {
// Make a reservation
// ...
setProperty(IProgressConstants.ICON_PROPERTY, getImage());
if (isModal(this)) {
// The progress dialog is still open so
// just open the message
showResults();
} else {
setProperty(IProgressConstants.KEEP_PROPERTY, Boolean.TRUE);
setProperty(IProgressConstants.ACTION_PROPERTY,
getReservationCompletedAction());
}
return Status.OK_STATUS;
}
};
job.setUser(true);
job.schedule();
{code}
non-modal notifications are lacking in the platform, efforts are ongoing: https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823
Myling commons provide a base class that may be used to provide these: AbstractWorkbenchNotificationPopup.
> Import wizard: cloning and import operation is executed in modal (wizard) dialog, blocks me from doing anything.
> ----------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-20028
> URL: https://issues.jboss.org/browse/JBIDE-20028
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.0.Beta1
> Reporter: Andre Dietisheim
> Labels: openshift_v3
> Fix For: 4.5.0.AM1
>
> Attachments: modal-dialog-blocks-me.png
>
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBDS-4321) Unable to start Devstudio without -clean after install of any stuff from RH Central
by Lukáš Valach (JIRA)
Lukáš Valach created JBDS-4321:
----------------------------------
Summary: Unable to start Devstudio without -clean after install of any stuff from RH Central
Key: JBDS-4321
URL: https://issues.jboss.org/browse/JBDS-4321
Project: Red Hat JBoss Developer Studio (devstudio)
Issue Type: Bug
Components: rpm
Affects Versions: 10.4.0.AM2
Environment: RHEL7, RHSCL 2.4 Beta 1.1, Devstudio 10.4-0.20170320.0955.el7
Reporter: Lukáš Valach
Assignee: Nick Boldt
Fix For: 10.4.0.AM3
Attachments: Start_without_clean.png, rh-eclipse46-devstudio10.4-0.20170320.0955.el7.log.Without_clean_test_strict.txt
When I install something from Red Hat Central and then start Devstudio without -clean then I get this error:
{code}
!ENTRY org.eclipse.e4.ui.workbench 4 0 2017-03-23 07:51:22.689
!MESSAGE Unable to load resource platform:/plugin/org.eclipse.platform/LegacyIDE.e4xmi
!STACK 0
java.lang.NullPointerException
{code}
There are multiple errors but this one seems to be common for multiple items.
And this window appear:
!Start_without_clean.png|thumbnail!
There is easy workaround but user won't start Devstudio with -clean and many of them could be upset.
Please see the log: [^rh-eclipse46-devstudio10.4-0.20170320.0955.el7.log.Without_clean_test_strict.txt] There is what I got when I installed FindBugs. I put some comments there so you can find sections installation/start without clean/start with clean.
CC: [~psrna] [~vkadlcik]
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years
[JBoss JIRA] (JBDS-3826) Some components fail with folder name containing non-standard characters
by Jan Richter (JIRA)
[ https://issues.jboss.org/browse/JBDS-3826?page=com.atlassian.jira.plugin.... ]
Jan Richter edited comment on JBDS-3826 at 3/23/17 4:45 AM:
------------------------------------------------------------
- devstudio is alright
- cygwin keeps failing in the latest master with the exact same error, and the fix is already in
- virtualbox also has a nice error, which I presume is firing when adding it to Path:
{noformat}Thu, 23 Mar 2017 08:37:08 GMT-ERROR: virtualbox failed to install: Error: ENOENT: no such file or directory, stat 'C:\DevelopmentSuite!@$^&()_=+-,.'\virtualbox'
{noformat}
And as a bonus, uninstaller is not working.
was (Author: jrichter1):
- devstudio is alright
- cygwin keeps failing in the latest master with the exact same error, and the fix is already in
- virtualbox also has a nice error, which I presume is firing when adding it to Path:
{noformat}Thu, 23 Mar 2017 08:37:08 GMT-ERROR: virtualbox failed to install: Error: ENOENT: no such file or directory, stat 'C:\DevelopmentSuite!@$^&()_=+-,.'\virtualbox'
{noformat}
> Some components fail with folder name containing non-standard characters
> ------------------------------------------------------------------------
>
> Key: JBDS-3826
> URL: https://issues.jboss.org/browse/JBDS-3826
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: platform-installer
> Affects Versions: 9.1.0.CR1
> Reporter: Jan Richter
> Assignee: Denis Golovin
> Labels: havoc
> Fix For: 10.4.0.AM2
>
>
> I have tried installing into this folder:
> {noformat}c:\Developer~~!@#$@#@++ŇNˇaˇAsdďf¨¨°Platform{noformat}
> And JBDS installation failed immediately, the install.log was not very helpful.
> {noformat}Fri, 15 Apr 2016 11:49:50 GMT-INFO: jbds - Execute c:\Developer~~!@#$@#@++ŇNˇaˇAsdďf¨¨°Platform\jdk8\bin\java.exe -DTRACE=true,-jar,C:\Users\jbossqa\AppData\Local\Temp\7zS7105.tmp\jbds.jar,C:\Users\jbossqa\AppData\Local\Temp\jbds-autoinstall.xml
> Fri, 15 Apr 2016 11:49:52 GMT-ERROR: jbds - Error: Command failed: c:\Developer~~!@#$@#@++ŇNˇaˇAsdďf¨¨°Platform\jdk8\bin\java.exe -DTRACE=true -jar C:\Users\jbossqa\AppData\Local\Temp\7zS7105.tmp\jbds.jar C:\Users\jbossqa\AppData\Local\Temp\jbds-autoinstall.xml
> Fri, 15 Apr 2016 11:49:52 GMT-ERROR: jbds -
> Fri, 15 Apr 2016 11:49:52 GMT-ERROR: jbds failed to install: Error: Command failed: c:\Developer~~!@#$@#@++ŇNˇaˇAsdďf¨¨°Platform\jdk8\bin\java.exe -DTRACE=true -jar C:\Users\jbossqa\AppData\Local\Temp\7zS7105.tmp\jbds.jar C:\Users\jbossqa\AppData\Local\Temp\jbds-autoinstall.xml
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years