[JBoss JIRA] (JBIDE-14811) Display non-default scope in dependency identification page
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14811?page=com.atlassian.jira.plugi... ]
Fred Bricon resolved JBIDE-14811.
---------------------------------
Resolution: Done
> Display non-default scope in dependency identification page
> -----------------------------------------------------------
>
> Key: JBIDE-14811
> URL: https://issues.jboss.org/browse/JBIDE-14811
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: maven
> Affects Versions: 4.1.0.Beta1
> Reporter: Fred Bricon
> Assignee: Fred Bricon
> Priority: Minor
> Fix For: 4.1.0.Beta2
>
> Attachments: display-dependency-scope.png
>
>
> When converting a project to maven, in the dependency identification page, if the user double-clicks on a dependency to change the scope, there are no visual indications of the change.
> If a non default scope (anything other than compile) is used, it should be displayed next to the dependency id
--
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, 10 months
[JBoss JIRA] (JBIDE-14811) Display non-default scope in dependency identification page
by Fred Bricon (JIRA)
Fred Bricon created JBIDE-14811:
-----------------------------------
Summary: Display non-default scope in dependency identification page
Key: JBIDE-14811
URL: https://issues.jboss.org/browse/JBIDE-14811
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: maven
Affects Versions: 4.1.0.Beta1
Reporter: Fred Bricon
Assignee: Fred Bricon
Priority: Minor
Fix For: 4.1.0.Beta2
When converting a project to maven, in the dependency identification page, if the user double-clicks on a dependency to change the scope, there are no visual indications of the change.
If a non default scope (anything other than compile) is used, it should be displayed next to the dependency id
--
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, 10 months
[JBoss JIRA] (JBIDE-14414) ECFTransport fails on many platform urls
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14414?page=com.atlassian.jira.plugi... ]
Rob Stryker resolved JBIDE-14414.
---------------------------------
Resolution: Done
pushed to b2 as part of foundation
> ECFTransport fails on many platform urls
> ----------------------------------------
>
> Key: JBIDE-14414
> URL: https://issues.jboss.org/browse/JBIDE-14414
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: common/jst/core
> Affects Versions: 4.1.0.Beta1
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 4.1.0.Beta2
>
>
> While making some new test cases, I discovered that the class fails badly (I experienced a deadlock I mentioned in email when using a bundleentry url) and did not have any support for urls that the class LOOKS like it supports.
> Support needs to be enhanced for this.
> I'm making tests in the new potential "core", and I do not wish to make temporary tests in 'common' before we move the class, so for now I will only be committing this to my 'creation of core' topic branch.
--
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, 10 months
[JBoss JIRA] (JBIDE-12274) BrowserSim borks on jquery mobile (RHEL 6.1)
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12274?page=com.atlassian.jira.plugi... ]
RH Bugzilla Integration commented on JBIDE-12274:
-------------------------------------------------
Jiri Pallich <jpallich(a)redhat.com> made a comment on [bug 966571|https://bugzilla.redhat.com/show_bug.cgi?id=966571]
(In reply to Matthias Clasen from comment #4)
> For the desktop engineering side, we are fine with this update.
Hi Matthias,
Could you please grant the devel_ack+ in that case?
Thanks,
Jiri
> BrowserSim borks on jquery mobile (RHEL 6.1)
> --------------------------------------------
>
> Key: JBIDE-12274
> URL: https://issues.jboss.org/browse/JBIDE-12274
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: browsersim
> Affects Versions: 3.3.0.CR1
> Environment: RHEL 6.1
> JBoss Developer Studio 5.0.0.CR1
> Reporter: Gabriel De Repentigny
> Assignee: Yahor Radtsevich
> Labels: upstream
> Fix For: 4.0.0.Alpha1, 4.1.x
>
> Attachments: jQMrefsRemoved.png, midori-browsersim.png, midori-browsersim.png, python-tabbed-browser.png, Screenshot-BrowserSim .png, windows-7_Safari-5.1.2-7534.52.7.png
>
>
> I'm walking through the JBoss Way Ticket Monster lab. JDS's BrowserSim borks while trying to render mobile.html (pasted below) which is part of the tutorial.
> The problem seems to be with the jquery mobile js file. If you take that include out, it renders (sans-mobile styling).
> {code:xml}
> <!DOCTYPE html>
> <html>
> <head>
> <title>jQuery Mobile Template</title>
> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
> <meta name="viewport" content="width=device-width, initial-scale=1" />
> <link rel="stylesheet"
> href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
> <script type="text/javascript"
> src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
> <script type="text/javascript"
> src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
> <script type="text/javascript">
> $(document).on("pageinit", "#page1", function(event){
> alert("Ready To Go");
> });
> $.getJSON("rest/events", function(events) {
> // console.log("returned are " + results);
> var listOfEvents = $("#listOfItems");
> listOfEvents.empty();
> $.each(events, function(index, event) {
> // console.log(event.name);
> listOfEvents.append("<li><a href=’#’>" + event.name + "</a>");
> });
> listOfEvents.listview("refresh");
> });
> </script>
> </head>
> <body>
> <div data-role="page" id="page1">
> <div data-role="header">
> <h1>jQuery Mobile</h1>
> </div>
> <div data-role="content">
> <ul id="listOfItems" data-role="listview" data-inset="true"
> data-filter="true">
> <li><a href="">One</a></li>
> <li><a href="">Two</a></li>
> <li><a href="">Three</a></li>
> </ul>
> </div>
> <div data-role="footer">
> <h4>www.jboss.org/developer</h4>
> </div>
> </div>
> </body>
> </html>
> {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, 10 months