[JBoss JIRA] (JBIDE-18962) OpenOn for <input list=""> to corresponding <datalist id="">
by Vlado Pakan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18962?page=com.atlassian.jira.plugi... ]
Vlado Pakan closed JBIDE-18962.
-------------------------------
Verified with JBDS 9.0.0.Alpha1-v20150216-1042-B11
> OpenOn for <input list=""> to corresponding <datalist id="">
> -------------------------------------------------------------
>
> Key: JBIDE-18962
> URL: https://issues.jboss.org/browse/JBIDE-18962
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 4.3.0.Alpha1
> Reporter: Alexey Kazakov
> Assignee: Daniel Azarov
> Labels: new_and_noteworthy
> Fix For: 4.3.0.Alpha1
>
>
> List attribute refers to a <datalist> element that contains pre-defined options for an <input> element
> 1. Create an html file
> 2. Add the following code:
> {code:html}
> <datalist id="browsers">
> <option value="Internet Explorer">
> <option value="Firefox">
> <option value="Chrome">
> <option value="Safari">
> </datalist>
>
> <datalist id="os">
> <option value="Windows">
> <option value="Linux">
> <option value="Mac">
> </datalist>
>
> <input list="browsers" name="browser">
> {code}
> 3. Ctrl+Click on <input list="browsers"> should navigate to <datalist id="browsers">
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-12274) BrowserSim borks on jquery mobile (RHEL 6.1)
by Karel Piwko (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12274?page=com.atlassian.jira.plugi... ]
Karel Piwko edited comment on JBIDE-12274 at 2/19/15 8:29 AM:
--------------------------------------------------------------
[~vpakan] let me try to verify this late next week. No chance to have time for that earlier.
was (Author: kpiwko):
@Vlado Pakan let me try to verify this late next week. No chance to have time for that earlier.
> 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: Konstantin Marmalyukov
> Labels: upstream
> Fix For: 4.3.0.Alpha1
>
> 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 was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-12274) BrowserSim borks on jquery mobile (RHEL 6.1)
by Karel Piwko (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12274?page=com.atlassian.jira.plugi... ]
Karel Piwko commented on JBIDE-12274:
-------------------------------------
@Vlado Pakan let me try to verify this late next week. No chance to have time for that earlier.
> 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: Konstantin Marmalyukov
> Labels: upstream
> Fix For: 4.3.0.Alpha1
>
> 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 was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-18661) CSS content assist: Multiple error messages in case of invalid URI
by Vlado Pakan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18661?page=com.atlassian.jira.plugi... ]
Vlado Pakan closed JBIDE-18661.
-------------------------------
Verified with JBDS 9.0.0.Alpha1-v20150216-1042-B11
> CSS content assist: Multiple error messages in case of invalid URI
> ------------------------------------------------------------------
>
> Key: JBIDE-18661
> URL: https://issues.jboss.org/browse/JBIDE-18661
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 4.2.0.CR2
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.3.0.Alpha1
>
>
> I have an html page with the following CSS link:
> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400it...">
> Ctrl+Click for any <* class="|"> causes multiple error messages:
> {code}
> java.lang.IllegalArgumentException: Invalid uri 'https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400it...': Invalid query
> at org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:222)
> at org.apache.commons.httpclient.methods.GetMethod.<init>(GetMethod.java:89)
> at org.jboss.tools.common.util.HttpUtil.executeGetMethod(HttpUtil.java:141)
> at org.jboss.tools.common.util.HttpUtil.executeGetMethod(HttpUtil.java:126)
> at org.jboss.tools.common.util.HttpUtil.getInputStreamFromUrlByGetMethod(HttpUtil.java:55)
> at org.jboss.tools.jst.web.kb.internal.RemoteFileManager$DownloaderImpl.getInputStream(RemoteFileManager.java:394)
> at org.jboss.tools.jst.web.kb.internal.RemoteFileManager$DownloadingJob.run(RemoteFileManager.java:327)
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-18693) CDI validation: Don't warn if CDI 1.1 project doesn't have beans.xml
by Rastislav Wagner (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18693?page=com.atlassian.jira.plugi... ]
Rastislav Wagner closed JBIDE-18693.
------------------------------------
Verified in JBDS 9.0.0.Alpha1-v20150216-1042-B11
> CDI validation: Don't warn if CDI 1.1 project doesn't have beans.xml
> --------------------------------------------------------------------
>
> Key: JBIDE-18693
> URL: https://issues.jboss.org/browse/JBIDE-18693
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi
> Affects Versions: 4.2.0.Final
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.3.0.Alpha1
>
>
> 1. Create a CDI 1.1 project (the project should have CDI 1.1 jars in its classpath, from WildFly 8.0 for example)
> 2. Don't create beans.xml file when using New CDI Web Project wizard or remove the file from the created project
> 3. See Problems view:
> "Missing beans.xml file in the project cdiweb. This file is required for bean archives [JSR-299 §12.1]"
> This warning message should appear only for CDI 1.0 projects.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-18994) Unexpected JAX-RS validation error for client filters
by Marián Labuda (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18994?page=com.atlassian.jira.plugi... ]
Marián Labuda closed JBIDE-18994.
---------------------------------
Verified in JBDS 9.0.0.Alpha1 build ID 11.
> Unexpected JAX-RS validation error for client filters
> -----------------------------------------------------
>
> Key: JBIDE-18994
> URL: https://issues.jboss.org/browse/JBIDE-18994
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: webservices
> Affects Versions: 4.2.0.Final
> Reporter: Xavier Coulon
> Assignee: Xavier Coulon
> Labels: jax-rs
> Fix For: 4.3.0.Alpha1
>
>
> We are using JAX-RS client filters in our project. One of the classes looks like this:
> ...
> import java.io.IOException;
> import javax.ws.rs.client.ClientRequestContext;
> import javax.ws.rs.client.ClientRequestFilter;
> import javax.ws.rs.ext.Provider;
> ...
> @Provider
> public class ClientFilter implements ClientRequestFilter
> {
> ...
> }
> The class is part of a Dynamic Web Project with JAX-RS support turned on.
> The combination of @Provider and either of the ClientRequestFilter or ClientRequestFilter appears to confuse the JAX-RS validator which produces the following error:
> The Provider must implement at least one of the following interfaces: javax.ws.rs.ext.MessageBodyReader, javax.ws.rs.ext.MessageBodyWriter, javax.ws.rs.ext.ExceptionMapper, javax.ws.rs.ext.ReaderInterceptor, javax.ws.rs.ext.WriterInterceptor, javax.ws.rs.container.ContainerRequestFilter, javax.ws.rs.container.ContainerResponseFilter or javax.ws.rs.ext.ContextResolver.
> I suspect the validator needs to be enhanced to also accept the two client filter interfaces when checking the @Provider annotation?
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months