JBoss Rich Faces SVN: r15105 - branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/util/parser.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-08-04 07:56:35 -0400 (Tue, 04 Aug 2009)
New Revision: 15105
Modified:
branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/util/parser/TLDParser.java
Log:
Parser fix for linux env.
Modified: branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/util/parser/TLDParser.java
===================================================================
--- branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/util/parser/TLDParser.java 2009-08-04 11:54:47 UTC (rev 15104)
+++ branches/community/3.3.X/test-applications/seamApp/web/src/main/java/org/richfaces/helloworld/domain/util/parser/TLDParser.java 2009-08-04 11:56:35 UTC (rev 15105)
@@ -114,12 +114,17 @@
int position;
try {
if ((position = getExtPath().indexOf('!')) != -1) {
- temp = getExtPath().substring("jar:file:\\".length(), position);
+ if (System.getProperty("os.name").toLowerCase().startsWith("windows")) {
+ temp = getExtPath().substring("jar:file:\\".length(), position);
+ } else {
+ temp = "/" + getExtPath().substring("jar:file:/".length(), position);
+ }
+
}
richfacesUI = new JarFile(temp);
} catch (IOException e) {
e.printStackTrace();
}
return richfacesUI;
- }
+ }
}
15 years, 4 months
JBoss Rich Faces SVN: r15104 - branches/community/3.3.X/test-applications/facelets/src/main/java/util/parser.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-08-04 07:54:47 -0400 (Tue, 04 Aug 2009)
New Revision: 15104
Modified:
branches/community/3.3.X/test-applications/facelets/src/main/java/util/parser/TLDParser.java
Log:
Parser fix for linux
Modified: branches/community/3.3.X/test-applications/facelets/src/main/java/util/parser/TLDParser.java
===================================================================
--- branches/community/3.3.X/test-applications/facelets/src/main/java/util/parser/TLDParser.java 2009-08-04 10:30:19 UTC (rev 15103)
+++ branches/community/3.3.X/test-applications/facelets/src/main/java/util/parser/TLDParser.java 2009-08-04 11:54:47 UTC (rev 15104)
@@ -114,12 +114,17 @@
int position;
try {
if ((position = getExtPath().indexOf('!')) != -1) {
- temp = getExtPath().substring("jar:file:\\".length(), position);
+ if (System.getProperty("os.name").toLowerCase().startsWith("windows")) {
+ temp = getExtPath().substring("jar:file:\\".length(), position);
+ } else {
+ temp = "/" + getExtPath().substring("jar:file:/".length(), position);
+ }
+
}
richfacesUI = new JarFile(temp);
} catch (IOException e) {
e.printStackTrace();
}
return richfacesUI;
- }
+ }
}
15 years, 4 months
JBoss Rich Faces SVN: r15103 - in branches/community/3.3.X/samples/richfaces-demo/src/main: webapp/templates/include and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-08-04 06:30:19 -0400 (Tue, 04 Aug 2009)
New Revision: 15103
Modified:
branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/path.properties
branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/header.xhtml
branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/references.xhtml
Log:
https://jira.jboss.org/jira/browse/RFPL-52
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-08-04 10:30:01 UTC (rev 15102)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2009-08-04 10:30:19 UTC (rev 15103)
@@ -1,95 +1,95 @@
# list of components in comma-separated format
#id=name,iconImage,captionImage,devGuideLocation,tldDocLocation,javaDocLocation
-panel= richOutputs, Panel, /images/ico_panel.gif, /images/cn_panel.gif, panel.html, jbossrichfaces/freezone/docs/tlddoc/rich/panel.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPanel.html, /richfaces/panel.jsf
-separator= richOutputs, Separator, /images/ico_separator.gif, /images/cn_separator.gif, separator.html, jbossrichfaces/freezone/docs/tlddoc/rich/separator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UISeparator.html, /richfaces/separator.jsf
-spacer= richOutputs, Spacer, /images/ico_spacer.gif, /images/cn_spacer.gif, spacer.html, jbossrichfaces/freezone/docs/tlddoc/rich/spacer.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UISpacer.html, /richfaces/spacer.jsf
-tabPanel= richOutputs, Tab Panel, /images/ico_tabpanel.gif, /images/cn_tabpanel.gif, tabPanel.html, jbossrichfaces/freezone/docs/tlddoc/rich/tabPanel.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UITabPanel.html, /richfaces/tabPanel.jsf
-inputNumberSlider= richInputs, Input Number Slider, /images/ico_DataFilterSlider.gif, /images/cn_slider.gif, inputNumberSlider.html, jbossrichfaces/freezone/docs/tlddoc/rich/inputNumberSlider.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIInputNumberSlider.html, /richfaces/inputNumberSlider.jsf
-inputNumberSpinner= richInputs, Input Number Spinner, /images/ico_spinner.gif, /images/cn_spinner.gif, inputNumberSpinner.html, jbossrichfaces/freezone/docs/tlddoc/rich/inputNumberSpinner.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIInputNumberSpinner.html, /richfaces/inputNumberSpinner.jsf
-dataFilterSlider= richDataIterators, Data Filter Slider, /images/ico_DataFilterSlider.gif, /images/cn_DataFilterSlider.gif, dataFilterSlider.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataFilterSlider.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataFltrSlider.html, /richfaces/dataFilterSlider.jsf
-dataTable=richDataIterators, Data Table, /images/ico_DataTable.gif, /images/cn_DataTable.gif, dataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html, /richfaces/dataTable.jsf
-column= richDataIterators, Column, /images/ico_Column.gif, /images/cn_Column.gif, column.html, jbossrichfaces/freezone/docs/tlddoc/rich/column.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIColumn.html, /richfaces/dataTable.jsf
-columnGroup= richDataIterators, Column Group, /images/ico_ColumnGroup.gif, /images/cn_ColumnGroup.gif, columnGroup.html, jbossrichfaces/freezone/docs/tlddoc/rich/columnGroup.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIColumnGroup.html, /richfaces/dataTable.jsf
-dataDefinitionList= richDataIterators, Data Definition List, /images/ico_DataDefinitionList.gif, /images/cn_DataDefinitionList.gif, dataDefinitionList.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataDefinitionList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataDefinitionList.html, /richfaces/dataLists.jsf
-dataGrid= richDataIterators, Data Grid, /images/ico_DataGrid.gif, /images/cn_DataGrid.gif, dataGrid.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataGrid.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataGrid.html, /richfaces/dataGrid.jsf
-dataList= richDataIterators, Data List, /images/ico_DataList.gif, /images/cn_DataList.gif, dataList.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataList.html, /richfaces/dataLists.jsf
-dataOrderedList= richDataIterators, Data Ordered List, /images/ico_DataOrderedList.gif, /images/cn_DataOrderedList.gif, dataOrderedList.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataOrderedList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/taglib/DataOrderedListTag.html, /richfaces/dataLists.jsf
-gmap= richMisc, Google Map, /images/ico_GoogleMap.gif, /images/cn_GoogleMap.gif, gmap.html, jbossrichfaces/freezone/docs/tlddoc/rich/gmap.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGmap.html, /richfaces/gmap.jsf
-jQuery= richMisc, jQuery, /images/ico_common.gif, /images/cn_jQuery.gif, jQuery.html, jbossrichfaces/freezone/docs/tlddoc/rich/jQuery.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIJQuery.html, /richfaces/jQuery.jsf
-paint2d= richOutputs, Paint2D, /images/ico_Paint2D.gif, /images/cn_Paint2D.gif, paint2D.html, jbossrichfaces/freezone/docs/tlddoc/rich/paint2D.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPaint2D.html, /richfaces/paint2D.jsf
-toolBar= richOutputs, Tool Bar, /images/ico_ToolBar.gif, /images/cn_ToolBar.gif, toolBar.html, jbossrichfaces/freezone/docs/tlddoc/rich/toolBar.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIToolBar.html, /richfaces/toolBar.jsf
-toolTip= richOutputs, ToolTip, /images/ico_ToolTip.gif, /images/cn_ToolTip.gif, toolTip.html, jbossrichfaces/freezone/docs/tlddoc/rich/toolTip.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIToolTip.html, /richfaces/toolTip.jsf
-simpleTogglePanel= richOutputs, Simple Toggle Panel, /images/ico_SimpleTogglePanel.gif, /images/cn_SimpleTogglePanel.gif, simpleTogglePanel.html, jbossrichfaces/freezone/docs/tlddoc/rich/simpleTogglePanel.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UISimpleTogglePanel.html, /richfaces/simpleTogglePanel.jsf
-dragIndicator= richDragDrop, Drag Indicator, /images/ico_DragIndicator.gif, /images/cn_DragIndicator.gif, dragIndicator.html, jbossrichfaces/freezone/docs/tlddoc/rich/dragIndicator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDragIndicator.html, /richfaces/dragSupport.jsf
-dragSupport= richDragDrop, Drag Support, /images/ico_DragSupport.gif, /images/cn_DragSupport.gif, dragSupport.html, jbossrichfaces/freezone/docs/tlddoc/rich/dragSupport.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDragSupport.html, /richfaces/dragSupport.jsf
-dropSupport= richDragDrop, Drop Support, /images/ico_DropSupport.gif, /images/cn_DropSupport.gif, dropSupport.html, jbossrichfaces/freezone/docs/tlddoc/rich/dropSupport.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDropSupport.html, /richfaces/dragSupport.jsf
-dndParam= richDragDrop, Drag-Drop Parameter, /images/ico_DropSupport.gif, /images/cn_DragDropParameter.gif, dndParam.html, jbossrichfaces/freezone/docs/tlddoc/rich/dndParam.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDndParam.html, /richfaces/dragSupport.jsf
-panelBar= richOutputs, Panel Bar, /images/ico_PanelBar.gif, /images/cn_PanelBar.gif, panelBar.html, jbossrichfaces/freezone/docs/tlddoc/rich/panelBar.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPanelBar.html, /richfaces/panelBar.jsf
-modalPanel= richOutputs, Modal Panel, /images/ico_ModalPanel.gif, /images/cn_ModalPanel.gif, modalPanel.html, jbossrichfaces/freezone/docs/tlddoc/rich/modalPanel.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIModalPanel.html, /richfaces/modalPanel.jsf
-togglePanel= richOutputs, Toggle Panel, /images/ico_TogglePanel.gif, /images/cn_TogglePanel.gif, togglePanel.html, jbossrichfaces/freezone/docs/tlddoc/rich/togglePanel.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UITogglePanel.html, /richfaces/togglePanel.jsf
-panelMenu= richOutputs, Panel Menu, /images/ico_panelMenu.gif, /images/cn_PanelMenu.gif, panelMenu.html, jbossrichfaces/freezone/docs/tlddoc/rich/panelMenu.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPanelMenu.html, /richfaces/panelMenu.jsf
-suggestionBox= richInputs, Suggestion Box, /images/ico_SuggestionBox.gif, /images/cn_SuggestionBox.gif, suggestionbox.html, jbossrichfaces/freezone/docs/tlddoc/rich/suggestionbox.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UISuggestionBox.html, /richfaces/suggestionBox.jsf
-dataTableScroller= richDataIterators, Data Scroller, /images/ico_DataTableScroller.gif, /images/cn_DataTableScroller.gif, datascroller.html, jbossrichfaces/freezone/docs/tlddoc/rich/datascroller.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDatascroller.html, /richfaces/dataTableScroller.jsf
-dropDownMenu= richMenu, Drop Down Menu, /images/ico_DropDownMenu.gif, /images/cn_DropDownMenu.gif, dropDownMenu.html, jbossrichfaces/freezone/docs/tlddoc/rich/dropDownMenu.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDropDownMenu.html, /richfaces/dropDownMenu.jsf
-menuGroup= richMenu, Menu Group, /images/ico_MenuGroup.gif, /images/cn_MenuGroup.gif, menuGroup.html, jbossrichfaces/freezone/docs/tlddoc/rich/menuGroup.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIMenuGroup.html, /richfaces/dropDownMenu.jsf
-menuItem= richMenu, Menu Item, /images/ico_MenuItem.gif, /images/cn_MenuItem.gif, menuItem.html, jbossrichfaces/freezone/docs/tlddoc/rich/menuItem.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIMenuItem.html, /richfaces/dropDownMenu.jsf
-menuSeparator= richMenu, Menu Separator, /images/ico_MenuSeparator.gif, /images/cn_MenuSeparator.gif, menuSeparator.html, jbossrichfaces/freezone/docs/tlddoc/rich/menuSeparator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIMenuSeparator.html, /richfaces/dropDownMenu.jsf
-calendar= richInputs, Calendar, /images/ico_Calendar.gif, /images/cn_Calendar.gif, calendar.html, jbossrichfaces/freezone/docs/tlddoc/rich/calendar.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UICalendar.html, /richfaces/calendar.jsf
-message= richMisc, Message, /images/ico_common.gif, /images/cn_Message.gif, message.html, jbossrichfaces/freezone/docs/tlddoc/rich/message.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIRichMessage.html, /richfaces/message.jsf
-messages= richMisc, Messages, /images/ico_common.gif, /images/cn_Messages.gif, messages.html, jbossrichfaces/freezone/docs/tlddoc/rich/messages.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIRichMessages.html, /richfaces/messages.jsf
-virtualEarth= richMisc, Virtual Earth, /images/ico_VirtualEarth.gif, /images/cn_VirtualEarth.gif, virtualEarth.html, jbossrichfaces/freezone/docs/tlddoc/rich/virtualEarth.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIVirtualEarth.html, /richfaces/virtualEarth.jsf
-insert= richMisc, Insert, /images/ico_common.gif, /images/cn_insert.gif, insert.html, jbossrichfaces/freezone/docs/tlddoc/rich/insert.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/ui/component/UIInsert.html, /richfaces/insert.jsf
-scrollableDataTable=richDataIterators, Scrollable Data Table,/images/ico_ScrollableDataTable.gif, /images/cn_ScrollableDataTable.gif, scrollableDataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/scrollableDataTable.html,jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIScrollableDataTable.html, /richfaces/scrollableDataTable.jsf
-tree= richTree, Tree, /images/ico_Tree.gif, /images/cn_tree.gif, tree.html, jbossrichfaces/freezone/docs/tlddoc/rich/tree.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UITree.html, /richfaces/tree.jsf
-treeNodesAdaptor= richTree, Tree Adaptor, /images/ico_Tree.gif, /images/cn_treeNodesAdaptor.gif, treeNodesAdaptor.html, jbossrichfaces/freezone/docs/tlddoc/rich/treeNodesAdaptor.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UITreeNodesAdaptor.html, /richfaces/treeNodesAdaptor.jsf
-recursiveTreeNodesAdaptor= richTree, Recursive Tree Adaptor,/images/ico_Tree.gif, /images/cn_recursiveTreeNodesAdaptor.gif,recursiveTreeNodesAdaptor.html, jbossrichfaces/freezone/docs/tlddoc/rich/recursiveTreeNodesAdaptor.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIRecursiveTreeNodesAdaptor.html, /richfaces/treeNodesAdaptor.jsf
-ajaxattributes= ajaxSupport, Ajax Attributes, /images/ico_common.gif, /images/cn_ajaxAttributes.gif, ArchitectureOverview.html, jbossajax4jsf/freezone/docs/tlddoc/overview-summary.html, jbossajax4jsf/freezone/docs/apidoc/overview-summary.html, /richfaces/ajaxAttributes.jsf
-actionparam= ajaxSupport, Action Parameter, /images/ico_common.gif, /images/cn_actionParameter.gif, actionparam.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/actionparam.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIActionParameter.html, /richfaces/actionparam.jsf
-commandButton= ajaxSupport, Command Button, /images/ico_common.gif, /images/cn_commandButton.gif, commandButton.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/commandButton.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxCommandButton.html, /richfaces/commandButton.jsf
-commandLink= ajaxSupport, Command Link, /images/ico_common.gif, /images/cn_commandLink.gif, commandLink.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/commandLink.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxCommandLink.html, /richfaces/commandLink.jsf
-form= ajaxSupport, Ajax Form, /images/ico_common.gif, /images/cn_ajaxForm.gif, form.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/form.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxForm.html, /richfaces/form.jsf
-support= ajaxSupport, Ajax Support, /images/ico_common.gif, /images/cn_ajaxSupport.gif, support.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/support.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxSupport.html, /richfaces/support.jsf
-jsFunction= ajaxSupport, JS Function, /images/ico_common.gif, /images/cn_jsFunction.gif, jsFunction.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/jsFunction.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxFunction.html, /richfaces/jsFunction.jsf
-poll= ajaxSupport, Poll, /images/ico_common.gif, /images/cn_poll.gif, poll.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/poll.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIPoll.html, /richfaces/poll.jsf
-push= ajaxSupport, Push, /images/ico_common.gif, /images/cn_push.gif, push.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/push.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIPush.html, /richfaces/push.jsf , new
-status= ajaxSupport, Status, /images/ico_common.gif, /images/cn_status.gif, status.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/status.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxStatus.html, /richfaces/status.jsf
-ajaxListener= ajaxSupport, Ajax Listener, /images/ico_common.gif, /images/cn_ajaxListener.gif, ajaxListener.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/ajaxListener.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/html/jsp/AjaxListenerTag.html, /richfaces/ajaxListener.jsf
-region= ajaxSupport, Ajax Region, /images/ico_common.gif, /images/cn_ajaxRegion.gif, region.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/region.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxRegion.html, /richfaces/region.jsf
-loadBundle= ajaxResources, Bundle, /images/ico_common.gif, /images/cn_Bundle.gif, loadBundle.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/loadBundle.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UILoadBundle.html, /richfaces/bundle.jsf
-loadScript= ajaxResources, Script, /images/ico_common.gif, /images/cn_Script.gif, loadScript.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/loadScript.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/LoadScriptTag.html, /richfaces/script.jsf
-loadStyle= ajaxResources, Style, /images/ico_common.gif, /images/cn_Style.gif, loadStyle.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/loadStyle.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/LoadStyleTag.html, /richfaces/style.jsf
-keepAlive= ajaxResources, Keep Alive, /images/ico_common.gif, /images/cn_KeepAlive.gif, keepAlive.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/keepAlive.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/html/jsp/KeepAliveTag.html, /richfaces/keepAlive.jsf
-include= ajaxOutput, Include, /images/ico_common.gif, /images/cn_include2.gif, include.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/include.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIInclude.html, /richfaces/include.jsf
-mediaOutput= ajaxOutput, Media Output, /images/ico_common.gif, /images/cn_MediaOutput.gif, mediaOutput.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/mediaOutput.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/resource/UIMediaOutput.html, /richfaces/mediaOutput.jsf
-outputPanel= ajaxOutput, Output Panel, /images/ico_common.gif, /images/cn_OutputPanel.gif, outputPanel.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/outputPanel.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxOutputPanel.html, /richfaces/outputPanel.jsf
-repeat= richDataIterators, Repeat, /images/ico_Repeat.gif, /images/cn_Repeat.gif, repeat.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/repeat.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/repeat/UIRepeat.html, /richfaces/repeat.jsf
-htmlCommandLink= ajaxMisc, Html Command Link, /images/ico_common.gif, /images/cn_HtmlCommandLink.gif, htmlCommandLink.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/htmlCommandLink.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/HtmlCommandLinkTag.html, /richfaces/htmlCommandLink.jsf
-log= ajaxMisc, Log, /images/ico_common.gif, /images/cn_Log.gif, log.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/log.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIAjaxLog.html, /richfaces/log.jsf
-page= ajaxMisc, Ajax Page, /images/ico_common.gif, /images/cn_AjaxPage.gif, page.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/page.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/AjaxPage.html, /richfaces/page.jsf
-portlet= ajaxMisc, Ajax Portlet, /images/ico_common.gif, /images/cn_AjaxPortlet.gif, portlet.html, jbossajax4jsf/freezone/docs/tlddoc/a4j/portlet.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIPortlet.html, /richfaces/portlet.jsf
-effect= richMisc, Effect, /images/ico_common.gif, /images/cn_Effect.gif, effect.html, jbossrichfaces/freezone/docs/tlddoc/rich/effect.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIEffect.html, /richfaces/effect.jsf
-contextMenu= richMenu, Context Menu, /images/ico_ContextMenu.gif, /images/cn_contextMenu.gif, contextMenu.html, jbossrichfaces/freezone/docs/tlddoc/rich/contextMenu.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIContextMenu.html, /richfaces/contextMenu.jsf
-componentControl=richMisc, Component Control, \t/images/ico_common.gif, \t\t/images/cn_componentControl.gif, componentControl.html, jbossrichfaces/freezone/docs/tlddoc/rich/componentControl.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIComponentControl.html, /richfaces/componentControl.jsf
-orderingList=richSelect, Ordering List, \t\t/images/ico_OrderingList.gif, \t/images/cn_orderingList.gif, orderingList.html, jbossrichfaces/freezone/docs/tlddoc/rich/orderingList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIOrderingList.html, \t\t/richfaces/orderingList.jsf
-listShuttle=richSelect, List Shuttle, \t\t/images/ico_ListShuttle.gif, /images/cn_listShuttle.gif, listShuttle.html, jbossrichfaces/freezone/docs/tlddoc/rich/listShuttle.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIListShuttle.html, \t\t/richfaces/listShuttle.jsf
-pickList=richSelect, Pick List, \t\t\t/images/ico_pickList.gif, /images/cn_PickList.gif, pickList.html, jbossrichfaces/freezone/docs/tlddoc/rich/pickList.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPickList.html, \t\t\t\t/richfaces/pickList.jsf
-progressBar=richOutputs, Progress Bar, \t\t/images/ico_progressBar.gif, /images/cn_ProgressBar.gif, progressBar.html, jbossrichfaces/freezone/docs/tlddoc/rich/progressBar.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIProgressBar.html, \t/richfaces/progressBar.jsf
-comboBox=richInputs, Combo Box, \t\t/images/ico_ComboBox.gif, \t\t/images/cn_ComboBox.gif, comboBox.html, jbossrichfaces/freezone/docs/tlddoc/rich/comboBox.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIComboBox.html, \t\t\t\t\t/richfaces/comboBox.jsf
-inplaceInput= richInputs, Inplace Input, /images/ico_InplaceInput.gif, \t\t/images/cn_InplaceInput.gif, inplaceInput.html, jbossrichfaces/freezone/docs/tlddoc/rich/inplaceInput.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIInplaceInput.html, \t\t\t\t\t/richfaces/inplaceInput.jsf
-inplaceSelect= richInputs, Inplace Select, /images/ico_InplaceSelect.gif, \t\t/images/cn_InplaceSelect.gif, inplaceSelect.html, jbossrichfaces/freezone/docs/tlddoc/rich/inplaceSelect.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIInplaceSelect.html, \t\t\t\t\t/richfaces/inplaceSelect.jsf
-sorting=richDataIterators, Table Sorting, \t/images/ico_TableSorting.gif, \t\t/images/cn_TableSorting.gif, dataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html, \t\t\t\t\t/richfaces/sortingFeature.jsf
-filtering=richDataIterators, Table Filtering, \t/images/ico_TableFiltering.gif, \t\t/images/cn_TableFiltering.gif, dataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html, \t\t\t\t\t/richfaces/filteringFeature.jsf , new
-columns =richDataIterators, \t Columns, \t\t\t/images/ico_columns.gif, \t\t/images/cn_Columns.gif, columns.html, jbossrichfaces/freezone/docs/tlddoc/rich/columns.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/taglib/ColumnsTag.html, \t\t\t\t\t/richfaces/columns.jsf
-fileUpload =richInputs, \t File Upload, \t\t/images/ico_FileUpload.gif, \t\t/images/cn_FileUpload.gif, fileUpload.html, jbossrichfaces/freezone/docs/tlddoc/rich/fileUpload.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIFileUpload.html, \t\t\t\t\t/richfaces/fileUpload.jsf
-StandardSkinning =richMisc, \t Standard Skinning, \t\t/images/ico_StandardComponentsSkinning.gif, \t\t/images/cn_StandardComponentsSkinning.gif, ArchitectureOverview.html\#StControlsSkinning, jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/standardSkinning.jsf
-plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif, \t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#PlugnSkin, jbossrichfaces/freezone/docs/tlddoc/rich/plugnskin.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/plugnskin.jsf
-hotKey=richMisc, \t Hot Key, \t\t/images/ico_HotKey.gif, \t\t/images/cn_HotKey.gif, hotKey.html, jbossrichfaces/freezone/docs/tlddoc/rich/hotKey.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIHotKey.html, \t\t\t\t\t/richfaces/hotKey.jsf
-ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/ajaxValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
-beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/beanValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/beanValidator.jsf
-graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIGraphValidator.html, \t\t\t\t\t/richfaces/graphValidator.jsf
-stateAPI=richMisc, \t State Manager API, \t\t/images/ico_StateManagerAPI.gif, \t\t/images/cn_StateManagerAPI.gif, ArchitectureOverview.html\#statemanagerapi, jbossrichfaces/freezone/docs/tlddoc/rich/graphValidator.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/stateAPI.jsf
-extendedDataTable= richDataIterators, Extended Data Table, /images/ico_ExtendedDataTable.gif, /images/cn_ExtendedDataTable.gif, extendedDataTable.html, jbossrichfaces/freezone/docs/tlddoc/rich/extendedDataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIExtendedDataTable.html, /richfaces/extendedDataTable.jsf, new
-editor=richInputs, Editor, /images/ico_Editor.gif, /images/cn_Editor.gif, editor.html, jbossrichfaces/freezone/docs/tlddoc/rich/editor.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIEditor.html, /richfaces/editor.jsf
-queue=ajaxSupport, Queue, /images/ico_common.gif, /images/cn_Queue.gif, queue.html, jbossrichfaces/freezone/docs/tlddoc/a4j/queue.html, jbossrichfaces/freezone/docs/apidoc/org/ajax4jsf/component/UIQueue.html, /richfaces/queue.jsf
-colorPicker= richInputs, Color Picker, /images/ico_ColorPicker.gif, /images/cn_ColorPicker.gif, ColorPicker.html, jbossrichfaces/freezone/docs/tlddoc/rich/colorPicker.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIColorPicker.html, /richfaces/colorPicker.jsf
-layouts=richMisc, Semantic Layouts, /images/ico_SemanticLayoutComponents.gif, /images/cn_SemanticLayoutComponents.gif, Layouts.html, jbossrichfaces/freezone/docs/tlddoc/rich/Page.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIPage.html, /richfaces/layouts.jsf
\ No newline at end of file
+panel= richOutputs, Panel, /images/ico_panel.gif, /images/cn_panel.gif, rich_panel.html, rich/panel.html, org/richfaces/component/UIPanel.html, /richfaces/panel.jsf
+separator= richOutputs, Separator, /images/ico_separator.gif, /images/cn_separator.gif, rich_separator.html, rich/separator.html, org/richfaces/component/UISeparator.html, /richfaces/separator.jsf
+spacer= richOutputs, Spacer, /images/ico_spacer.gif, /images/cn_spacer.gif, rich_spacer.html, rich/spacer.html, org/richfaces/component/UISpacer.html, /richfaces/spacer.jsf
+tabPanel= richOutputs, Tab Panel, /images/ico_tabpanel.gif, /images/cn_tabpanel.gif, rich_tabPanel.html, rich/tabPanel.html, org/richfaces/component/UITabPanel.html, /richfaces/tabPanel.jsf
+inputNumberSlider= richInputs, Input Number Slider, /images/ico_DataFilterSlider.gif, /images/cn_slider.gif, rich_inputNumberSlider.html, rich/inputNumberSlider.html, org/richfaces/component/UIInputNumberSlider.html, /richfaces/inputNumberSlider.jsf
+inputNumberSpinner= richInputs, Input Number Spinner, /images/ico_spinner.gif, /images/cn_spinner.gif, rich_inputNumberSpinner.html, rich/inputNumberSpinner.html, org/richfaces/component/UIInputNumberSpinner.html, /richfaces/inputNumberSpinner.jsf
+dataFilterSlider= richDataIterators, Data Filter Slider, /images/ico_DataFilterSlider.gif, /images/cn_DataFilterSlider.gif, rich_dataFilterSlider.html, rich/dataFilterSlider.html, org/richfaces/component/UIDataFltrSlider.html, /richfaces/dataFilterSlider.jsf
+dataTable=richDataIterators, Data Table, /images/ico_DataTable.gif, /images/cn_DataTable.gif, rich_dataTable.html, rich/dataTable.html, org/richfaces/component/UIDataTable.html, /richfaces/dataTable.jsf
+column= richDataIterators, Column, /images/ico_Column.gif, /images/cn_Column.gif, rich_column.html, rich/column.html, org/richfaces/component/UIColumn.html, /richfaces/dataTable.jsf
+columnGroup= richDataIterators, Column Group, /images/ico_ColumnGroup.gif, /images/cn_ColumnGroup.gif, rich_columnGroup.html, rich/columnGroup.html, org/richfaces/component/UIColumnGroup.html, /richfaces/dataTable.jsf
+dataDefinitionList= richDataIterators, Data Definition List, /images/ico_DataDefinitionList.gif, /images/cn_DataDefinitionList.gif, rich_dataDefinitionList.html, rich/dataDefinitionList.html, org/richfaces/component/UIDataDefinitionList.html, /richfaces/dataLists.jsf
+dataGrid= richDataIterators, Data Grid, /images/ico_DataGrid.gif, /images/cn_DataGrid.gif, rich_dataGrid.html, rich/dataGrid.html, org/richfaces/component/UIDataGrid.html, /richfaces/dataGrid.jsf
+dataList= richDataIterators, Data List, /images/ico_DataList.gif, /images/cn_DataList.gif, rich_dataList.html, rich/dataList.html, org/richfaces/component/UIDataList.html, /richfaces/dataLists.jsf
+dataOrderedList= richDataIterators, Data Ordered List, /images/ico_DataOrderedList.gif, /images/cn_DataOrderedList.gif, rich_dataOrderedList.html, rich/dataOrderedList.html, org/richfaces/taglib/DataOrderedListTag.html, /richfaces/dataLists.jsf
+gmap= richMisc, Google Map, /images/ico_GoogleMap.gif, /images/cn_GoogleMap.gif, rich_gmap.html, rich/gmap.html, org/richfaces/component/UIGmap.html, /richfaces/gmap.jsf
+jQuery= richMisc, jQuery, /images/ico_common.gif, /images/cn_jQuery.gif, rich_jQuery.html, rich/jQuery.html, org/richfaces/component/UIJQuery.html, /richfaces/jQuery.jsf
+paint2d= richOutputs, Paint2D, /images/ico_Paint2D.gif, /images/cn_Paint2D.gif, rich_paint2D.html, rich/paint2D.html, org/richfaces/component/UIPaint2D.html, /richfaces/paint2D.jsf
+toolBar= richOutputs, Tool Bar, /images/ico_ToolBar.gif, /images/cn_ToolBar.gif, rich_toolBar.html, rich/toolBar.html, org/richfaces/component/UIToolBar.html, /richfaces/toolBar.jsf
+toolTip= richOutputs, ToolTip, /images/ico_ToolTip.gif, /images/cn_ToolTip.gif, rich_toolTip.html, rich/toolTip.html, org/richfaces/component/UIToolTip.html, /richfaces/toolTip.jsf
+simpleTogglePanel= richOutputs, Simple Toggle Panel, /images/ico_SimpleTogglePanel.gif, /images/cn_SimpleTogglePanel.gif, rich_simpleTogglePanel.html, rich/simpleTogglePanel.html, org/richfaces/component/UISimpleTogglePanel.html, /richfaces/simpleTogglePanel.jsf
+dragIndicator= richDragDrop, Drag Indicator, /images/ico_DragIndicator.gif, /images/cn_DragIndicator.gif, rich_dragIndicator.html, rich/dragIndicator.html, org/richfaces/component/UIDragIndicator.html, /richfaces/dragSupport.jsf
+dragSupport= richDragDrop, Drag Support, /images/ico_DragSupport.gif, /images/cn_DragSupport.gif, rich_dragSupport.html, rich/dragSupport.html, org/richfaces/component/UIDragSupport.html, /richfaces/dragSupport.jsf
+dropSupport= richDragDrop, Drop Support, /images/ico_DropSupport.gif, /images/cn_DropSupport.gif, rich_dropSupport.html, rich/dropSupport.html, org/richfaces/component/UIDropSupport.html, /richfaces/dragSupport.jsf
+dndParam= richDragDrop, Drag-Drop Parameter, /images/ico_DropSupport.gif, /images/cn_DragDropParameter.gif, rich_dndParam.html, rich/dndParam.html, org/richfaces/component/UIDndParam.html, /richfaces/dragSupport.jsf
+panelBar= richOutputs, Panel Bar, /images/ico_PanelBar.gif, /images/cn_PanelBar.gif, rich_panelBar.html, rich/panelBar.html, org/richfaces/component/UIPanelBar.html, /richfaces/panelBar.jsf
+modalPanel= richOutputs, Modal Panel, /images/ico_ModalPanel.gif, /images/cn_ModalPanel.gif, rich_modalPanel.html, rich/modalPanel.html, org/richfaces/component/UIModalPanel.html, /richfaces/modalPanel.jsf
+togglePanel= richOutputs, Toggle Panel, /images/ico_TogglePanel.gif, /images/cn_TogglePanel.gif, rich_togglePanel.html, rich/togglePanel.html, org/richfaces/component/UITogglePanel.html, /richfaces/togglePanel.jsf
+panelMenu= richOutputs, Panel Menu, /images/ico_panelMenu.gif, /images/cn_PanelMenu.gif, rich_panelMenu.html, rich/panelMenu.html, org/richfaces/component/UIPanelMenu.html, /richfaces/panelMenu.jsf
+suggestionBox= richInputs, Suggestion Box, /images/ico_SuggestionBox.gif, /images/cn_SuggestionBox.gif, rich_suggestionbox.html, rich/suggestionbox.html, org/richfaces/component/UISuggestionBox.html, /richfaces/suggestionBox.jsf
+dataTableScroller= richDataIterators, Data Scroller, /images/ico_DataTableScroller.gif, /images/cn_DataTableScroller.gif, rich_datascroller.html, rich/datascroller.html, org/richfaces/component/UIDatascroller.html, /richfaces/dataTableScroller.jsf
+dropDownMenu= richMenu, Drop Down Menu, /images/ico_DropDownMenu.gif, /images/cn_DropDownMenu.gif, rich_dropDownMenu.html, rich/dropDownMenu.html, org/richfaces/component/UIDropDownMenu.html, /richfaces/dropDownMenu.jsf
+menuGroup= richMenu, Menu Group, /images/ico_MenuGroup.gif, /images/cn_MenuGroup.gif, rich_menuGroup.html, rich/menuGroup.html, org/richfaces/component/UIMenuGroup.html, /richfaces/dropDownMenu.jsf
+menuItem= richMenu, Menu Item, /images/ico_MenuItem.gif, /images/cn_MenuItem.gif, rich_menuItem.html, rich/menuItem.html, org/richfaces/component/UIMenuItem.html, /richfaces/dropDownMenu.jsf
+menuSeparator= richMenu, Menu Separator, /images/ico_MenuSeparator.gif, /images/cn_MenuSeparator.gif, rich_menuSeparator.html, rich/menuSeparator.html, org/richfaces/component/UIMenuSeparator.html, /richfaces/dropDownMenu.jsf
+calendar= richInputs, Calendar, /images/ico_Calendar.gif, /images/cn_Calendar.gif, rich_calendar.html, rich/calendar.html, org/richfaces/component/UICalendar.html, /richfaces/calendar.jsf
+message= richMisc, Message, /images/ico_common.gif, /images/cn_Message.gif, rich_message.html, rich/message.html, org/richfaces/component/UIRichMessage.html, /richfaces/message.jsf
+messages= richMisc, Messages, /images/ico_common.gif, /images/cn_Messages.gif, rich_messages.html, rich/messages.html, org/richfaces/component/UIRichMessages.html, /richfaces/messages.jsf
+virtualEarth= richMisc, Virtual Earth, /images/ico_VirtualEarth.gif, /images/cn_VirtualEarth.gif, rich_virtualEarth.html, rich/virtualEarth.html, org/richfaces/component/UIVirtualEarth.html, /richfaces/virtualEarth.jsf
+insert= richMisc, Insert, /images/ico_common.gif, /images/cn_insert.gif, rich_insert.html, rich/insert.html, org/richfaces/ui/component/UIInsert.html, /richfaces/insert.jsf
+scrollableDataTable=richDataIterators, Scrollable Data Table,/images/ico_ScrollableDataTable.gif, /images/cn_ScrollableDataTable.gif, rich_scrollableDataTable.html, rich/scrollableDataTable.html, org/richfaces/component/UIScrollableDataTable.html, /richfaces/scrollableDataTable.jsf
+tree= richTree, Tree, /images/ico_Tree.gif, /images/cn_tree.gif, rich_tree.html, rich/tree.html, org/richfaces/component/UITree.html, /richfaces/tree.jsf
+treeNodesAdaptor= richTree, Tree Adaptor, /images/ico_Tree.gif, /images/cn_treeNodesAdaptor.gif, rich_treeNodesAdaptor.html, rich/treeNodesAdaptor.html, org/richfaces/component/UITreeNodesAdaptor.html, /richfaces/treeNodesAdaptor.jsf
+recursiveTreeNodesAdaptor= richTree, Recursive Tree Adaptor,/images/ico_Tree.gif, /images/cn_recursiveTreeNodesAdaptor.gif,rich_recursiveTreeNodesAdaptor.html, rich/recursiveTreeNodesAdaptor.html, org/richfaces/component/UIRecursiveTreeNodesAdaptor.html, /richfaces/treeNodesAdaptor.jsf
+ajaxattributes= ajaxSupport, Ajax Attributes, /images/ico_common.gif, /images/cn_ajaxAttributes.gif, ArchitectureOverview.html, overview-summary.html, jbossajax4jsf/freezone/docs/apidoc/overview-summary.html, /richfaces/ajaxAttributes.jsf
+actionparam= ajaxSupport, Action Parameter, /images/ico_common.gif, /images/cn_actionParameter.gif, a4j_actionparam.html, a4j/actionparam.html, org/ajax4jsf/component/UIActionParameter.html, /richfaces/actionparam.jsf
+commandButton= ajaxSupport, Command Button, /images/ico_common.gif, /images/cn_commandButton.gif, a4j_commandButton.html, a4j/commandButton.html, org/ajax4jsf/component/UIAjaxCommandButton.html, /richfaces/commandButton.jsf
+commandLink= ajaxSupport, Command Link, /images/ico_common.gif, /images/cn_commandLink.gif, a4j_commandLink.html, a4j/commandLink.html, org/ajax4jsf/component/UIAjaxCommandLink.html, /richfaces/commandLink.jsf
+form= ajaxSupport, Ajax Form, /images/ico_common.gif, /images/cn_ajaxForm.gif, a4j_form.html, a4j/form.html, org/ajax4jsf/component/UIAjaxForm.html, /richfaces/form.jsf
+support= ajaxSupport, Ajax Support, /images/ico_common.gif, /images/cn_ajaxSupport.gif, a4j_support.html, a4j/support.html, org/ajax4jsf/component/UIAjaxSupport.html, /richfaces/support.jsf
+jsFunction= ajaxSupport, JS Function, /images/ico_common.gif, /images/cn_jsFunction.gif, a4j_jsFunction.html, a4j/jsFunction.html, org/ajax4jsf/component/UIAjaxFunction.html, /richfaces/jsFunction.jsf
+poll= ajaxSupport, Poll, /images/ico_common.gif, /images/cn_poll.gif, a4j_poll.html, a4j/poll.html, org/ajax4jsf/component/UIPoll.html, /richfaces/poll.jsf
+push= ajaxSupport, Push, /images/ico_common.gif, /images/cn_push.gif, a4j_push.html, a4j/push.html, org/ajax4jsf/component/UIPush.html, /richfaces/push.jsf , new
+status= ajaxSupport, Status, /images/ico_common.gif, /images/cn_status.gif, a4j_status.html, a4j/status.html, org/ajax4jsf/component/UIAjaxStatus.html, /richfaces/status.jsf
+ajaxListener= ajaxSupport, Ajax Listener, /images/ico_common.gif, /images/cn_ajaxListener.gif, a4j_ajaxListener.html, a4j/ajaxListener.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/html/jsp/AjaxListenerTag.html, /richfaces/ajaxListener.jsf
+region= ajaxSupport, Ajax Region, /images/ico_common.gif, /images/cn_ajaxRegion.gif, a4j_region.html, a4j/region.html, org/ajax4jsf/component/UIAjaxRegion.html, /richfaces/region.jsf
+loadBundle= ajaxResources, Bundle, /images/ico_common.gif, /images/cn_Bundle.gif, a4j_loadBundle.html, a4j/loadBundle.html, org/ajax4jsf/component/UILoadBundle.html, /richfaces/bundle.jsf
+loadScript= ajaxResources, Script, /images/ico_common.gif, /images/cn_Script.gif, a4j_loadScript.html, a4j/loadScript.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/LoadScriptTag.html, /richfaces/script.jsf
+loadStyle= ajaxResources, Style, /images/ico_common.gif, /images/cn_Style.gif, a4j_loadStyle.html, a4j/loadStyle.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/LoadStyleTag.html, /richfaces/style.jsf
+keepAlive= ajaxResources, Keep Alive, /images/ico_common.gif, /images/cn_KeepAlive.gif, a4j_keepAlive.html, a4j/keepAlive.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/html/jsp/KeepAliveTag.html, /richfaces/keepAlive.jsf
+include= ajaxOutput, Include, /images/ico_common.gif, /images/cn_include2.gif, a4j_include.html, a4j/include.html, org/ajax4jsf/component/UIInclude.html, /richfaces/include.jsf
+mediaOutput= ajaxOutput, Media Output, /images/ico_common.gif, /images/cn_MediaOutput.gif, a4j_mediaOutput.html, a4j/mediaOutput.html, org/ajax4jsf/component/resource/UIMediaOutput.html, /richfaces/mediaOutput.jsf
+outputPanel= ajaxOutput, Output Panel, /images/ico_common.gif, /images/cn_OutputPanel.gif, a4j_outputPanel.html, a4j/outputPanel.html, org/ajax4jsf/component/UIAjaxOutputPanel.html, /richfaces/outputPanel.jsf
+repeat= richDataIterators, Repeat, /images/ico_Repeat.gif, /images/cn_Repeat.gif, a4j_repeat.html, a4j/repeat.html, org/ajax4jsf/component/repeat/UIRepeat.html, /richfaces/repeat.jsf
+htmlCommandLink= ajaxMisc, Html Command Link, /images/ico_common.gif, /images/cn_HtmlCommandLink.gif, a4j_htmlCommandLink.html, a4j/htmlCommandLink.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/HtmlCommandLinkTag.html, /richfaces/htmlCommandLink.jsf
+log= ajaxMisc, Log, /images/ico_common.gif, /images/cn_Log.gif, a4j_log.html, a4j/log.html, org/ajax4jsf/component/UIAjaxLog.html, /richfaces/log.jsf
+page= ajaxMisc, Ajax Page, /images/ico_common.gif, /images/cn_AjaxPage.gif, a4j_page.html, a4j/page.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/taglib/ajax/AjaxPage.html, /richfaces/page.jsf
+portlet= ajaxMisc, Ajax Portlet, /images/ico_common.gif, /images/cn_AjaxPortlet.gif, a4j_portlet.html, a4j/portlet.html, org/ajax4jsf/component/UIPortlet.html, /richfaces/portlet.jsf
+effect= richMisc, Effect, /images/ico_common.gif, /images/cn_Effect.gif, rich_effect.html, rich/effect.html, org/richfaces/component/UIEffect.html, /richfaces/effect.jsf
+contextMenu= richMenu, Context Menu, /images/ico_ContextMenu.gif, /images/cn_contextMenu.gif, rich_contextMenu.html, rich/contextMenu.html, org/richfaces/component/UIContextMenu.html, /richfaces/contextMenu.jsf
+componentControl=richMisc, Component Control, \t/images/ico_common.gif, \t\t/images/cn_componentControl.gif, rich_componentControl.html, rich/componentControl.html, org/richfaces/component/UIComponentControl.html, /richfaces/componentControl.jsf
+orderingList=richSelect, Ordering List, \t\t/images/ico_OrderingList.gif, \t/images/cn_orderingList.gif, rich_orderingList.html, rich/orderingList.html, org/richfaces/component/UIOrderingList.html, \t\t/richfaces/orderingList.jsf
+listShuttle=richSelect, List Shuttle, \t\t/images/ico_ListShuttle.gif, /images/cn_listShuttle.gif, rich_listShuttle.html, rich/listShuttle.html, org/richfaces/component/UIListShuttle.html, \t\t/richfaces/listShuttle.jsf
+pickList=richSelect, Pick List, \t\t\t/images/ico_pickList.gif, /images/cn_PickList.gif, rich_pickList.html, rich/pickList.html, \t\t org/richfaces/component/UIPickList.html, \t\t\t\t/richfaces/pickList.jsf
+progressBar=richOutputs, Progress Bar, \t\t/images/ico_progressBar.gif, /images/cn_ProgressBar.gif, rich_progressBar.html, rich/progressBar.html, \t\t org/richfaces/component/UIProgressBar.html, \t/richfaces/progressBar.jsf
+comboBox=richInputs, Combo Box, \t\t/images/ico_ComboBox.gif, \t\t/images/cn_ComboBox.gif, rich_comboBox.html, rich/comboBox.html, org/richfaces/component/UIComboBox.html, \t\t\t\t\t/richfaces/comboBox.jsf
+inplaceInput= richInputs, Inplace Input, /images/ico_InplaceInput.gif, \t\t/images/cn_InplaceInput.gif, rich_inplaceInput.html, rich/inplaceInput.html, org/richfaces/component/UIInplaceInput.html, \t\t\t\t\t/richfaces/inplaceInput.jsf
+inplaceSelect= richInputs, Inplace Select, /images/ico_InplaceSelect.gif, \t\t/images/cn_InplaceSelect.gif, rich_inplaceSelect.html, rich/inplaceSelect.html, org/richfaces/component/UIInplaceSelect.html, \t\t\t\t\t/richfaces/inplaceSelect.jsf
+sorting=richDataIterators, Table Sorting, \t/images/ico_TableSorting.gif, \t\t/images/cn_TableSorting.gif, rich_dataTable.html, rich/dataTable.html, org/richfaces/component/UIDataTable.html, \t\t\t\t\t/richfaces/sortingFeature.jsf
+filtering=richDataIterators, Table Filtering, \t/images/ico_TableFiltering.gif, \t\t/images/cn_TableFiltering.gif, rich_dataTable.html, rich/dataTable.html, org/richfaces/component/UIDataTable.html, \t\t\t\t\t/richfaces/filteringFeature.jsf , new
+columns =richDataIterators, \t Columns, \t\t\t/images/ico_columns.gif, \t\t/images/cn_Columns.gif, rich_columns.html, rich/columns.html, org/richfaces/taglib/ColumnsTag.html, \t\t\t\t\t/richfaces/columns.jsf
+fileUpload =richInputs, \t File Upload, \t\t/images/ico_FileUpload.gif, \t\t/images/cn_FileUpload.gif, rich_fileUpload.html, rich/fileUpload.html, org/richfaces/component/UIFileUpload.html, \t\t\t\t\t/richfaces/fileUpload.jsf
+StandardSkinning =richMisc, \t Standard Skinning, \t\t/images/ico_StandardComponentsSkinning.gif, \t\t/images/cn_StandardComponentsSkinning.gif, ArchitectureOverview.html\#StControlsSkinning, rich/StandardSkinning.html, org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/standardSkinning.jsf
+plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif, \t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#PlugnSkin, rich/plugnskin.html, org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/plugnskin.jsf
+hotKey=richMisc, \t Hot Key, \t\t/images/ico_HotKey.gif, \t\t/images/cn_HotKey.gif, rich_hotKey.html, rich/hotKey.html, org/richfaces/component/UIHotKey.html, \t\t\t\t\t/richfaces/hotKey.jsf
+ajaxValidator=richValidators, \t Ajax Validator, \t\t/images/ico_AjaxValidator.gif, \t\t/images/cn_AjaxValidator.gif, ajaxValidator.html, rich/ajaxValidator.html, org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/ajaxValidator.jsf
+beanValidator=richValidators, \t Bean Validator, \t\t/images/ico_BeanValidator.gif, \t\t/images/cn_BeanValidator.gif, beanValidator.html, rich/beanValidator.html, org/richfaces/component/UIBeanValidator.html, \t\t\t\t\t/richfaces/beanValidator.jsf
+graphValidator=richValidators, \t Graph Validator, \t\t/images/ico_GraphValidator.gif, \t\t/images/cn_GraphValidator.gif, graphValidator.html, rich/graphValidator.html, org/richfaces/component/UIGraphValidator.html, \t\t\t\t\t/richfaces/graphValidator.jsf
+stateAPI=richMisc, \t State Manager API, \t\t/images/ico_StateManagerAPI.gif, \t\t/images/cn_StateManagerAPI.gif, ArchitectureOverview.html\#statemanagerapi, rich/graphValidator.html, org/richfaces/component/UIhotkey.html, \t\t\t\t\t/richfaces/stateAPI.jsf
+extendedDataTable=richDataIterators, Extended Data Table, /images/ico_ExtendedDataTable.gif, /images/cn_ExtendedDataTable.gif, rich_extendedDataTable.html, rich/extendedDataTable.html, org/richfaces/component/UIExtendedDataTable.html, /richfaces/extendedDataTable.jsf, new
+editor=richInputs, Editor, /images/ico_Editor.gif, /images/cn_Editor.gif, rich_editor.html, rich/editor.html, org/richfaces/component/UIEditor.html, /richfaces/editor.jsf
+queue=ajaxSupport, Queue, /images/ico_common.gif, /images/cn_Queue.gif, queue.html, a4j/queue.html, org/ajax4jsf/component/UIQueue.html, /richfaces/queue.jsf
+colorPicker= richInputs, Color Picker, /images/ico_ColorPicker.gif, /images/cn_ColorPicker.gif, rich_colorPicker.html, rich/colorPicker.html, org/richfaces/component/UIColorPicker.html, /richfaces/colorPicker.jsf
+layouts=richMisc, Semantic Layouts, /images/ico_SemanticLayoutComponents.gif, /images/cn_SemanticLayoutComponents.gif, rich_layouts.html, rich/Page.html, org/richfaces/component/UIPage.html, /richfaces/layouts.jsf
\ No newline at end of file
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/path.properties
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/path.properties 2009-08-04 10:30:01 UTC (rev 15102)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/path.properties 2009-08-04 10:30:19 UTC (rev 15103)
@@ -1,3 +1,3 @@
-dgPath=http://labs.jboss.com/file-access/default/members/jbossrichfaces/freezone/docs/devguide/en/html/
-apiPath=http://labs.jboss.com/file-access/default/members/
-tldPath=http://labs.jboss.com/file-access/default/members/
+dgPath=http\://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html/
+apiPath=http\://docs.jboss.org/richfaces/latest_3_3_X/en/apidoc/
+tldPath=http\://docs.jboss.org/richfaces/latest_3_3_X/en/tlddoc/
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/header.xhtml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/header.xhtml 2009-08-04 10:30:01 UTC (rev 15102)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/header.xhtml 2009-08-04 10:30:19 UTC (rev 15103)
@@ -5,6 +5,7 @@
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<ui:composition>
+<f:loadBundle var="path" basename="org/richfaces/demo/common/path"/>
<div class="page_brick"></div>
<table class="top_navbar" cellpadding="0" cellspacing="0" border="0">
<tbody>
@@ -19,7 +20,7 @@
<h:outputLink value="http://jboss.com/index.html?module=bb&op=viewforum&f=261">Support</h:outputLink>
</td>
<td>
- <h:outputLink value="http://labs.jboss.com/file-access/default/members/jbossrichfaces/freezone...">Developer Guide</h:outputLink>
+ <h:outputLink value="#{path.dgPath}">Developer Guide</h:outputLink>
</td>
</tr>
</tbody>
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/references.xhtml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/references.xhtml 2009-08-04 10:30:01 UTC (rev 15102)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/webapp/templates/include/references.xhtml 2009-08-04 10:30:19 UTC (rev 15103)
@@ -10,8 +10,8 @@
<strong>#{componentNavigator.currentComponent.name}</strong>
<ul>
<li><h:outputLink target="_blank" value="#{path.dgPath}#{componentNavigator.currentComponent != null ? componentNavigator.currentComponent.devGuideLocation : 'index.html'}">Developers Guide</h:outputLink></li>
- <li class="tldDoc"><h:outputLink target="_blank" value="#{path.tldPath}#{componentNavigator.currentComponent !=null ? componentNavigator.currentComponent.tldDocLocation : 'jbossrichfaces/freezone/docs/tlddoc/overview-summary.html'}">Tld Documentation</h:outputLink></li>
- <li class="uiClass"><h:outputLink target="_blank" value="#{path.apiPath}#{componentNavigator.currentComponent !=null ? componentNavigator.currentComponent.javaDocLocation : 'jbossrichfaces/freezone/docs/apidoc/overview-summary.html'}">Component Class Documentation</h:outputLink></li>
+ <li class="tldDoc"><h:outputLink target="_blank" value="#{path.tldPath}#{componentNavigator.currentComponent !=null ? componentNavigator.currentComponent.tldDocLocation : ''}">Tld Documentation</h:outputLink></li>
+ <li class="uiClass"><h:outputLink target="_blank" value="#{path.apiPath}#{componentNavigator.currentComponent !=null ? componentNavigator.currentComponent.javaDocLocation : ''}">Component Class Documentation</h:outputLink></li>
</ul>
</rich:panel>
</ui:composition>
15 years, 4 months
JBoss Rich Faces SVN: r15102 - in branches/community/3.3.X/test-applications/test-jsp: src/main/java/util/parser and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-08-04 06:30:01 -0400 (Tue, 04 Aug 2009)
New Revision: 15102
Modified:
branches/community/3.3.X/test-applications/test-jsp/pom.xml
branches/community/3.3.X/test-applications/test-jsp/src/main/java/util/parser/TLDParser.java
branches/community/3.3.X/test-applications/test-jsp/src/main/webapp/WEB-INF/web.xml
Log:
Modified: branches/community/3.3.X/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/pom.xml 2009-08-04 10:10:06 UTC (rev 15101)
+++ branches/community/3.3.X/test-applications/test-jsp/pom.xml 2009-08-04 10:30:01 UTC (rev 15102)
@@ -9,22 +9,20 @@
<groupId>org.richfaces.test-applications</groupId>
<artifactId>test-jsp</artifactId>
<packaging>war</packaging>
- <name>RichFaces Test Application (JSP + MyFaces)</name>
+ <name>RichFaces Test Application (TEST-JSP)</name>
<build>
<finalName>richfaces-test-jsp</finalName>
</build>
<dependencies>
<dependency>
- <groupId>org.apache.myfaces.tomahawk</groupId>
- <artifactId>tomahawk</artifactId>
- <version>1.1.7</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
+ <groupId>apache-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>myfaces</groupId>
+ <artifactId>myfaces-extensions</artifactId>
+ <version>1.0.9</version>
+ </dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/3.3.X/test-applications/test-jsp/src/main/java/util/parser/TLDParser.java
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/src/main/java/util/parser/TLDParser.java 2009-08-04 10:10:06 UTC (rev 15101)
+++ branches/community/3.3.X/test-applications/test-jsp/src/main/java/util/parser/TLDParser.java 2009-08-04 10:30:01 UTC (rev 15102)
@@ -198,7 +198,11 @@
int position;
try {
if ((position = getExtPath().indexOf('!')) != -1) {
- temp = getExtPath().substring("jar:file:\\".length(), position);
+ if (System.getProperty("os.name").toLowerCase().startsWith("windows")) {
+ temp = getExtPath().substring("jar:file:\\".length(), position);
+ } else {
+ temp = "/" + getExtPath().substring("jar:file:/".length(), position);
+ }
}
richfacesUI = new JarFile(temp);
} catch (IOException e) {
Modified: branches/community/3.3.X/test-applications/test-jsp/src/main/webapp/WEB-INF/web.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/src/main/webapp/WEB-INF/web.xml 2009-08-04 10:10:06 UTC (rev 15101)
+++ branches/community/3.3.X/test-applications/test-jsp/src/main/webapp/WEB-INF/web.xml 2009-08-04 10:30:01 UTC (rev 15102)
@@ -6,11 +6,11 @@
<description>RichFaces JSP Project web.xml</description>
- <context-param>
- <param-name>org.richfaces.SKIN</param-name>
+ <context-param>
+ <param-name>org.ajax4jsf.SKIN</param-name>
<param-value>#{pageContent.skin}</param-value>
</context-param>
-
+
<context-param>
<param-name>org.richfaces.CONTROL_SKINNING_CLASSES</param-name>
<param-value>enable</param-value>
@@ -25,228 +25,144 @@
<param-name>org.richfaces.CONTROL_SKINNING_LEVEL</param-name>
<param-value>extended</param-value>
</context-param>
+
+ <context-param>
+ <param-name>org.ajax4jsf.handleViewExpiredOnClient</param-name>
+ <param-value>true</param-value>
+ </context-param>
<context-param>
<param-name>org.richfaces.LoadScriptStrategy</param-name>
<param-value>ALL</param-value>
</context-param>
+
<context-param>
- <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
+ <param-name>org.ajax4jsf.xmlfilter.forcenotrf</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
+ <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+ <param-value>server</param-value>
+ </context-param>
+
+ <context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>
/WEB-INF/auto/auto-config.xml,/WEB-INF/config/pickList.xml,/WEB-INF/config/dropDownMenu.xml,/WEB-INF/config/suggestionBox.xml,/WEB-INF/config/comboBox.xml,/WEB-INF/config/extendedDataTable.xml
</param-value>
- </context-param>
+ </context-param>
+
+
<context-param>
- <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
- <param-value>server</param-value>
- </context-param>
- <context-param>
- <description>
- Only applicable if state saving method is "server" (=
- default). Defines the amount (default = 20) of the latest
- views are stored in session.
- </description>
- <param-name>
- org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION
- </param-name>
- <param-value>20</param-value>
- </context-param>
- <context-param>
- <description>
- Only applicable if state saving method is "server" (=
- default). If true (default) the state will be serialized to
- a byte stream before it is written to the session. If false
- the state will not be serialized to a byte stream.
- </description>
- <param-name>
- org.apache.myfaces.SERIALIZE_STATE_IN_SESSION
- </param-name>
- <param-value>true</param-value>
- </context-param>
- <context-param>
- <description>
- Only applicable if state saving method is "server" (=
- default) and if
- org.apache.myfaces.SERIALIZE_STATE_IN_SESSION is true (=
- default) If true (default) the serialized state will be
- compressed before it is written to the session. If false the
- state will not be compressed.
- </description>
- <param-name>
- org.apache.myfaces.COMPRESS_STATE_IN_SESSION
- </param-name>
- <param-value>true</param-value>
- </context-param>
- <context-param>
- <description>
- This parameter tells MyFaces if javascript code should be
- allowed in the rendered HTML output. If javascript is
- allowed, command_link anchors will have javascript code that
- submits the corresponding form. If javascript is not
- allowed, the state saving info and nested parameters will be
- added as url parameters. Default: "true"
- </description>
- <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
- <param-value>true</param-value>
- </context-param>
- <context-param>
- <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
+ <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name>
<param-value>false</param-value>
</context-param>
- <context-param>
- <description>
- If true, rendered HTML code will be formatted, so that it is
- "human readable". i.e. additional line separators and
- whitespace will be written, that do not influence the HTML
- code. Default: "true"
- </description>
- <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
- <param-value>true</param-value>
- </context-param>
- <context-param>
- <description>
- If true, a javascript function will be rendered that is able
- to restore the former vertical scroll on every request.
- Convenient feature if you have pages with long lists and you
- do not want the browser page to always jump to the top if
- you trigger a link or button action that stays on the same
- page. Default: "false"
- </description>
- <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
- <param-value>true</param-value>
- </context-param>
<context-param>
- <description>
- Used for encrypting view state. Only relevant for client
- side state saving. See MyFaces wiki/web site documentation
- for instructions on how to configure an application for
- diffenent encryption strengths.
- </description>
- <param-name>org.apache.myfaces.SECRET</param-name>
- <param-value>NzY1NDMyMTA=</param-value>
+ <param-name>org.ajax4jsf.COMPRESS_STYLE</param-name>
+ <param-value>false</param-value>
</context-param>
<context-param>
- <description>
- Validate managed beans, navigation rules and ensure that
- forms are not nested.
- </description>
- <param-name>org.apache.myfaces.VALIDATE</param-name>
- <param-value>true</param-value>
+ <param-name>org.richfaces.queue.global.enabled</param-name>
+ <param-value>false</param-value>
</context-param>
+ <!-- FOR JBOSS CONTAINER!!! -->
<context-param>
- <description>
- Treat readonly same as if disabled attribute was set for
- select elements.
- </description>
<param-name>
- org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS
+ org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL
</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<description>
- Use the defined class as the class which will be called when
- a resource is added to the ExtensionFilter handling. Using
- StreamingAddResource here helps with performance. If you
- want to add custom components and want to use the
- ExtensionFilter, you need to provide your custom
- implementation here.
- </description>
- <param-name>org.apache.myfaces.ADD_RESOURCE_CLASS</param-name>
- <param-value>
- org.apache.myfaces.renderkit.html.util.DefaultAddResource
- </param-value>
- </context-param>
-
- <context-param>
- <description>
- Virtual path in the URL which triggers loading of resources
- for the MyFaces extended components in the ExtensionFilter.
- </description>
- <param-name>
- org.apache.myfaces.RESOURCE_VIRTUAL_PATH
- </param-name>
- <param-value>/faces/myFacesExtensionResource</param-value>
- </context-param>
-
- <context-param>
- <description>
- Check if the extensions-filter has been properly configured.
- </description>
- <param-name>
- org.apache.myfaces.CHECK_EXTENSIONS_FILTER
- </param-name>
- <param-value>false</param-value>
- </context-param>
-
- <context-param>
- <description>
Define partial state saving as true/false.
</description>
<param-name>javax.faces.PARTIAL_STATE_SAVING_METHOD</param-name>
<param-value>false</param-value>
</context-param>
- <!-- RichFaces Filter -->
<filter>
- <display-name>RichFaces Filter</display-name>
- <filter-name>richfaces</filter-name>
+ <display-name>Ajax4jsf Filter</display-name>
+ <filter-name>ajax4jsf</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
+ <init-param>
+ <param-name>createTempFiles</param-name>
+ <param-value>true</param-value>
+ </init-param>
+ <init-param>
+ <param-name>maxRequestSize</param-name>
+ <param-value>143482880</param-value>
+ </init-param>
</filter>
<!-- Extensions Filter -->
<filter>
- <filter-name>MyFacesExtensionsFilter</filter-name>
+ <filter-name>extensionsFilter</filter-name>
<filter-class>
- org.apache.myfaces.webapp.filter.ExtensionsFilter
+ org.apache.myfaces.component.html.util.ExtensionsFilter
</filter-class>
<init-param>
- <param-name>uploadMaxFileSize</param-name>
- <param-value>20m</param-value>
<description>
Set the size limit for uploaded files. Format: 10 - 10
bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
</description>
+ <param-name>uploadMaxFileSize</param-name>
+ <param-value>100m</param-value>
</init-param>
+ <init-param>
+ <description>
+ Set the threshold size - files below this limit are
+ stored in memory, files above this limit are stored on
+ disk. Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g -
+ 1 GB
+ </description>
+ <param-name>uploadThresholdSize</param-name>
+ <param-value>100k</param-value>
+ </init-param>
+
+ <init-param>
+ <param-name>uploadRepositoryPath</param-name>
+ <param-value>/temp</param-value>
+ <description>
+ Set the path where the intermediary files will be
+ stored.
+ </description>
+ </init-param>
+
</filter>
<filter-mapping>
- <filter-name>richfaces</filter-name>
+ <filter-name>ajax4jsf</filter-name>
<servlet-name>Faces Servlet</servlet-name>
- <dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
+ <dispatcher>REQUEST</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
- <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages -->
<filter-mapping>
- <filter-name>MyFacesExtensionsFilter</filter-name>
- <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
- <servlet-name>Faces Servlet</servlet-name>
+ <filter-name>extensionsFilter</filter-name>
+ <url-pattern>*.faces</url-pattern>
</filter-mapping>
-
- <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.) -->
<filter-mapping>
- <filter-name>MyFacesExtensionsFilter</filter-name>
- <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
+ <filter-name>extensionsFilter</filter-name>
+ <url-pattern>/faces/*</url-pattern>
</filter-mapping>
+ <session-config>
+ <session-timeout>500</session-timeout>
+ </session-config>
+
<!-- Listener, to allow Jetty serving MyFaces apps -->
- <listener>
+ <!--listener>
<listener-class>
- org.apache.myfaces.webapp.StartupServletContextListener
+ org.apache.myfaces.webapp.StartupServletContextListener
</listener-class>
- </listener>
+ </listener-->
<!-- Faces Servlet -->
<servlet>
@@ -261,6 +177,10 @@
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
+ <login-config>
+ <auth-method>BASIC</auth-method>
+ </login-config>
+
<!-- Welcome files -->
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
15 years, 4 months
JBoss Rich Faces SVN: r15101 - branches/community/3.3.X/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-08-04 06:10:06 -0400 (Tue, 04 Aug 2009)
New Revision: 15101
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/resources/images/componentControl_init.png
Log:
RF-7587:rich:componentControl component description review
Modified: branches/community/3.3.X/docs/userguide/en/src/main/resources/images/componentControl_init.png
===================================================================
(Binary files differ)
15 years, 4 months
JBoss Rich Faces SVN: r15100 - branches/community/3.3.X/test-applications/jsp/src/main/webapp/Message.
by richfaces-svn-commits@lists.jboss.org
Author: adubovsky
Date: 2009-08-03 12:37:42 -0400 (Mon, 03 Aug 2009)
New Revision: 15100
Modified:
branches/community/3.3.X/test-applications/jsp/src/main/webapp/Message/Message.jsp
Log:
remove passed label attribute
Modified: branches/community/3.3.X/test-applications/jsp/src/main/webapp/Message/Message.jsp
===================================================================
--- branches/community/3.3.X/test-applications/jsp/src/main/webapp/Message/Message.jsp 2009-08-03 16:37:27 UTC (rev 15099)
+++ branches/community/3.3.X/test-applications/jsp/src/main/webapp/Message/Message.jsp 2009-08-03 16:37:42 UTC (rev 15100)
@@ -4,64 +4,73 @@
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<f:subview id="messageSubviewID">
- <rich:panel>
- <h:outputText value="Rich Message Demo:" />
+ <rich:panel>
+ <h:outputText value="Rich Message Demo:" />
- <f:verbatim>
- <br />
- </f:verbatim>
+ <f:verbatim>
+ <br />
+ </f:verbatim>
- <rich:message for="#{message.msgs}" binding="#{message.htmlMessage}" tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
- showSummary="#{message.showSummary}" passedLabel="No Error" errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
- infoLabelClass="infoLabel" warnLabelClass="fatalLabel" title="#{message.title}" id="messageID">
+ <rich:message for="#{message.msgs}" binding="#{message.htmlMessage}"
+ tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
+ showSummary="#{message.showSummary}"
+ errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
+ infoLabelClass="infoLabel" warnLabelClass="fatalLabel"
+ title="#{message.title}" id="messageID">
- <f:facet name="errorMarker">
- <h:graphicImage url="/pics/error.gif" />
- </f:facet>
+ <f:facet name="errorMarker">
+ <h:graphicImage url="/pics/error.gif" />
+ </f:facet>
- <f:facet name="fatalMarker">
- <h:graphicImage url="/pics/fatal.gif" />
- </f:facet>
+ <f:facet name="fatalMarker">
+ <h:graphicImage url="/pics/fatal.gif" />
+ </f:facet>
- <f:facet name="infoMarker">
- <h:graphicImage url="/pics/info.gif" />
- </f:facet>
+ <f:facet name="infoMarker">
+ <h:graphicImage url="/pics/info.gif" />
+ </f:facet>
- <f:facet name="warnMarker">
- <h:graphicImage url="/pics/warn.gif" />
- </f:facet>
+ <f:facet name="warnMarker">
+ <h:graphicImage url="/pics/warn.gif" />
+ </f:facet>
- <f:facet name="passedMarker">
- <h:graphicImage url="/pics/passed.gif" />
- </f:facet>
- </rich:message>
+ <f:facet name="passedMarker">
+ <h:graphicImage url="/pics/passed.gif" />
+ </f:facet>
+ </rich:message>
- <rich:separator></rich:separator>
+ <rich:separator></rich:separator>
- <h:outputText value="Rich Messages Demo" />
- <rich:messages binding="#{message.htmlMessages}" layout="#{message.layout}" id="messagesID" tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
- showSummary="#{message.showSummary}" passedLabel="No Error" errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
- infoLabelClass="infoLabel" warnLabelClass="fatalLabel" warnMarkerClass="markerWarn" infoMarkerClass="markerInfo"
- errorMarkerClass="markerError" fatalMarkerClass="markerFatal" errorClass="errorClass" fatalClass="fatalClass"
- warnClass="warnClass" infoClass="infoClass" labelClass="labelClass" styleClass="class" title="#{message.title}">
- <f:facet name="errorMarker">
- <h:graphicImage url="/pics/error.gif" />
- </f:facet>
- <f:facet name="fatalMarker">
- <h:graphicImage url="/pics/fatal.gif" />
- </f:facet>
- <f:facet name="infoMarker">
- <h:graphicImage url="/pics/info.gif" />
- </f:facet>
- <f:facet name="warnMarker">
- <h:graphicImage url="/pics/warn.gif" />
- </f:facet>
- <f:facet name="passedMarker">
- <h:graphicImage url="/pics/passed.gif" />
- </f:facet>
- <h:outputText value="#{messages.summary}">
- </h:outputText>
- </rich:messages>
- </rich:panel>
+ <h:outputText value="Rich Messages Demo" />
+ <rich:messages binding="#{message.htmlMessages}"
+ layout="#{message.layout}" id="messagesID"
+ tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
+ showSummary="#{message.showSummary}"
+ errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
+ infoLabelClass="infoLabel" warnLabelClass="fatalLabel"
+ warnMarkerClass="markerWarn" infoMarkerClass="markerInfo"
+ errorMarkerClass="markerError" fatalMarkerClass="markerFatal"
+ errorClass="errorClass" fatalClass="fatalClass" warnClass="warnClass"
+ infoClass="infoClass" labelClass="labelClass" styleClass="class"
+ title="#{message.title}">
+ <f:facet name="errorMarker">
+ <h:graphicImage url="/pics/error.gif" />
+ </f:facet>
+ <f:facet name="fatalMarker">
+ <h:graphicImage url="/pics/fatal.gif" />
+ </f:facet>
+ <f:facet name="infoMarker">
+ <h:graphicImage url="/pics/info.gif" />
+ </f:facet>
+ <f:facet name="warnMarker">
+ <h:graphicImage url="/pics/warn.gif" />
+ </f:facet>
+ <f:facet name="passedMarker">
+ <h:graphicImage url="/pics/passed.gif" />
+ </f:facet>
+ <h:outputText value="#{messages.summary}">
+ </h:outputText>
+ </rich:messages>
+ </rich:panel>
</f:subview>
15 years, 4 months
JBoss Rich Faces SVN: r15099 - branches/community/3.3.X/test-applications/facelets/src/main/webapp/Message.
by richfaces-svn-commits@lists.jboss.org
Author: adubovsky
Date: 2009-08-03 12:37:27 -0400 (Mon, 03 Aug 2009)
New Revision: 15099
Modified:
branches/community/3.3.X/test-applications/facelets/src/main/webapp/Message/Message.xhtml
Log:
remove passed label attribute
Modified: branches/community/3.3.X/test-applications/facelets/src/main/webapp/Message/Message.xhtml
===================================================================
--- branches/community/3.3.X/test-applications/facelets/src/main/webapp/Message/Message.xhtml 2009-08-03 13:23:10 UTC (rev 15098)
+++ branches/community/3.3.X/test-applications/facelets/src/main/webapp/Message/Message.xhtml 2009-08-03 16:37:27 UTC (rev 15099)
@@ -1,64 +1,77 @@
-<f:subview xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:a4j="http://richfaces.org/a4j" xmlns:h="http://java.sun.com/jsf/html" xmlns:rich="http://richfaces.org/rich" id="messageSubviewID">
- <rich:panel>
- <h:outputText value="Rich Message Demo:" />
+<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich" id="messageSubviewID">
+ <rich:panel>
+ <h:outputText value="Rich Message Demo:" />
- <f:verbatim>
- <br />
- </f:verbatim>
+ <f:verbatim>
+ <br />
+ </f:verbatim>
- <rich:message for="#{message.msg}" tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
- showSummary="#{message.showSummary}" passedLabel="No Error" errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
- infoLabelClass="infoLabel" warnLabelClass="fatalLabel" title="#{message.title}" id="messageID" binding="#{message.htmlMessage}">
+ <rich:message for="#{message.msg}" tooltip="#{message.tooltip}"
+ showDetail="#{message.showDetail}"
+ showSummary="#{message.showSummary}"
+ errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
+ infoLabelClass="infoLabel" warnLabelClass="fatalLabel"
+ title="#{message.title}" id="messageID"
+ binding="#{message.htmlMessage}">
- <f:facet name="errorMarker">
- <h:graphicImage url="/pics/error.gif" />
- </f:facet>
+ <f:facet name="errorMarker">
+ <h:graphicImage url="/pics/error.gif" />
+ </f:facet>
- <f:facet name="fatalMarker">
- <h:graphicImage url="/pics/fatal.gif" />
- </f:facet>
+ <f:facet name="fatalMarker">
+ <h:graphicImage url="/pics/fatal.gif" />
+ </f:facet>
- <f:facet name="infoMarker">
- <h:graphicImage url="/pics/info.gif" />
- </f:facet>
+ <f:facet name="infoMarker">
+ <h:graphicImage url="/pics/info.gif" />
+ </f:facet>
- <f:facet name="warnMarker">
- <h:graphicImage url="/pics/warn.gif" />
- </f:facet>
+ <f:facet name="warnMarker">
+ <h:graphicImage url="/pics/warn.gif" />
+ </f:facet>
- <f:facet name="passedMarker">
- <h:graphicImage url="/pics/passed.gif" />
- </f:facet>
- </rich:message>
+ <f:facet name="passedMarker">
+ <h:graphicImage url="/pics/passed.gif" />
+ </f:facet>
+ </rich:message>
- <rich:separator></rich:separator>
+ <rich:separator></rich:separator>
- <h:outputText value="Rich Messages Demo" />
- <rich:messages layout="#{message.layout}" tooltip="#{message.tooltip}" showDetail="#{message.showDetail}"
- showSummary="#{message.showSummary}" passedLabel="No Error" errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
- infoLabelClass="infoLabel" warnLabelClass="fatalLabel" warnMarkerClass="markerWarn" infoMarkerClass="markerInfo"
- errorMarkerClass="markerError" fatalMarkerClass="markerFatal" errorClass="errorClass" fatalClass="fatalClass"
- warnClass="warnClass" infoClass="infoClass" labelClass="labelClass" styleClass="class" title="#{message.title}"
- id="messagesID" binding="#{message.htmlMessages}">
- <f:facet name="errorMarker">
- <h:graphicImage url="/pics/error.gif" />
- </f:facet>
- <f:facet name="fatalMarker">
- <h:graphicImage url="/pics/fatal.gif" />
- </f:facet>
- <f:facet name="infoMarker">
- <h:graphicImage url="/pics/info.gif" />
- </f:facet>
- <f:facet name="warnMarker">
- <h:graphicImage url="/pics/warn.gif" />
- </f:facet>
- <f:facet name="passedMarker">
- <h:graphicImage url="/pics/passed.gif" />
- </f:facet>
- <h:outputText value="#{messages.summary}">
- </h:outputText>
- </rich:messages>
- </rich:panel>
+ <h:outputText value="Rich Messages Demo" />
+ <rich:messages layout="#{message.layout}" tooltip="#{message.tooltip}"
+ showDetail="#{message.showDetail}"
+ showSummary="#{message.showSummary}"
+ errorLabelClass="errorLabel" fatalLabelClass="warnLabel"
+ infoLabelClass="infoLabel" warnLabelClass="fatalLabel"
+ warnMarkerClass="markerWarn" infoMarkerClass="markerInfo"
+ errorMarkerClass="markerError" fatalMarkerClass="markerFatal"
+ errorClass="errorClass" fatalClass="fatalClass" warnClass="warnClass"
+ infoClass="infoClass" labelClass="labelClass" styleClass="class"
+ title="#{message.title}" id="messagesID"
+ binding="#{message.htmlMessages}">
+ <f:facet name="errorMarker">
+ <h:graphicImage url="/pics/error.gif" />
+ </f:facet>
+ <f:facet name="fatalMarker">
+ <h:graphicImage url="/pics/fatal.gif" />
+ </f:facet>
+ <f:facet name="infoMarker">
+ <h:graphicImage url="/pics/info.gif" />
+ </f:facet>
+ <f:facet name="warnMarker">
+ <h:graphicImage url="/pics/warn.gif" />
+ </f:facet>
+ <f:facet name="passedMarker">
+ <h:graphicImage url="/pics/passed.gif" />
+ </f:facet>
+ <h:outputText value="#{messages.summary}">
+ </h:outputText>
+ </rich:messages>
+ </rich:panel>
</f:subview>
15 years, 4 months
JBoss Rich Faces SVN: r15098 - Reports/3.3.2 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2009-08-03 09:23:10 -0400 (Mon, 03 Aug 2009)
New Revision: 15098
Added:
branches/community/3.3.X/test-applications/qa/Test Reports/3.3.2/RFTestReport3.3.2.CR1.xls
Log:
Added: branches/community/3.3.X/test-applications/qa/Test Reports/3.3.2/RFTestReport3.3.2.CR1.xls
===================================================================
(Binary files differ)
Property changes on: branches/community/3.3.X/test-applications/qa/Test Reports/3.3.2/RFTestReport3.3.2.CR1.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 4 months
JBoss Rich Faces SVN: r15096 - branches/community/3.3.X/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-08-03 08:12:27 -0400 (Mon, 03 Aug 2009)
New Revision: 15096
Modified:
branches/community/3.3.X/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
Log:
revert r15095, r15094
Modified: branches/community/3.3.X/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
===================================================================
--- branches/community/3.3.X/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2009-08-03 11:58:25 UTC (rev 15095)
+++ branches/community/3.3.X/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2009-08-03 12:12:27 UTC (rev 15096)
@@ -182,7 +182,7 @@
var activeElem = this.getEventTargetRow(event);
if (activeElem != null) {
- if (event.ctrlKey || event.metaKey) {
+ if (event.ctrlKey) {
this.addSelectedItem(activeElem);
this.setActiveItem(activeElem);
} else if (event.shiftKey) {
@@ -217,7 +217,7 @@
Event.stop(event);
break;
case 65 : // Ctrl + A
- if (event.ctrlKey || event.metaKey) {
+ if (event.ctrlKey) {
this.selectAll();
}
this.activeItem.item.doActive(this.getExtRowClass(this.activeItem.rowIndex), this.columnClasses);
15 years, 4 months