[JBoss JIRA] (JBIDE-13413) jQuery Mobile Widget Palette
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13413?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-13413 at 1/29/13 12:27 AM:
------------------------------------------------------------------
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons* (http://jquerymobile.com/test/docs/buttons/buttons-grouped.html)
No Wizard.
Result:
{code}
<div data-role="controlgroup">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
{code}
9. *Grid* (http://jquerymobile.com/test/docs/content/content-grids.html)
!NewGrid.png|thumbnail!
Result:
{code}
<div class="ui-grid-a">
<div class="ui-block-a"></div>
<div class="ui-block-b"></div>
</div><!-- /grid-a -->
{code}
10. *Collapsible Content Block* (http://jquerymobile.com/test/docs/content/content-collapsible.html)
!NewBlock.png|thumbnail!
Result:
{code}
<div data-role="collapsible">
<h3>I'm a header</h3>
<p>I'm the collapsible content.</p>
</div>
{code}
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
was (Author: akazakov):
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons* (http://jquerymobile.com/test/docs/buttons/buttons-grouped.html)
No Wizard.
Result:
{code}
<div data-role="controlgroup">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
{code}
9. *Grid* (http://jquerymobile.com/test/docs/content/content-grids.html)
!NewGrid.png|thumbnail!
Result:
{code}
<div class="ui-grid-a">
<div class="ui-block-a"></div>
<div class="ui-block-b"></div>
</div><!-- /grid-a -->
{code}
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
> jQuery Mobile Widget Palette
> ----------------------------
>
> Key: JBIDE-13413
> URL: https://issues.jboss.org/browse/JBIDE-13413
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.1.x
>
> Attachments: NewBlock.bmml, NewBlock.png, NewButton.bmml, NewButton.png, NewDialog.bmml, NewDialog.bmml, NewDialog.png, NewGrid.bmml, NewGrid.png, NewHeaderBar.bmml, NewHeaderBar.png, NewNavbar.bmml, NewNavbar.png, NewPage.bmml, NewPage.png, NewPopup.bmml, NewPopup.png
>
>
> http://jquerymobile.com/test/
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-12361) PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12361?page=com.atlassian.jira.plugi... ]
Michelle Murray updated JBIDE-12361:
------------------------------------
Release Notes Text:
When packaging a web project, the use of a fileset for automatically copying resources did not result in the correct files being copied. The expressions in the Includes and Excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and strict adherence to the expressions in the Includes and Excludes fields ensures the correct files are copied.
was:
When packaging a web project, the use of a fileset for automatically copying resources did not result in the correct files being copied. The expressions in the Includes and Excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and strict adherence to the expressions in the Includes and Excludes fields now ensures only files with names matching the expressions are copied.
> PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
> --------------------------------------------------------------------------------------
>
> Key: JBIDE-12361
> URL: https://issues.jboss.org/browse/JBIDE-12361
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JBossAS/Servers
> Affects Versions: 3.3.1
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 3.3.2, 4.0.0.Alpha1
>
> Attachments: JBIDE-12361.33x.patch, JBIDE-12361.33x.v2.patch
>
>
> Steps to reproduce:
> 1) Create a dynamic web project
> 2) Create a POJP
> 3) Inside POJP, make some file structure (foldera, foldera/file1.txt, foldera/file2.txt, folderb, folderb/b1.txt, etc)
> 4) Right-click web project, go to deployment assembly page
> 5) click add
> 6) click 'fileset'
> 7) set root to /pojp
> 8) set includes pattern to **/file1*
> 9) finish
> 10) publish this to some server
> You will note that matching files inside a subdirectory that is not explicitly included in the includes pattern does not get included. In this case, foldera/file1.txt will not be included, and folder 'foldera' will also not be created in the deployment. This is a bug.
> Part of this commit has been made over at JBIDE-12360 by accident
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13246) When two servers with same version are found only one is added
by Max Rydahl Andersen (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13246?page=com.atlassian.jira.plugi... ]
Max Rydahl Andersen commented on JBIDE-13246:
---------------------------------------------
The past obviously failed on keeping these bugs a bay - best source of that is the lack of tests.
QE's tests have moved out but that does not mean the component itself should have tests for its basic functionality.
My understanding was that runtime detection now is done at core level and things like this should not be present/done in UI so that surprises me if that is still the case.
Looking at the code this specific patch concerns fixing a UI bug where it seem to be calling a method that is bogus in the branch (getRuntimeDefinitions() vs RuntimeModelUtil.getAllDefinitions(runtimePaths.toArray(new RuntimePath[0]));) but then continues to call the local getRuntimeDefinitions....so the patch on its own is rather mysterious.
That said, the test i'm still missing is where are the test in runtime detection unit tests (i.e. RuntimeModelUtil) that verifies this logic about two servers with same version found actual result in getAllDefinitions() (and what else methods needed) to return the right result and get the right number of servers created ?
That does not sound to me like it needs a UI test ?
> When two servers with same version are found only one is added
> ---------------------------------------------------------------
>
> Key: JBIDE-13246
> URL: https://issues.jboss.org/browse/JBIDE-13246
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: runtime-detection
> Affects Versions: 4.0.0.CR1
> Reporter: Petr Suchý
> Assignee: Max Rydahl Andersen
> Fix For: 4.1.0.Alpha1, 4.0.x
>
>
> Regression - JBIDE-12714
> When I add a path that contains two servers with the same type and version, both are correctly listed as found but just one is added.
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-12361) PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12361?page=com.atlassian.jira.plugi... ]
Michelle Murray updated JBIDE-12361:
------------------------------------
Release Notes Text:
When packaging a web project, the use of a fileset for automatically copying resources did not result in the correct files being copied. The expressions in the Includes and Excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and strict adherence to the expressions in the Includes and Excludes fields now ensures only files with names matching the expressions are copied.
was:
When packaging a web project, the use of a fileset for automatically copying resources did not result in the correct files being copied. The expressions in the Includes and Excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and strict adherence to the expressions in the Includes and Excludes fields now ensures the correct files are copied.
> PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
> --------------------------------------------------------------------------------------
>
> Key: JBIDE-12361
> URL: https://issues.jboss.org/browse/JBIDE-12361
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JBossAS/Servers
> Affects Versions: 3.3.1
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 3.3.2, 4.0.0.Alpha1
>
> Attachments: JBIDE-12361.33x.patch, JBIDE-12361.33x.v2.patch
>
>
> Steps to reproduce:
> 1) Create a dynamic web project
> 2) Create a POJP
> 3) Inside POJP, make some file structure (foldera, foldera/file1.txt, foldera/file2.txt, folderb, folderb/b1.txt, etc)
> 4) Right-click web project, go to deployment assembly page
> 5) click add
> 6) click 'fileset'
> 7) set root to /pojp
> 8) set includes pattern to **/file1*
> 9) finish
> 10) publish this to some server
> You will note that matching files inside a subdirectory that is not explicitly included in the includes pattern does not get included. In this case, foldera/file1.txt will not be included, and folder 'foldera' will also not be created in the deployment. This is a bug.
> Part of this commit has been made over at JBIDE-12360 by accident
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13413) jQuery Mobile Widget Palette
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13413?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-13413 at 1/29/13 12:19 AM:
------------------------------------------------------------------
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons* (http://jquerymobile.com/test/docs/buttons/buttons-grouped.html)
No Wizard.
Result:
{code}
<div data-role="controlgroup">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
{code}
9. *Grid* (http://jquerymobile.com/test/docs/content/content-grids.html)
!NewGrid.png|thumbnail!
Result:
{code}
<div class="ui-grid-a">
<div class="ui-block-a"></div>
<div class="ui-block-b"></div>
</div><!-- /grid-a -->
{code}
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
was (Author: akazakov):
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons* (http://jquerymobile.com/test/docs/buttons/buttons-grouped.html)
No Wizard.
Result:
{code}
<div data-role="controlgroup">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
{code}
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
> jQuery Mobile Widget Palette
> ----------------------------
>
> Key: JBIDE-13413
> URL: https://issues.jboss.org/browse/JBIDE-13413
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.1.x
>
> Attachments: NewButton.bmml, NewButton.png, NewDialog.bmml, NewDialog.bmml, NewDialog.png, NewGrid.bmml, NewGrid.png, NewHeaderBar.bmml, NewHeaderBar.png, NewNavbar.bmml, NewNavbar.png, NewPage.bmml, NewPage.png, NewPopup.bmml, NewPopup.png
>
>
> http://jquerymobile.com/test/
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-12361) PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12361?page=com.atlassian.jira.plugi... ]
Michelle Murray updated JBIDE-12361:
------------------------------------
Release Notes Text:
When packaging a web project, the use of a fileset for automatically copying resources did not result in the correct files being copied. The expressions in the Includes and Excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and strict adherence to the expressions in the Includes and Excludes fields now ensures the correct files are copied.
was:
The use of a fileset for automatically copying resources when packaging a web project did not result in the correct files being copied. The includes and excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and with strict adherence to the includes and excludes fields. The fileset operates as expected.
> PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
> --------------------------------------------------------------------------------------
>
> Key: JBIDE-12361
> URL: https://issues.jboss.org/browse/JBIDE-12361
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JBossAS/Servers
> Affects Versions: 3.3.1
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 3.3.2, 4.0.0.Alpha1
>
> Attachments: JBIDE-12361.33x.patch, JBIDE-12361.33x.v2.patch
>
>
> Steps to reproduce:
> 1) Create a dynamic web project
> 2) Create a POJP
> 3) Inside POJP, make some file structure (foldera, foldera/file1.txt, foldera/file2.txt, folderb, folderb/b1.txt, etc)
> 4) Right-click web project, go to deployment assembly page
> 5) click add
> 6) click 'fileset'
> 7) set root to /pojp
> 8) set includes pattern to **/file1*
> 9) finish
> 10) publish this to some server
> You will note that matching files inside a subdirectory that is not explicitly included in the includes pattern does not get included. In this case, foldera/file1.txt will not be included, and folder 'foldera' will also not be created in the deployment. This is a bug.
> Part of this commit has been made over at JBIDE-12360 by accident
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13413) jQuery Mobile Widget Palette
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13413?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-13413 at 1/29/13 12:13 AM:
------------------------------------------------------------------
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons* (http://jquerymobile.com/test/docs/buttons/buttons-grouped.html)
No Wizard.
Result:
{code}
<div data-role="controlgroup">
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
{code}
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
was (Author: akazakov):
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons*
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
> jQuery Mobile Widget Palette
> ----------------------------
>
> Key: JBIDE-13413
> URL: https://issues.jboss.org/browse/JBIDE-13413
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.1.x
>
> Attachments: NewButton.bmml, NewButton.png, NewDialog.bmml, NewDialog.bmml, NewDialog.png, NewHeaderBar.bmml, NewHeaderBar.png, NewNavbar.bmml, NewNavbar.png, NewPage.bmml, NewPage.png, NewPopup.bmml, NewPopup.png
>
>
> http://jquerymobile.com/test/
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-12361) PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
by Michelle Murray (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12361?page=com.atlassian.jira.plugi... ]
Michelle Murray updated JBIDE-12361:
------------------------------------
Release Notes Text:
The use of a fileset for automatically copying resources when packaging a web project did not result in the correct files being copied. The includes and excludes fields of the fileset reference were not strictly adhered to during pattern matching of file names. This has been resolved and with strict adherence to the includes and excludes fields. The fileset operates as expected.
was:Users making use of the Module Assembly preference page for web projects (and others) to add a Fileset may discover that the includes / excludes patterns were not strictly respected. This is now fixed.
> PRoblem with WorkspaceFIlesetVirtualComponent, publish using fileset virtual component
> --------------------------------------------------------------------------------------
>
> Key: JBIDE-12361
> URL: https://issues.jboss.org/browse/JBIDE-12361
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JBossAS/Servers
> Affects Versions: 3.3.1
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 3.3.2, 4.0.0.Alpha1
>
> Attachments: JBIDE-12361.33x.patch, JBIDE-12361.33x.v2.patch
>
>
> Steps to reproduce:
> 1) Create a dynamic web project
> 2) Create a POJP
> 3) Inside POJP, make some file structure (foldera, foldera/file1.txt, foldera/file2.txt, folderb, folderb/b1.txt, etc)
> 4) Right-click web project, go to deployment assembly page
> 5) click add
> 6) click 'fileset'
> 7) set root to /pojp
> 8) set includes pattern to **/file1*
> 9) finish
> 10) publish this to some server
> You will note that matching files inside a subdirectory that is not explicitly included in the includes pattern does not get included. In this case, foldera/file1.txt will not be included, and folder 'foldera' will also not be created in the deployment. This is a bug.
> Part of this commit has been made over at JBIDE-12360 by accident
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13413) jQuery Mobile Widget Palette
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13413?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-13413 at 1/29/13 12:11 AM:
------------------------------------------------------------------
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button* (http://jquerymobile.com/test/docs/buttons/buttons-types.html)
!NewButton.png|thumbnail!
Result:
{code}
<a href="index.html" data-role="button" data-mini="true">Link button</a>
{code}
8. *Grouped Buttons*
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
was (Author: akazakov):
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button*
8. *Grouped Buttons*
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
> jQuery Mobile Widget Palette
> ----------------------------
>
> Key: JBIDE-13413
> URL: https://issues.jboss.org/browse/JBIDE-13413
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.1.x
>
> Attachments: NewButton.bmml, NewButton.png, NewDialog.bmml, NewDialog.bmml, NewDialog.png, NewHeaderBar.bmml, NewHeaderBar.png, NewNavbar.bmml, NewNavbar.png, NewPage.bmml, NewPage.png, NewPopup.bmml, NewPopup.png
>
>
> http://jquerymobile.com/test/
--
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
13 years, 2 months
[JBoss JIRA] (JBIDE-13413) jQuery Mobile Widget Palette
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13413?page=com.atlassian.jira.plugi... ]
Alexey Kazakov edited comment on JBIDE-13413 at 1/29/13 12:00 AM:
------------------------------------------------------------------
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
Result:
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button*
8. *Grouped Buttons*
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
was (Author: akazakov):
1. *Page* (http://jquerymobile.com/test/docs/pages/page-anatomy.html)
!NewPage.png|thumbnail!
Result:
{code}
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content">
<p>Page content goes here.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
{code}
2. *Dialog* (http://jquerymobile.com/test/docs/pages/dialog/index.html)
!NewDialog.png|thumbnail!
Result:
{code}
<a href="foo.html" data-rel="dialog" data-transition="pop" data-close-btn="none">Open dialog</a>
{code}
3. *Popup* (http://jquerymobile.com/test/docs/pages/popup/index.html)
!NewPopup.png|thumbnail!
Result:
{code}
<a href="#popupBasic" data-rel="popup">Open Popup</a>
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.<p>
</div>
{code}
4. *Header Bar* (http://jquerymobile.com/test/docs/toolbars/docs-headers.html)
!NewHeaderBar.png|thumbnail!
Result:
{code}
<div data-role="header">
<a href="index.html" data-icon="delete">Cancel</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" data-theme="b">Save</a>
</div>
{code}
5. *Footer Bar* (http://jquerymobile.com/test/docs/toolbars/docs-footers.html)
No wizard.
Result:
{code}
<div data-role="footer" class="ui-bar">
</div>
{code}
6. *Navbar* (http://jquerymobile.com/test/docs/toolbars/docs-navbar.html)
!NewNavbar.png|thumbnail!
{code}
<div data-role="navbar">
<ul>
<li><a href="a.html">One</a></li>
<li><a href="b.html">Two</a></li>
</ul>
</div><!-- /navbar -->
{code}
7. *Button*
8. *Grouped Buttons*
9. *Grid*
10. *Collapsible Content Block*
11. *Collapsible Set*
12. *Field Container*
13. *Flip Toggle Switch*
14. *Radio Button*
15. *Check Box*
16. *Grouped Check Boxes*
17. *Select Menu*
18. *Listview*
19. *Panel*
20. *Table*
> jQuery Mobile Widget Palette
> ----------------------------
>
> Key: JBIDE-13413
> URL: https://issues.jboss.org/browse/JBIDE-13413
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html source editing
> Reporter: Alexey Kazakov
> Assignee: Alexey Kazakov
> Fix For: 4.1.x
>
> Attachments: NewDialog.bmml, NewDialog.bmml, NewDialog.png, NewHeaderBar.bmml, NewHeaderBar.png, NewNavbar.bmml, NewNavbar.png, NewPage.bmml, NewPage.png, NewPopup.bmml, NewPopup.png
>
>
> http://jquerymobile.com/test/
--
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
13 years, 2 months