[JBoss JIRA] (JBIDE-15394) Add arquillian.xml GUI editor to jbosstools-arquillian
by Snjezana Peco (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15394?page=com.atlassian.jira.plugi... ]
Snjezana Peco commented on JBIDE-15394:
---------------------------------------
The editor shows a pom.xml fragment, but still unconditionally changes pom.xml.
I like the feature, but think it would be better to implement it as arquillian.xml/arquillian.properies validator.
The validator would create markers that could have quickfixes that would refactor pom.xml in the standard way, that is, using a refactoring dialog, a pom.xml preview ...
There are a few bugs (when editing pom.xml and arquillian.xml at the same time, for instance) that could be fixed. However, the editor has been implemented from scratch what would make maintenance more difficult. In my opinion, it would be better to implement the editor using the Saphire framework or the JBoss XModel framework. I would like to try to implement it using the Saphire framework because it is better documented.
> Add arquillian.xml GUI editor to jbosstools-arquillian
> ------------------------------------------------------
>
> Key: JBIDE-15394
> URL: https://issues.jboss.org/browse/JBIDE-15394
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: testing-tools
> Reporter: Masao Kunii
> Assignee: Snjezana Peco
> Priority: Optional
> Fix For: 4.2.0.Beta1
>
>
> The arquillian.xml editor is an editor to edit arquillian.xml easily and visually. This is a feature for jbosstools-arquillian(https://github.com/jbosstools/jbosstools-arquillian) and enables to:
> - Edit containers, container groups, extensions, protocols and engines
> - Modify pom.xml automatically corresponding settings in arquillian.xml
> - Register favorite container/container groups from Eclipse preferences
--
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, 2 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:
-----------------------------------
Issue Type: Feature Request (was: Bug)
> 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.Beta1
>
> 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
12 years, 2 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:
----------------------------------------
We could try to provide (via contribution to JSDT) at least content assist for element IDs in $('#...
$('#someid').* is harder to implement.
> 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: Bug
> 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.Beta1
>
> 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
12 years, 2 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:
-----------------------------------
Fix Version/s: 4.2.0.Beta1
(was: LATER)
> 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: Bug
> 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.Beta1
>
> 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
12 years, 2 months
[JBoss JIRA] (JBIDE-16271) Support jquery mobile 1.4
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16271?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-16271:
-----------------------------------
Fix Version/s: 4.2.0.Beta1
(was: 4.2.0.Alpha2)
> Support jquery mobile 1.4
> -------------------------
>
> Key: JBIDE-16271
> URL: https://issues.jboss.org/browse/JBIDE-16271
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Affects Versions: 4.1.1.Final
> Reporter: Max Rydahl Andersen
> Assignee: Alexey Kazakov
> Labels: new_and_noteworthy
> Fix For: 4.2.0.Beta1
>
> Attachments: Combobox.bmml, Combobox.bmml, Combobox.png
>
>
> jquery mobile 1.4 is coming out and apparently have performance fixes making it better suited for cordova development.
> Noets from Vineet:
> "I wouldn't say 1.4 is more compatible. It's a case of jQM 1.4 being more suitable
> for Cordova apps. jQM 1.4 is more performant and thus Cordova apps are less sluggish.
> The release notes allude to this: http://jquerymobile.com/blog/2013/09/24/announcing-jquery-mobile-1-4-beta/
> I've got no hard numbers here, but this slides in this talk - http://www.slideshare.net/AlexanderSchmitz/austin-26252266
> gives a better overview of what's in 1.4. Slide 22 is most relevant -
> jQM 1.4 ships with a better default theme that improves performance,
> among various other changes discussed in other slides."
> Need to find out what issues jquery mobile palette and others might have with supporting jquery mobile for both 1.3 and 1.4...will be relevant with future new versions too.
--
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, 2 months