[JBoss JIRA] (JBIDE-13283) Use Akamai for Target-Platform, Mirror, releases stuff
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13283?page=com.atlassian.jira.plugi... ]
Nick Boldt edited comment on JBIDE-13283 at 4/29/14 2:09 AM:
-------------------------------------------------------------
Comments attached to https://github.com/jbdevstudio/jbdevstudio-devdoc/pull/75 and to https://github.com/jbosstools/jbosstools-devdoc/pull/29
Overall these look great, but there's a few nits I had to pick, and a few gotchas you might have missed.
was (Author: nickboldt):
Comments attached to https://github.com/jbdevstudio/jbdevstudio-devdoc/pull/75
> Use Akamai for Target-Platform, Mirror, releases stuff
> ------------------------------------------------------
>
> Key: JBIDE-13283
> URL: https://issues.jboss.org/browse/JBIDE-13283
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: build, target-platform, updatesite
> Reporter: Mickael Istria
> Assignee: Mickael Istria
> Fix For: 4.2.x
>
>
> All our repositories that are either mirrors or target-platform are not updated often. Then we could use Akamai to improve performances. At least these folders would be good:
> * http://download.jboss.org/jbosstools/updates/requirements/
> * http://download.jboss.org/jbosstools/updates/stable/
--
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
11 years, 11 months
[JBoss JIRA] (JBIDE-17058) Add to HTML 5.0 Palette new elements.
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17058?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-17058:
-----------------------------------
Priority: Minor (was: Major)
> Add to HTML 5.0 Palette new elements.
> -------------------------------------
>
> Key: JBIDE-17058
> URL: https://issues.jboss.org/browse/JBIDE-17058
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Viacheslav Kabanovich
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Fix For: 4.2.0.Beta2
>
>
> Now HTML5 has only 5 elements: <form>, <label>, <audio>, <image>, <video>.
> However, there are a lot of new elements in HTML 5.0 (http://www.w3schools.com/html/html5_new_elements.asp) <canvas>, <embed>, <datalist>, <keygen>, <output>, <header>, <nav>, <section>, <main>, <article>, <aside>, <footer>, <details>, <summary>, <figure>, <mark>, <time>, <bdi>, <wbr>, <dialog>, <meter>, <progress>.
> Besides, some old elements, like <table> also can be added to the palette.
> [~burrsutter], [~maxandersen], could you please advise, which elements may be nice to add to the HTML 5.0 palette.
--
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
11 years, 11 months
[JBoss JIRA] (JBIDE-10155) JavaScript content assist issue with jQuery, but likely more
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-10155?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-10155:
-----------------------------------
Priority: Minor (was: Major)
> JavaScript content assist issue with jQuery, but likely more
> ------------------------------------------------------------
>
> Key: JBIDE-10155
> URL: https://issues.jboss.org/browse/JBIDE-10155
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing, upstream
> Affects Versions: 3.3.0.M4
> Reporter: Jay Balunas
> Assignee: Victor Rubezhny
> Priority: Minor
> Labels: jsdt
> Fix For: 4.2.0.Beta2
>
> Attachments: jboss-as-poh5-archetype.zip
>
>
> Content assist with JavaScript with jQuery not working, or respecting namespaces. Most JavaScript content assist was fine.
> {code:JavaScript}
> <script type="text/javascript">
> $(document).ready(function() {
> //Fetches the initial member table
> updateMemberTable();
> //Register a event listener on the sumbit action
> $('#reg').submit(function(event) {
> event.preventDefault();
> var formValues = $(this).serialize();
> registerMember(formValues);
> });
> });
> </script>
> {code}
> Any call to "$('foo')." does not show any content assist. Using "jquery('foo'." instead of $ partially worked, but still not 100%. Not all the expected values are there. This makes me think there is two issues.
> To see the problem import the project I attached and try out desktop.html, or app.js.
--
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
11 years, 11 months
[JBoss JIRA] (JBIDE-10155) JavaScript content assist issue with jQuery, but likely more
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-10155?page=com.atlassian.jira.plugi... ]
Alexey Kazakov commented on JBIDE-10155:
----------------------------------------
I don't think it can happen in 4.2.0.
> JavaScript content assist issue with jQuery, but likely more
> ------------------------------------------------------------
>
> Key: JBIDE-10155
> URL: https://issues.jboss.org/browse/JBIDE-10155
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing, upstream
> Affects Versions: 3.3.0.M4
> Reporter: Jay Balunas
> Assignee: Victor Rubezhny
> Labels: jsdt
> Fix For: 4.2.0.Beta2
>
> Attachments: jboss-as-poh5-archetype.zip
>
>
> Content assist with JavaScript with jQuery not working, or respecting namespaces. Most JavaScript content assist was fine.
> {code:JavaScript}
> <script type="text/javascript">
> $(document).ready(function() {
> //Fetches the initial member table
> updateMemberTable();
> //Register a event listener on the sumbit action
> $('#reg').submit(function(event) {
> event.preventDefault();
> var formValues = $(this).serialize();
> registerMember(formValues);
> });
> });
> </script>
> {code}
> Any call to "$('foo')." does not show any content assist. Using "jquery('foo'." instead of $ partially worked, but still not 100%. Not all the expected values are there. This makes me think there is two issues.
> To see the problem import the project I attached and try out desktop.html, or app.js.
--
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
11 years, 11 months