You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/09/23 20:52:34 UTC

svn commit: r578592 [9/15] - in /myfaces/tobago/trunk: ./ core/ core/src/main/faces-config/ core/src/main/java/org/apache/myfaces/tobago/ core/src/main/java/org/apache/myfaces/tobago/ajax/api/ core/src/main/java/org/apache/myfaces/tobago/application/ c...

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp Sun Sep 23 11:51:32 2007
@@ -1,159 +1,159 @@
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<layout:overview>
-  <jsp:body>
-    <tc:box>
-      <f:facet name="layout">
-        <tc:gridLayout
-            rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;45px;45px;fixed;fixed;fixed;200px;200px;fixed;fixed;fixed;fixed;fixed;*;fixed"/>
-      </f:facet>
-
-      <tc:messages/>
-
-      <%-- code-sniplet-start id="selectBooleanCheckbox" --%>
-      <tc:selectBooleanCheckbox label="_Letter"/>
-      <%-- code-sniplet-end id="selectBooleanCheckbox" --%>
-      <tc:selectBooleanCheckbox label="_Phone"/>
-      <tc:selectBooleanCheckbox label="_eMail"/>
-      <tc:selectBooleanCheckbox label="_Fax">
-        <f:facet name="click">
-          <tc:command/>
-        </f:facet>
-      </tc:selectBooleanCheckbox>
-
-      <tc:selectBooleanCheckbox label="Value is Boolean" value="#{selectBooleanCheckboxController.normalBoolean}"/>
-
-      <tc:selectBooleanCheckbox label="Converter for Boolean" value="#{selectBooleanCheckboxController.onOffString}">
-        <f:converter converterId="org.apache.myfaces.tobago.example.reference.OnOffConverter"/>
-      </tc:selectBooleanCheckbox>
-
-      <%-- code-sniplet-start id="selectManyListbox" --%>
-      <tx:selectManyListbox inline="true" id="LabeledInlineMultiSelect"
-                            label="Contact via: ">
-        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
-        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
-        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
-        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
-      </tx:selectManyListbox>
-      <tx:selectManyListbox inline="true"
-                            label="Contact via: ">
-        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
-        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
-        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
-        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
-        <f:facet name="click">
-          <tc:command/>
-        </f:facet>
-      </tx:selectManyListbox>
-      <%-- code-sniplet-end id="selectManyListbox" --%>
-
-      <%-- code-sniplet-start id="selectOneChoice" --%>
-      <tx:selectOneChoice inline="true" value="selectOneChoice0"
-                          label="Contact me1: ">
-        <tc:selectItem itemLabel="Letter" itemValue="letter"/>
-        <tc:selectItem itemLabel="Phone" itemValue="phone"/>
-        <tc:selectItem itemLabel="eMail" itemValue="eMail"/>
-        <tc:selectItem itemLabel="Fax" itemValue="fax"/>
-      </tx:selectOneChoice>
-
-      <%-- code-sniplet-end id="selectOneChoice" --%>
-
-      <%-- surround this with a tc:form if you get validatation or required messages from other fields.
-        With tc:form you enable partial validation and update model.
-         <tc:form>
-      --%>
-      <tx:selectOneChoice value="#{reference.vehicle}"
-                          label="Vehicle: " valueChangeListener="#{reference.valueChanged}">
-        <f:selectItems value="#{reference.selectItems}"/>
-        <f:facet name="change">
-          <tc:command action="#{reference.action}"/>
-        </f:facet>
-      </tx:selectOneChoice>
-      <tx:selectOneChoice value="#{reference.manufacturer}"
-                          label="Manufacturer: " valueChangeListener="#{reference.valueChanged}">
-        <f:selectItems value="#{reference.manufacturerSelectItems}"/>
-      </tx:selectOneChoice>
-
-      <%-- code-sniplet-start id="selectOneListbox" --%>
-      <tx:selectOneListbox id="LabeledInlineSingleSelect"
-                           label="Contact via: " height="90px">
-        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
-        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
-        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
-        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
-      </tx:selectOneListbox>
-      <tx:selectOneListbox id="LabeledInlineSingleSelect1"
-                           label="Contact via: " height="90px">
-        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
-        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
-        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
-        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
-        <f:facet name="click">
-          <tc:command/>
-        </f:facet>
-      </tx:selectOneListbox>
-      <%-- code-sniplet-end id="selectOneListbox" --%>
-
-      <tc:separator >
-        <f:facet name="label">
-          <tc:label value="Layout"/>
-        </f:facet>
-      </tc:separator>
-
-      <tc:selectOneRadio>
-        <tc:selectItem itemValue="sun" itemLabel="Sun" />
-        <tc:selectItem itemValue="moon" itemLabel="Moon" />
-        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
-      </tc:selectOneRadio>
-
-      <tc:selectOneRadio inline="true">
-        <tc:selectItem itemValue="sun" itemLabel="Sun" />
-        <tc:selectItem itemValue="moon" itemLabel="Moon" />
-        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
-      </tc:selectOneRadio>
-
-      <tc:selectManyCheckbox>
-        <tc:selectItem itemValue="sun" itemLabel="Sun" />
-        <tc:selectItem itemValue="moon" itemLabel="Moon" />
-        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
-      </tc:selectManyCheckbox>
-
-      <tc:selectManyCheckbox inline="true">
-        <tc:selectItem itemValue="sun" itemLabel="Sun" />
-        <tc:selectItem itemValue="moon" itemLabel="Moon" />
-        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
-      </tc:selectManyCheckbox>
-
-      <tc:cell/>
-
-      <tc:panel>
-        <f:facet name="layout">
-          <tc:gridLayout columns="*;fixed"   />
-        </f:facet>
-        <tc:cell/>
-        <tc:button action="submit" label="Submit" />
-      </tc:panel>
-
-    </tc:box>
-
-  </jsp:body>
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<layout:overview>
+  <jsp:body>
+    <tc:box>
+      <f:facet name="layout">
+        <tc:gridLayout
+            rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;45px;45px;fixed;fixed;fixed;200px;200px;fixed;fixed;fixed;fixed;fixed;*;fixed"/>
+      </f:facet>
+
+      <tc:messages/>
+
+      <%-- code-sniplet-start id="selectBooleanCheckbox" --%>
+      <tc:selectBooleanCheckbox label="_Letter"/>
+      <%-- code-sniplet-end id="selectBooleanCheckbox" --%>
+      <tc:selectBooleanCheckbox label="_Phone"/>
+      <tc:selectBooleanCheckbox label="_eMail"/>
+      <tc:selectBooleanCheckbox label="_Fax">
+        <f:facet name="click">
+          <tc:command/>
+        </f:facet>
+      </tc:selectBooleanCheckbox>
+
+      <tc:selectBooleanCheckbox label="Value is Boolean" value="#{selectBooleanCheckboxController.normalBoolean}"/>
+
+      <tc:selectBooleanCheckbox label="Converter for Boolean" value="#{selectBooleanCheckboxController.onOffString}">
+        <f:converter converterId="org.apache.myfaces.tobago.example.reference.OnOffConverter"/>
+      </tc:selectBooleanCheckbox>
+
+      <%-- code-sniplet-start id="selectManyListbox" --%>
+      <tx:selectManyListbox inline="true" id="LabeledInlineMultiSelect"
+                            label="Contact via: ">
+        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
+        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
+        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
+        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
+      </tx:selectManyListbox>
+      <tx:selectManyListbox inline="true"
+                            label="Contact via: ">
+        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
+        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
+        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
+        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
+        <f:facet name="click">
+          <tc:command/>
+        </f:facet>
+      </tx:selectManyListbox>
+      <%-- code-sniplet-end id="selectManyListbox" --%>
+
+      <%-- code-sniplet-start id="selectOneChoice" --%>
+      <tx:selectOneChoice inline="true" value="selectOneChoice0"
+                          label="Contact me1: ">
+        <tc:selectItem itemLabel="Letter" itemValue="letter"/>
+        <tc:selectItem itemLabel="Phone" itemValue="phone"/>
+        <tc:selectItem itemLabel="eMail" itemValue="eMail"/>
+        <tc:selectItem itemLabel="Fax" itemValue="fax"/>
+      </tx:selectOneChoice>
+
+      <%-- code-sniplet-end id="selectOneChoice" --%>
+
+      <%-- surround this with a tc:form if you get validatation or required messages from other fields.
+        With tc:form you enable partial validation and update model.
+         <tc:form>
+      --%>
+      <tx:selectOneChoice value="#{reference.vehicle}"
+                          label="Vehicle: " valueChangeListener="#{reference.valueChanged}">
+        <f:selectItems value="#{reference.selectItems}"/>
+        <f:facet name="change">
+          <tc:command action="#{reference.action}"/>
+        </f:facet>
+      </tx:selectOneChoice>
+      <tx:selectOneChoice value="#{reference.manufacturer}"
+                          label="Manufacturer: " valueChangeListener="#{reference.valueChanged}">
+        <f:selectItems value="#{reference.manufacturerSelectItems}"/>
+      </tx:selectOneChoice>
+
+      <%-- code-sniplet-start id="selectOneListbox" --%>
+      <tx:selectOneListbox id="LabeledInlineSingleSelect"
+                           label="Contact via: " height="90px">
+        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
+        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
+        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
+        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
+      </tx:selectOneListbox>
+      <tx:selectOneListbox id="LabeledInlineSingleSelect1"
+                           label="Contact via: " height="90px">
+        <f:selectItem itemValue="Phone" itemLabel="Phone"/>
+        <f:selectItem itemValue="eMail" itemLabel="eMail"/>
+        <f:selectItem itemValue="Mobile" itemLabel="Mobile"/>
+        <f:selectItem itemValue="Fax" itemLabel="Faxscimile"/>
+        <f:facet name="click">
+          <tc:command/>
+        </f:facet>
+      </tx:selectOneListbox>
+      <%-- code-sniplet-end id="selectOneListbox" --%>
+
+      <tc:separator >
+        <f:facet name="label">
+          <tc:label value="Layout"/>
+        </f:facet>
+      </tc:separator>
+
+      <tc:selectOneRadio>
+        <tc:selectItem itemValue="sun" itemLabel="Sun" />
+        <tc:selectItem itemValue="moon" itemLabel="Moon" />
+        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
+      </tc:selectOneRadio>
+
+      <tc:selectOneRadio inline="true">
+        <tc:selectItem itemValue="sun" itemLabel="Sun" />
+        <tc:selectItem itemValue="moon" itemLabel="Moon" />
+        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
+      </tc:selectOneRadio>
+
+      <tc:selectManyCheckbox>
+        <tc:selectItem itemValue="sun" itemLabel="Sun" />
+        <tc:selectItem itemValue="moon" itemLabel="Moon" />
+        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
+      </tc:selectManyCheckbox>
+
+      <tc:selectManyCheckbox inline="true">
+        <tc:selectItem itemValue="sun" itemLabel="Sun" />
+        <tc:selectItem itemValue="moon" itemLabel="Moon" />
+        <tc:selectItem itemValue="stars" itemLabel="Stars" itemDisabled="true" />
+      </tc:selectManyCheckbox>
+
+      <tc:cell/>
+
+      <tc:panel>
+        <f:facet name="layout">
+          <tc:gridLayout columns="*;fixed"   />
+        </f:facet>
+        <tc:cell/>
+        <tc:button action="submit" label="Submit" />
+      </tc:panel>
+
+    </tc:box>
+
+  </jsp:body>
 </layout:overview>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/select.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/separator.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/separator.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp Sun Sep 23 11:51:32 2007
@@ -1,85 +1,85 @@
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-<%@ page import="org.apache.myfaces.tobago.example.reference.SimpleBean" %>
-
-<%
-  SimpleBean[] simpleList = (SimpleBean[]) session.getAttribute("simpleList");
-  System.out.println("1" + session.getAttribute("simpleList"));
-  if (simpleList == null) {
-    simpleList = new SimpleBean[]{
-        new SimpleBean(1, "One"),
-        new SimpleBean(2, "Two"),
-        new SimpleBean(3, "Three"),
-        new SimpleBean(4, "Four"),
-        new SimpleBean(5000000, "Five Million")};
-  }
-  session.setAttribute("simpleList", simpleList);
-  System.out.println("2" + session.getAttribute("simpleList"));
-%>
-
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<layout:overview>
-    <jsp:body>
-      <tc:box label="Sheet">
-        <f:facet name="layout">
-          <tc:gridLayout rows="fixed;*;fixed;fixed;fixed"/>
-        </f:facet>
-
-        <tc:messages/>
-
-        <tc:sheet value="#{simpleList}" columns="fixed;*" var="bean">
-          <tc:columnSelector />
-          <tc:column label="Number">
-            <tc:in value="#{bean.value}" required="true"/>
-          </tc:column>
-        </tc:sheet>
-
-        <tc:separator >
-          <f:facet name="label">
-            <tc:label value="Layout: Sheet with 'fixed' height"/>
-          </f:facet>
-        </tc:separator>
-
-        <tc:sheet value="#{simpleList}" columns="*;*;*" var="bean" rows="5">
-          <tc:column label="Cipher">
-            <tc:out value="#{bean.number}"/>
-          </tc:column>
-          <tc:column label="Name">
-            <tc:out value="#{bean.value}"/>
-          </tc:column>
-          <tc:column label="Date">
-            <tc:out value="#{bean.date}">
-              <f:convertDateTime dateStyle="medium" type="date"/>
-            </tc:out>
-          </tc:column>
-        </tc:sheet>
-
-        <tc:panel>
-          <f:facet name="layout">
-            <tc:gridLayout columns="*;fixed"   />
-          </f:facet>
-          <tc:cell/>
-          <tc:button action="submit" label="Submit" />
-        </tc:panel>
-
-      </tc:box>
-
-    </jsp:body>
-</layout:overview>
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ page import="org.apache.myfaces.tobago.example.reference.SimpleBean" %>
+
+<%
+  SimpleBean[] simpleList = (SimpleBean[]) session.getAttribute("simpleList");
+  System.out.println("1" + session.getAttribute("simpleList"));
+  if (simpleList == null) {
+    simpleList = new SimpleBean[]{
+        new SimpleBean(1, "One"),
+        new SimpleBean(2, "Two"),
+        new SimpleBean(3, "Three"),
+        new SimpleBean(4, "Four"),
+        new SimpleBean(5000000, "Five Million")};
+  }
+  session.setAttribute("simpleList", simpleList);
+  System.out.println("2" + session.getAttribute("simpleList"));
+%>
+
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<layout:overview>
+    <jsp:body>
+      <tc:box label="Sheet">
+        <f:facet name="layout">
+          <tc:gridLayout rows="fixed;*;fixed;fixed;fixed"/>
+        </f:facet>
+
+        <tc:messages/>
+
+        <tc:sheet value="#{simpleList}" columns="fixed;*" var="bean">
+          <tc:columnSelector />
+          <tc:column label="Number">
+            <tc:in value="#{bean.value}" required="true"/>
+          </tc:column>
+        </tc:sheet>
+
+        <tc:separator >
+          <f:facet name="label">
+            <tc:label value="Layout: Sheet with 'fixed' height"/>
+          </f:facet>
+        </tc:separator>
+
+        <tc:sheet value="#{simpleList}" columns="*;*;*" var="bean" rows="5">
+          <tc:column label="Cipher">
+            <tc:out value="#{bean.number}"/>
+          </tc:column>
+          <tc:column label="Name">
+            <tc:out value="#{bean.value}"/>
+          </tc:column>
+          <tc:column label="Date">
+            <tc:out value="#{bean.date}">
+              <f:convertDateTime dateStyle="medium" type="date"/>
+            </tc:out>
+          </tc:column>
+        </tc:sheet>
+
+        <tc:panel>
+          <f:facet name="layout">
+            <tc:gridLayout columns="*;fixed"   />
+          </f:facet>
+          <tc:cell/>
+          <tc:button action="submit" label="Submit" />
+        </tc:panel>
+
+      </tc:box>
+
+    </jsp:body>
+</layout:overview>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/sheet.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp Sun Sep 23 11:51:32 2007
@@ -1,77 +1,77 @@
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<layout:overview>
-  <jsp:body>
-    <tc:box label="Tab">
-      <f:facet name="layout">
-        <tc:gridLayout/>
-      </f:facet>
-      <tc:tabGroup switchType="reloadTab" immediate="true">
-        <tc:tab label="Tab 1">
-          <tc:panel>
-            <f:facet name="layout">
-              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
-            </f:facet>
-            <tc:cell/>
-            <tx:in label="label 1" required="true"/>
-            <tx:in label="label 2"/>
-            <tc:cell/>
-          </tc:panel>
-        </tc:tab>
-        <tc:tab label="Tab 2" rendered="true">
-          <tc:panel>
-            <f:facet name="layout">
-              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
-            </f:facet>
-            <tc:cell/>
-            <tx:in label="label 3"/>
-            <tx:in label="label 4"/>
-            <tc:cell/>
-          </tc:panel>
-        </tc:tab>
-        <tc:tab label="Tab 3">
-          <tc:panel>
-            <f:facet name="layout">
-              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
-            </f:facet>
-            <tc:cell/>
-            <tx:in label="label 5"/>
-            <tx:in label="label 6"/>
-            <tc:cell/>
-          </tc:panel>
-        </tc:tab>
-        <tc:tab label="Tab 4">
-          <tc:panel>
-            <f:facet name="layout">
-              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
-            </f:facet>
-            <tc:cell/>
-            <tx:in label="label 7"/>
-            <tx:in label="label 8"/>
-            <tc:cell/>
-          </tc:panel>
-        </tc:tab>
-
-      </tc:tabGroup>
-    </tc:box>
-  </jsp:body>
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<layout:overview>
+  <jsp:body>
+    <tc:box label="Tab">
+      <f:facet name="layout">
+        <tc:gridLayout/>
+      </f:facet>
+      <tc:tabGroup switchType="reloadTab" immediate="true">
+        <tc:tab label="Tab 1">
+          <tc:panel>
+            <f:facet name="layout">
+              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
+            </f:facet>
+            <tc:cell/>
+            <tx:in label="label 1" required="true"/>
+            <tx:in label="label 2"/>
+            <tc:cell/>
+          </tc:panel>
+        </tc:tab>
+        <tc:tab label="Tab 2" rendered="true">
+          <tc:panel>
+            <f:facet name="layout">
+              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
+            </f:facet>
+            <tc:cell/>
+            <tx:in label="label 3"/>
+            <tx:in label="label 4"/>
+            <tc:cell/>
+          </tc:panel>
+        </tc:tab>
+        <tc:tab label="Tab 3">
+          <tc:panel>
+            <f:facet name="layout">
+              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
+            </f:facet>
+            <tc:cell/>
+            <tx:in label="label 5"/>
+            <tx:in label="label 6"/>
+            <tc:cell/>
+          </tc:panel>
+        </tc:tab>
+        <tc:tab label="Tab 4">
+          <tc:panel>
+            <f:facet name="layout">
+              <tc:gridLayout rows="1*;fixed;fixed;1*"/>
+            </f:facet>
+            <tc:cell/>
+            <tx:in label="label 7"/>
+            <tx:in label="label 8"/>
+            <tc:cell/>
+          </tc:panel>
+        </tc:tab>
+
+      </tc:tabGroup>
+    </tc:box>
+  </jsp:body>
 </layout:overview>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tab.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp Sun Sep 23 11:51:32 2007
@@ -1,81 +1,81 @@
-<%@ page import="java.util.Date" %>
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<%
-  request.setAttribute("now", new Date(100000000000L));
-%>
-
-<layout:overview>
-  <jsp:body>
-      <tc:box label="Time Specific Controls">
-        <f:facet name="layout">
-          <tc:gridLayout columns="400px;*" rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;250px;*"/>
-        </f:facet>
-        <%-- code-sniplet-start id="date" --%>
-        <tx:date label="Date" value="#{now}">
-          <f:convertDateTime pattern="dd.MM.yyyy"/>
-        </tx:date>
-        <%-- code-sniplet-end id="date" --%>
-        <tc:cell/>
-
-        <%-- code-sniplet-start id="dateTime" --%>
-        <tx:date label="Date/Time" value="#{now}">
-          <f:convertDateTime pattern="dd.MM.yyyy HH:mm"/>
-        </tx:date>
-        <%-- code-sniplet-end id="dateTime" --%>
-        <tc:cell/>
-
-        <tx:date label="Date (focus)" focus="true">
-          <f:convertDateTime pattern="dd.MM.yyyy"/>
-        </tx:date>
-        <tc:cell/>
-
-        <tx:date label="Short style" value="#{now}">
-          <f:convertDateTime dateStyle="short" type="both" timeStyle="short"/>
-        </tx:date>
-        <tc:cell/>
-
-        <tx:date label="Medium Style" value="#{now}">
-          <f:convertDateTime dateStyle="medium" type="both" timeStyle="medium" />
-        </tx:date>
-        <tc:cell/>
-
-        <tx:date label="Long Style" value="#{now}">
-          <f:convertDateTime dateStyle="long" type="both" timeStyle="long" />
-        </tx:date>
-        <tc:cell/>
-
-        <tx:date label="Full Style" value="#{now}">
-          <f:convertDateTime dateStyle="full" type="both" timeStyle="full" />
-        </tx:date>
-        <tc:cell/>
-
-        <%-- code-sniplet-start id="calendar" --%>
-        <tc:calendar />
-        <%-- code-sniplet-end id="calendar" --%>
-        <tc:cell/>
-
-        <tc:cell spanX="2"/>
-
-      </tc:box>
-  </jsp:body>
+<%@ page import="java.util.Date" %>
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<%
+  request.setAttribute("now", new Date(100000000000L));
+%>
+
+<layout:overview>
+  <jsp:body>
+      <tc:box label="Time Specific Controls">
+        <f:facet name="layout">
+          <tc:gridLayout columns="400px;*" rows="fixed;fixed;fixed;fixed;fixed;fixed;fixed;250px;*"/>
+        </f:facet>
+        <%-- code-sniplet-start id="date" --%>
+        <tx:date label="Date" value="#{now}">
+          <f:convertDateTime pattern="dd.MM.yyyy"/>
+        </tx:date>
+        <%-- code-sniplet-end id="date" --%>
+        <tc:cell/>
+
+        <%-- code-sniplet-start id="dateTime" --%>
+        <tx:date label="Date/Time" value="#{now}">
+          <f:convertDateTime pattern="dd.MM.yyyy HH:mm"/>
+        </tx:date>
+        <%-- code-sniplet-end id="dateTime" --%>
+        <tc:cell/>
+
+        <tx:date label="Date (focus)" focus="true">
+          <f:convertDateTime pattern="dd.MM.yyyy"/>
+        </tx:date>
+        <tc:cell/>
+
+        <tx:date label="Short style" value="#{now}">
+          <f:convertDateTime dateStyle="short" type="both" timeStyle="short"/>
+        </tx:date>
+        <tc:cell/>
+
+        <tx:date label="Medium Style" value="#{now}">
+          <f:convertDateTime dateStyle="medium" type="both" timeStyle="medium" />
+        </tx:date>
+        <tc:cell/>
+
+        <tx:date label="Long Style" value="#{now}">
+          <f:convertDateTime dateStyle="long" type="both" timeStyle="long" />
+        </tx:date>
+        <tc:cell/>
+
+        <tx:date label="Full Style" value="#{now}">
+          <f:convertDateTime dateStyle="full" type="both" timeStyle="full" />
+        </tx:date>
+        <tc:cell/>
+
+        <%-- code-sniplet-start id="calendar" --%>
+        <tc:calendar />
+        <%-- code-sniplet-end id="calendar" --%>
+        <tc:cell/>
+
+        <tc:cell spanX="2"/>
+
+      </tc:box>
+  </jsp:body>
 </layout:overview>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/time.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tool.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/tool.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeCommand.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeCommand.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp Sun Sep 23 11:51:32 2007
@@ -1,70 +1,70 @@
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-
-<%@ page import="javax.swing.tree.DefaultMutableTreeNode" %>
-<%@ page import="org.apache.myfaces.tobago.model.TreeState" %>
-
-<%
-  DefaultMutableTreeNode tree;
-  TreeState treeState;
-
-  tree = new DefaultMutableTreeNode("Category");
-  tree.insert(new DefaultMutableTreeNode("Sports"), 0);
-  tree.insert(new DefaultMutableTreeNode("Movies"), 0);
-  DefaultMutableTreeNode music = new DefaultMutableTreeNode("Music");
-  tree.insert(music, 0);
-  tree.insert(new DefaultMutableTreeNode("Games"), 0);
-  DefaultMutableTreeNode temp = new DefaultMutableTreeNode("Science");
-  temp.insert(
-      new DefaultMutableTreeNode("Geography"), 0);
-  temp.insert(
-      new DefaultMutableTreeNode("Mathematics"), 0);
-  DefaultMutableTreeNode temp2 = new DefaultMutableTreeNode("Astronomy");
-  temp2.insert(new DefaultMutableTreeNode("Education"), 0);
-  temp2.insert(new DefaultMutableTreeNode("Pictures"), 0);
-  temp.insert(temp2, 2);
-  tree.insert(temp, 2);
-  treeState = new TreeState();
-  treeState.addExpandState(tree);
-  treeState.addExpandState(temp);
-  treeState.addSelection(temp2);
-  treeState.setMarker(music);
-  session.setAttribute("tree", tree);
-  session.setAttribute("treeState", treeState);
-%>
-
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<layout:overview>
-    <jsp:body>
-      <tc:box label="Tree List Box">
-        <f:facet name="layout">
-          <tc:gridLayout rows="300px;1*" />
-        </f:facet>
-        <tc:treeListbox state="#{treeState}" value="#{tree}"
-            idReference="userObject"
-            nameReference="userObject"/>
-
-        <tc:cell/>
-
-      </tc:box>
-
-    </jsp:body>
-</layout:overview>
-
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+
+<%@ page import="javax.swing.tree.DefaultMutableTreeNode" %>
+<%@ page import="org.apache.myfaces.tobago.model.TreeState" %>
+
+<%
+  DefaultMutableTreeNode tree;
+  TreeState treeState;
+
+  tree = new DefaultMutableTreeNode("Category");
+  tree.insert(new DefaultMutableTreeNode("Sports"), 0);
+  tree.insert(new DefaultMutableTreeNode("Movies"), 0);
+  DefaultMutableTreeNode music = new DefaultMutableTreeNode("Music");
+  tree.insert(music, 0);
+  tree.insert(new DefaultMutableTreeNode("Games"), 0);
+  DefaultMutableTreeNode temp = new DefaultMutableTreeNode("Science");
+  temp.insert(
+      new DefaultMutableTreeNode("Geography"), 0);
+  temp.insert(
+      new DefaultMutableTreeNode("Mathematics"), 0);
+  DefaultMutableTreeNode temp2 = new DefaultMutableTreeNode("Astronomy");
+  temp2.insert(new DefaultMutableTreeNode("Education"), 0);
+  temp2.insert(new DefaultMutableTreeNode("Pictures"), 0);
+  temp.insert(temp2, 2);
+  tree.insert(temp, 2);
+  treeState = new TreeState();
+  treeState.addExpandState(tree);
+  treeState.addExpandState(temp);
+  treeState.addSelection(temp2);
+  treeState.setMarker(music);
+  session.setAttribute("tree", tree);
+  session.setAttribute("treeState", treeState);
+%>
+
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<layout:overview>
+    <jsp:body>
+      <tc:box label="Tree List Box">
+        <f:facet name="layout">
+          <tc:gridLayout rows="300px;1*" />
+        </f:facet>
+        <tc:treeListbox state="#{treeState}" value="#{tree}"
+            idReference="userObject"
+            nameReference="userObject"/>
+
+        <tc:cell/>
+
+      </tc:box>
+
+    </jsp:body>
+</layout:overview>
+

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/treeListBox.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp Sun Sep 23 11:51:32 2007
@@ -1,37 +1,37 @@
-<%--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
---%>
-<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
-<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
-<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
-
-<layout:overview>
-  <jsp:body>
-    <tc:box label="File Upload">
-      <f:facet name="layout">
-        <tc:gridLayout columns="400px;1*" rows="fixed;1*" />
-      </f:facet>
-<%-- code-sniplet-start id="file" --%>
-      <tx:file label="Upload file:" />
-<%-- code-sniplet-end id="file" --%>
-      <tc:cell/>
-
-      <tc:cell/>
-      <tc:cell/>
-    </tc:box>
-  </jsp:body>
+<%--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+--%>
+<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
+<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
+<%@ taglib tagdir="/WEB-INF/tags/layout" prefix="layout" %>
+
+<layout:overview>
+  <jsp:body>
+    <tc:box label="File Upload">
+      <f:facet name="layout">
+        <tc:gridLayout columns="400px;1*" rows="fixed;1*" />
+      </f:facet>
+<%-- code-sniplet-start id="file" --%>
+      <tx:file label="Upload file:" />
+<%-- code-sniplet-end id="file" --%>
+      <tc:cell/>
+
+      <tc:cell/>
+      <tc:cell/>
+    </tc:box>
+  </jsp:body>
 </layout:overview>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/reference/upload.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/server-info.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/server-info.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/scarborough/standard/style/tobago-demo.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/scarborough/standard/style/tobago-demo.css
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/speyside/standard/style/tobago-demo.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/speyside/standard/style/tobago-demo.css
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml (original)
+++ myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml Sun Sep 23 11:51:32 2007
@@ -1,354 +1,354 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
--->
-
-<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
-
-<properties>
- <entry key="tobago_version">MyFaces Tobago 1.0.7</entry>
- <entry key="tobago_url">http://myfaces.apache.org/tobago</entry>
-
-
-<entry key="notTranslated">Sorry, not completely translated yet.</entry>
-<entry key="pageTitle">Tobago Demo</entry>
-
-<!-- menu -->
-  <entry key="menu_navigate">_Navigation</entry>
-  <entry key="menu_config">_Configuration</entry>
-  <entry key="menu_help">_Help</entry>
-  <entry key="menu_themes">_Themes</entry>
-  <entry key="menu_locale">_Locale</entry>
-  <entry key="menu_debug">Debug Mode</entry>
-  <entry key="menu_about">About</entry>
-  <entry key="menu_showLog">Show log Panel</entry>
-
-<!-- navigate -->
-  <entry key="overview">Overview</entry>
-  <entry key="intro">Intro</entry>
-  <entry key="basic">Basic Controls</entry>
-  <entry key="sheet">Sheet Control</entry>
-  <entry key="tree">Tree Control</entry>
-  <entry key="tab">Tab Control</entry>
-  <entry key="toolbar">Toolbar</entry>
-  <entry key="validation">Validation</entry>
-  <entry key="form">Forms</entry>
-  <entry key="themes">Themes</entry>
-  <entry key="browser">Browser</entry>
-  <entry key="locale">Locale</entry>
-  <entry key="layout">Layout</entry>
-
-  <entry key="bestPractice">Best Practice</entry>
-  <entry key="error">Error Handling</entry>
-  <entry key="theme">Themes</entry>
-  <entry key="transition">Transition</entry>
-  <entry key="nonFacesResponse">Non Faces Resp.</entry>
-
-  <entry key="reference_intro">Ref. (under constr.)</entry>
-  <entry key="reference_command">Command</entry>
-  <entry key="reference_container">Container</entry>
-  <entry key="reference_input">Input</entry>
-  <entry key="reference_menu">Menu</entry>
-  <entry key="reference_output">Output</entry>
-  <entry key="reference_object">Object</entry>
-  <entry key="reference_popup">Popup</entry>
-  <entry key="reference_progress">Progress</entry>
-  <entry key="reference_select">Select</entry>
-  <entry key="reference_sheet">Sheet</entry>
-  <entry key="reference_tab">Tab</entry>
-  <entry key="reference_time">Time</entry>
-  <entry key="reference_tool">Tool Bar</entry>
-  <entry key="reference_upload">Upload</entry>
-
-  <entry key="submit">Submit</entry>
-  <entry key="cancel">Cancel</entry>
-
-  <entry key="footer_previous">Prev</entry>
-  <entry key="footer_next">Next</entry>
-  <entry key="footer_viewSource">View Source</entry>
-
-
-<!--  intro -->
-<entry key="intro_text">&lt;p&gt;Tobago is a user interface framework for developing webapplications.
-  The technical basis of the framework is JavaServer Faces. The main core represents a theme oriented
-  JSF Render Kit.&lt;/p&gt;
-  &lt;p&gt;&lt;b&gt;Basic Controls&lt;/b&gt;&lt;br/&gt;
-  Tobago provides all standard controls of HTML like inputs, textareas, radiobuttons, checkboxes and buttons.
-  Additionally Tobago provides you with complex controls, which are not natively supportet by simple HTML,
-  including sheets, trees and tabs.&lt;/p&gt;
-  &lt;p&gt;&lt;b&gt;Validation&lt;/b&gt;&lt;br/&gt;
-  The main goal of Tobago is the development of applications which are interactive from the users point of view.
-  Tobago makes it easy to validate input and helps the user to enter correct data.&lt;/p&gt;
-  &lt;p&gt;&lt;b&gt;Layout&lt;/b&gt;&lt;br/&gt;
-  Tobago provides a sophisticated layout managing mechanism which can be seen as a mixture of classic HTML table
-  layout and Swing Gridbag layout.&lt;/p&gt;
-  &lt;p&gt;&lt;b&gt;Additional Features&lt;/b&gt;&lt;br/&gt;
-  Themes, Browser, Internationalisation.&lt;/p&gt;
-</entry>
-
-<!--  basicControlls -->
-  <entry key="basic_sampleInputTitle">Basic Input Examples</entry>
-  <entry key="basic_sampleSelectTitle">Basic Select Examples</entry>
-  <entry key="basic_sampleLinkTitle">Basic Controls Examples</entry>
-  <entry key="basic_itemUnknown">none</entry>
-  <entry key="basic_itemMr">Mr.</entry>
-  <entry key="basic_itemMrs">Mrs.</entry>
-  <entry key="basic_textboxLabel">Inputfield</entry>
-  <entry key="basic_dateLabel">Date</entry>
-  <entry key="basic_timeLabel">Time</entry>
-  <entry key="basic_textareaLabel">Textarea</entry>
-  <entry key="basic_linkAction">Click Link</entry>
-  <entry key="basic_buttonAction">Click Button</entry>
-  <entry key="basic_lastActionLabel">Last Click</entry>
-  <entry key="basic_text_input">Input controls for different kinds of text: single-line, multiline, formated.</entry>
-  <entry key="basic_text_select">Select controls allow input of one or multiple options.</entry>
-  <entry key="basic_text_action">Control elements for site navigation and to execute actions.</entry>
-
-
-<!--  sheet -->
-<entry key="sheet_sampleTitle">Sheet Example</entry>
-<entry key="sheet_text">The sheet control is a simple solution for displaying table based
-  information. The essential features are:
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Paging: A defined range of data is displayed.
-      Navigation is done with arrow buttons.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Sorting: By clicking a column header the
-    appropriate column is sorted.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Inline-Editing: If needed, the values of
-    cell contents can be directly changed or inserted by the user.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;The column width can be resized by simply
-    drag and drop the column border.
-    &lt;/ul&gt;
-</entry>
-<entry key="sheet_configTip">Click here to edit display attributes of the sheet.</entry>
-<entry key="sheet_configTitle">Sheet configuration</entry>
-
-<!--  tree -->
-<entry key="tree_sampleTitle">Tree Example's</entry>
-<entry key="tree_text">The tree control displays a tree which is generated from application data. The key features are:
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Attributes control the rendering of the tree.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;The possibility to define the tree as "single" or "multiselect", i.e. select one or multiple nodes of the tree.
-    &lt;li style="line-height: 130%;"&gt;Editing mode for simple handling of tree structures inside the application.&lt;/li&gt;
-    &lt;/ul&gt;
-    Furthermore there is a TreeListbox Control, which can be described as a vertical tree. This is handy for categorization actions.
-  </entry>
-<entry key="treeShowIcons">show icons</entry>
-<entry key="treeShowRoot">show root node</entry>
-<entry key="treeShowJunctions">show junction tree</entry>
-<entry key="treeShowRootJunction">show first junction</entry>
-<entry key="treeMultiselect">selectable</entry>
-<entry key="treeMutable">mutable</entry>
-<entry key="treeLabel">Tre_e</entry>
-<entry key="treeListboxLabel">Listbo_x</entry>
-
-
-<entry key="none">Not selectable</entry>
-<entry key="single">Single selection</entry>
-<entry key="singleLeafOnly">Single selection, Leafs only</entry>
-<entry key="multi">Multi selection</entry>
-<entry key="multiLeafOnly">Multi selection, Leafs only</entry>
-<entry key="siblingLeafOnly">Multi selection, Leafs on same level only</entry>
-
-
-
-<!--  tab -->
-<entry key="tab_sampleTitle">Tab Example</entry>
-<entry key="tab_text">The tab control provides so called tab panels.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Control can take place on server- or clientside.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Tab controls can be nested.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Inside each tab control any other controls   can be used.&lt;/li&gt;
-    &lt;/ul&gt;
-  </entry>
-<entry key="tabClientSide">Client side tabbing</entry>
-<entry key="tabServerSide">Server side tabbing</entry>
-<entry key="tabPlanet">Data of the _Planets</entry>
-<entry key="tabInsolar">In the _Solarsystem</entry>
-<entry key="tabMoons">_Moons</entry>
-
-
-<!--  solar -->
-<entry key="solarPlanetDiameter">Diameter</entry>
-<entry key="solarPlanetMass">Mass</entry>
-<entry key="solarPlanetSunDistance">Distance of the Sun</entry>
-<entry key="solarPlanetTimeOfCirculation">Time of Circulation</entry>
-<entry key="solarArrayName">Name</entry>
-<entry key="solarArrayNumber">#</entry>
-<entry key="solarArrayNumberTip">Number</entry>
-<entry key="solarArrayOrbit">Orbits</entry>
-<entry key="solarArrayDistance">Distance</entry>
-<entry key="solarArrayPeriod">Period</entry>
-<entry key="solarArrayPopulation">Population</entry>
-<entry key="solarPagingSheet">Sheet with Paging</entry>
-
-
-<!--  toolbar -->
-<entry key="toolbar_popupButtonAction">Open popup</entry>
-<entry key="toolbar_closePopupAction">Close popup window</entry>
-<entry key="toolbar_popupText">To close this popup window click close button.</entry>
-<entry key="toolbar_dropDownAction">DropDown</entry>
-<entry key="toolbar_buttonAction">Text Button</entry>
-<entry key="toolbar_imageButtonAction">Image Button</entry>
-<entry key="toolbar_sampleTitle">Toolbar Example</entry>
-<entry key="toolbar_text1">Toolbars can be used for context sensitive actions inside box controls.
-&lt;ul style="margin-top: 2px;"&gt;
-&lt;li style="line-height: 130%;"&gt;Toolbars can consist of images, text or both.&lt;/li&gt;
-&lt;li style="line-height: 130%;"&gt;Toolbars can be completly integrated into a box header.&lt;/li&gt;
-&lt;li style="line-height: 130%;"&gt;Actions can be displayed as drop down menues.&lt;/li&gt;
-&lt;/ul&gt;
-  </entry>
-<entry key="toolbar_sampleTitle2">Menubar Example</entry>
-<entry key="toolbar_text2">The menubar contains actions which are available application wide.
-&lt;ul style="margin-top: 2px;"&gt;
-  &lt;li style="line-height: 130%;"&gt;A menu is multilayer capable.&lt;/li&gt;
-  &lt;li style="line-height: 130%;"&gt;Menu actions can be executed on server- or clientside.&lt;/li&gt;
-  &lt;li style="line-height: 130%;"&gt;The actual status of menu entries can be displayed.&lt;/li&gt;
-&lt;/ul&gt;
-  </entry>
-<entry key="toolbar_linkClickme">click me</entry>
-<entry key="toolbar_selectSingleselect">Single selection</entry>
-<entry key="right">right</entry>
-<entry key="bottom">bottom</entry>
-<entry key="off">off</entry>
-<entry key="small">small</entry>
-<entry key="big">big</entry>
-
-
-<!--  validation -->
-<entry key="validation_sampleTitle">Validation Example</entry>
-<entry key="validation_description">Description</entry>
-<entry key="validation_number">Number</entry>
-<entry key="validation_price">Price</entry>
-<entry key="validation_custom">Custom Validator</entry>  
-<entry key="validation_submit">Submit</entry>
-
-<entry key="validation_text">Tobago provides easy to use possibilities for validation of user input.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Syntactic and semantic validation is available.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Error messages can be positioned anywhere in the   user interface.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Input elements, which are affected by the   validation can be highlighted.&lt;/li&gt;
-    &lt;/ul&gt;
-</entry>
-
-<!--  form -->
-<entry key="form_outTitle">Outer form</entry>
-<entry key="form_text1">&lt;li style="line-height: 130%;"&gt;Values in the first form are being
-  stored temporarily by submitting the second form while the value in the second
-  form is written into the model.&lt;/li&gt;
-&lt;li style="line-height: 130%;"&gt;By submitting both form each value is stored into
-  the model.&lt;/li&gt;
-&lt;li style="line-height: 130%;"&gt;If the first input contains an error but the second
-  one validates, the validation of the first form is deactivated.&lt;/li&gt;
-  </entry>
-<entry key="form_text2">Tobago supports nested forms and can treat each form seperatly:
-&lt;ul style="margin-top: 2px;"&gt;
-&lt;li style="line-height: 130%;"&gt;Values can be stored seperatly into the model
-  while already filled in input elements keep their values (temporarily)&lt;/li&gt;
-&lt;li style="line-height: 130%;"&gt;If the validation of a form is activated
-  but the actual value of this form is only stored temporarily, the validation
-  is deactivated until the value is definitly stored into the model. &lt;/li&gt;
-&lt;/ul&gt;
-  </entry>
-<entry key="form_in1Title">First inner form</entry>
-<entry key="form_in2Title">Second inner form</entry>
-<entry key="newValue1">New model-value</entry>
-<entry key="modelValue1">Value in model</entry>
-<entry key="submitForm1">Submit Form 1</entry>
-<entry key="newValue2">New model-value</entry>
-<entry key="modelValue2">Value in model</entry>
-<entry key="submitForm2">Submit Form 2</entry>
-<entry key="submitAll">Submit all Forms</entry>
-
-
-
-
-<!--  theme -->
-<entry key="theme_title">Theme settings</entry>
-<entry key="theme_label">Theme</entry>
-<entry key="theme_submit">Submit</entry>
-<entry key="theme_text">Tobago supports a big variety of displaying controls,
-  so called designs or themes.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Choosing of themes can be application wide,   user or group specific.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Images and other resources can be theme   dependant as well as the application pages can be designed seperatly   for each supported theme.&lt;/li&gt;
-    &lt;/ul&gt;
-</entry>
-
-<!--  browser -->
-<entry key="browser_sampleTitle">Browser Example</entry>
-<entry key="browser_text">Tobago is completely browser independant. Support of the different
-  browsers takes place in the JSF renderkit and does not have any effect on the
-  business logic development.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Tobago supports common browsers: Internet   Explorer, Mozilla and Netscape navigator.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Tobago reacts on the value delivered by the   HTTP header 'User-Agent' to decide which controls have to be rendered.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Control defaulting: The implentation of themes   can be both browser independant and based on other themes to prevent   code redundancy.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;More browsers can be supported easily.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Additional clients are supported, too: HTML, Simple HTML, WML&lt;/li&gt;
-    &lt;/ul&gt;
-</entry>
-
-<!--  locale -->
-<entry key="locale_title">Locale settings</entry>
-<entry key="locale_label">Locale</entry>
-<entry key="locale_submit">Submit</entry>
-<entry key="locale_text">Tobago supports internationalization and localization.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Unicode is used internally.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Content in different languages can be provided by resource bundles.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Like content, images and scripts can be localized.&lt;/li&gt;
-    &lt;/ul&gt;
-</entry>
-
-<!--  layout -->
-<entry key="layout_exampleTitle">Layout Example: Personal Information</entry>
-<entry key="layout_salutation">Salutation</entry>
-<entry key="layout_firstName">First Name</entry>
-<entry key="layout_lastName">Last Name</entry>
-<entry key="layout_co">c/o</entry>
-<entry key="layout_street">Street</entry>
-<entry key="layout_streetNumber">No</entry>
-<entry key="layout_zipCode">ZIP</entry>
-<entry key="layout_city">City</entry>
-<entry key="layout_note">Note</entry>
-<entry key="layout_text">Tobago simplifies the design of websites.
-    &lt;ul style="margin-top: 2px;"&gt;
-    &lt;li style="line-height: 130%;"&gt;Easy to use development of single- and   multicolumn forms.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Cells can span over multiple rows and colums.&lt;/li&gt;
-    &lt;li style="line-height: 130%;"&gt;Automatic alignment of input field labels.&lt;/li&gt;
-    &lt;/ul&gt;
-</entry>
-
-  <!-- Themes -->
-  <entry key="themesText1">&lt;b&gt;Theme configuration&lt;/b&gt; &lt;br /&gt;&lt;br
-    /&gt;
-    In Tobago it's easy to give an application a well designed look. You can use
-    prepared themes like speyside or scarborough, just to name two.
-    The only thing you have to do is configure them at the right place. This is
-    done in the tobago-config.xml by defining a default theme.</entry>
-
-  <entry key="themesCodeExampleTitle">Code Example</entry>
-  <entry key="themesCodeExample">...
-&lt;tobago-config&gt;
-            &lt;theme-config&gt;
-                        &lt;default-theme&gt;speyside&lt;/default-theme&gt;
-            &lt;/theme-config&gt;
-            &lt;resource-dir&gt;tobago&lt;/resource-dir&gt;
-&lt;/tobago-config&gt;
-...</entry>
-
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+-->
+
+<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
+
+<properties>
+ <entry key="tobago_version">MyFaces Tobago 1.0.7</entry>
+ <entry key="tobago_url">http://myfaces.apache.org/tobago</entry>
+
+
+<entry key="notTranslated">Sorry, not completely translated yet.</entry>
+<entry key="pageTitle">Tobago Demo</entry>
+
+<!-- menu -->
+  <entry key="menu_navigate">_Navigation</entry>
+  <entry key="menu_config">_Configuration</entry>
+  <entry key="menu_help">_Help</entry>
+  <entry key="menu_themes">_Themes</entry>
+  <entry key="menu_locale">_Locale</entry>
+  <entry key="menu_debug">Debug Mode</entry>
+  <entry key="menu_about">About</entry>
+  <entry key="menu_showLog">Show log Panel</entry>
+
+<!-- navigate -->
+  <entry key="overview">Overview</entry>
+  <entry key="intro">Intro</entry>
+  <entry key="basic">Basic Controls</entry>
+  <entry key="sheet">Sheet Control</entry>
+  <entry key="tree">Tree Control</entry>
+  <entry key="tab">Tab Control</entry>
+  <entry key="toolbar">Toolbar</entry>
+  <entry key="validation">Validation</entry>
+  <entry key="form">Forms</entry>
+  <entry key="themes">Themes</entry>
+  <entry key="browser">Browser</entry>
+  <entry key="locale">Locale</entry>
+  <entry key="layout">Layout</entry>
+
+  <entry key="bestPractice">Best Practice</entry>
+  <entry key="error">Error Handling</entry>
+  <entry key="theme">Themes</entry>
+  <entry key="transition">Transition</entry>
+  <entry key="nonFacesResponse">Non Faces Resp.</entry>
+
+  <entry key="reference_intro">Ref. (under constr.)</entry>
+  <entry key="reference_command">Command</entry>
+  <entry key="reference_container">Container</entry>
+  <entry key="reference_input">Input</entry>
+  <entry key="reference_menu">Menu</entry>
+  <entry key="reference_output">Output</entry>
+  <entry key="reference_object">Object</entry>
+  <entry key="reference_popup">Popup</entry>
+  <entry key="reference_progress">Progress</entry>
+  <entry key="reference_select">Select</entry>
+  <entry key="reference_sheet">Sheet</entry>
+  <entry key="reference_tab">Tab</entry>
+  <entry key="reference_time">Time</entry>
+  <entry key="reference_tool">Tool Bar</entry>
+  <entry key="reference_upload">Upload</entry>
+
+  <entry key="submit">Submit</entry>
+  <entry key="cancel">Cancel</entry>
+
+  <entry key="footer_previous">Prev</entry>
+  <entry key="footer_next">Next</entry>
+  <entry key="footer_viewSource">View Source</entry>
+
+
+<!--  intro -->
+<entry key="intro_text">&lt;p&gt;Tobago is a user interface framework for developing webapplications.
+  The technical basis of the framework is JavaServer Faces. The main core represents a theme oriented
+  JSF Render Kit.&lt;/p&gt;
+  &lt;p&gt;&lt;b&gt;Basic Controls&lt;/b&gt;&lt;br/&gt;
+  Tobago provides all standard controls of HTML like inputs, textareas, radiobuttons, checkboxes and buttons.
+  Additionally Tobago provides you with complex controls, which are not natively supportet by simple HTML,
+  including sheets, trees and tabs.&lt;/p&gt;
+  &lt;p&gt;&lt;b&gt;Validation&lt;/b&gt;&lt;br/&gt;
+  The main goal of Tobago is the development of applications which are interactive from the users point of view.
+  Tobago makes it easy to validate input and helps the user to enter correct data.&lt;/p&gt;
+  &lt;p&gt;&lt;b&gt;Layout&lt;/b&gt;&lt;br/&gt;
+  Tobago provides a sophisticated layout managing mechanism which can be seen as a mixture of classic HTML table
+  layout and Swing Gridbag layout.&lt;/p&gt;
+  &lt;p&gt;&lt;b&gt;Additional Features&lt;/b&gt;&lt;br/&gt;
+  Themes, Browser, Internationalisation.&lt;/p&gt;
+</entry>
+
+<!--  basicControlls -->
+  <entry key="basic_sampleInputTitle">Basic Input Examples</entry>
+  <entry key="basic_sampleSelectTitle">Basic Select Examples</entry>
+  <entry key="basic_sampleLinkTitle">Basic Controls Examples</entry>
+  <entry key="basic_itemUnknown">none</entry>
+  <entry key="basic_itemMr">Mr.</entry>
+  <entry key="basic_itemMrs">Mrs.</entry>
+  <entry key="basic_textboxLabel">Inputfield</entry>
+  <entry key="basic_dateLabel">Date</entry>
+  <entry key="basic_timeLabel">Time</entry>
+  <entry key="basic_textareaLabel">Textarea</entry>
+  <entry key="basic_linkAction">Click Link</entry>
+  <entry key="basic_buttonAction">Click Button</entry>
+  <entry key="basic_lastActionLabel">Last Click</entry>
+  <entry key="basic_text_input">Input controls for different kinds of text: single-line, multiline, formated.</entry>
+  <entry key="basic_text_select">Select controls allow input of one or multiple options.</entry>
+  <entry key="basic_text_action">Control elements for site navigation and to execute actions.</entry>
+
+
+<!--  sheet -->
+<entry key="sheet_sampleTitle">Sheet Example</entry>
+<entry key="sheet_text">The sheet control is a simple solution for displaying table based
+  information. The essential features are:
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Paging: A defined range of data is displayed.
+      Navigation is done with arrow buttons.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Sorting: By clicking a column header the
+    appropriate column is sorted.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Inline-Editing: If needed, the values of
+    cell contents can be directly changed or inserted by the user.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;The column width can be resized by simply
+    drag and drop the column border.
+    &lt;/ul&gt;
+</entry>
+<entry key="sheet_configTip">Click here to edit display attributes of the sheet.</entry>
+<entry key="sheet_configTitle">Sheet configuration</entry>
+
+<!--  tree -->
+<entry key="tree_sampleTitle">Tree Example's</entry>
+<entry key="tree_text">The tree control displays a tree which is generated from application data. The key features are:
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Attributes control the rendering of the tree.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;The possibility to define the tree as "single" or "multiselect", i.e. select one or multiple nodes of the tree.
+    &lt;li style="line-height: 130%;"&gt;Editing mode for simple handling of tree structures inside the application.&lt;/li&gt;
+    &lt;/ul&gt;
+    Furthermore there is a TreeListbox Control, which can be described as a vertical tree. This is handy for categorization actions.
+  </entry>
+<entry key="treeShowIcons">show icons</entry>
+<entry key="treeShowRoot">show root node</entry>
+<entry key="treeShowJunctions">show junction tree</entry>
+<entry key="treeShowRootJunction">show first junction</entry>
+<entry key="treeMultiselect">selectable</entry>
+<entry key="treeMutable">mutable</entry>
+<entry key="treeLabel">Tre_e</entry>
+<entry key="treeListboxLabel">Listbo_x</entry>
+
+
+<entry key="none">Not selectable</entry>
+<entry key="single">Single selection</entry>
+<entry key="singleLeafOnly">Single selection, Leafs only</entry>
+<entry key="multi">Multi selection</entry>
+<entry key="multiLeafOnly">Multi selection, Leafs only</entry>
+<entry key="siblingLeafOnly">Multi selection, Leafs on same level only</entry>
+
+
+
+<!--  tab -->
+<entry key="tab_sampleTitle">Tab Example</entry>
+<entry key="tab_text">The tab control provides so called tab panels.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Control can take place on server- or clientside.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Tab controls can be nested.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Inside each tab control any other controls   can be used.&lt;/li&gt;
+    &lt;/ul&gt;
+  </entry>
+<entry key="tabClientSide">Client side tabbing</entry>
+<entry key="tabServerSide">Server side tabbing</entry>
+<entry key="tabPlanet">Data of the _Planets</entry>
+<entry key="tabInsolar">In the _Solarsystem</entry>
+<entry key="tabMoons">_Moons</entry>
+
+
+<!--  solar -->
+<entry key="solarPlanetDiameter">Diameter</entry>
+<entry key="solarPlanetMass">Mass</entry>
+<entry key="solarPlanetSunDistance">Distance of the Sun</entry>
+<entry key="solarPlanetTimeOfCirculation">Time of Circulation</entry>
+<entry key="solarArrayName">Name</entry>
+<entry key="solarArrayNumber">#</entry>
+<entry key="solarArrayNumberTip">Number</entry>
+<entry key="solarArrayOrbit">Orbits</entry>
+<entry key="solarArrayDistance">Distance</entry>
+<entry key="solarArrayPeriod">Period</entry>
+<entry key="solarArrayPopulation">Population</entry>
+<entry key="solarPagingSheet">Sheet with Paging</entry>
+
+
+<!--  toolbar -->
+<entry key="toolbar_popupButtonAction">Open popup</entry>
+<entry key="toolbar_closePopupAction">Close popup window</entry>
+<entry key="toolbar_popupText">To close this popup window click close button.</entry>
+<entry key="toolbar_dropDownAction">DropDown</entry>
+<entry key="toolbar_buttonAction">Text Button</entry>
+<entry key="toolbar_imageButtonAction">Image Button</entry>
+<entry key="toolbar_sampleTitle">Toolbar Example</entry>
+<entry key="toolbar_text1">Toolbars can be used for context sensitive actions inside box controls.
+&lt;ul style="margin-top: 2px;"&gt;
+&lt;li style="line-height: 130%;"&gt;Toolbars can consist of images, text or both.&lt;/li&gt;
+&lt;li style="line-height: 130%;"&gt;Toolbars can be completly integrated into a box header.&lt;/li&gt;
+&lt;li style="line-height: 130%;"&gt;Actions can be displayed as drop down menues.&lt;/li&gt;
+&lt;/ul&gt;
+  </entry>
+<entry key="toolbar_sampleTitle2">Menubar Example</entry>
+<entry key="toolbar_text2">The menubar contains actions which are available application wide.
+&lt;ul style="margin-top: 2px;"&gt;
+  &lt;li style="line-height: 130%;"&gt;A menu is multilayer capable.&lt;/li&gt;
+  &lt;li style="line-height: 130%;"&gt;Menu actions can be executed on server- or clientside.&lt;/li&gt;
+  &lt;li style="line-height: 130%;"&gt;The actual status of menu entries can be displayed.&lt;/li&gt;
+&lt;/ul&gt;
+  </entry>
+<entry key="toolbar_linkClickme">click me</entry>
+<entry key="toolbar_selectSingleselect">Single selection</entry>
+<entry key="right">right</entry>
+<entry key="bottom">bottom</entry>
+<entry key="off">off</entry>
+<entry key="small">small</entry>
+<entry key="big">big</entry>
+
+
+<!--  validation -->
+<entry key="validation_sampleTitle">Validation Example</entry>
+<entry key="validation_description">Description</entry>
+<entry key="validation_number">Number</entry>
+<entry key="validation_price">Price</entry>
+<entry key="validation_custom">Custom Validator</entry>  
+<entry key="validation_submit">Submit</entry>
+
+<entry key="validation_text">Tobago provides easy to use possibilities for validation of user input.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Syntactic and semantic validation is available.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Error messages can be positioned anywhere in the   user interface.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Input elements, which are affected by the   validation can be highlighted.&lt;/li&gt;
+    &lt;/ul&gt;
+</entry>
+
+<!--  form -->
+<entry key="form_outTitle">Outer form</entry>
+<entry key="form_text1">&lt;li style="line-height: 130%;"&gt;Values in the first form are being
+  stored temporarily by submitting the second form while the value in the second
+  form is written into the model.&lt;/li&gt;
+&lt;li style="line-height: 130%;"&gt;By submitting both form each value is stored into
+  the model.&lt;/li&gt;
+&lt;li style="line-height: 130%;"&gt;If the first input contains an error but the second
+  one validates, the validation of the first form is deactivated.&lt;/li&gt;
+  </entry>
+<entry key="form_text2">Tobago supports nested forms and can treat each form seperatly:
+&lt;ul style="margin-top: 2px;"&gt;
+&lt;li style="line-height: 130%;"&gt;Values can be stored seperatly into the model
+  while already filled in input elements keep their values (temporarily)&lt;/li&gt;
+&lt;li style="line-height: 130%;"&gt;If the validation of a form is activated
+  but the actual value of this form is only stored temporarily, the validation
+  is deactivated until the value is definitly stored into the model. &lt;/li&gt;
+&lt;/ul&gt;
+  </entry>
+<entry key="form_in1Title">First inner form</entry>
+<entry key="form_in2Title">Second inner form</entry>
+<entry key="newValue1">New model-value</entry>
+<entry key="modelValue1">Value in model</entry>
+<entry key="submitForm1">Submit Form 1</entry>
+<entry key="newValue2">New model-value</entry>
+<entry key="modelValue2">Value in model</entry>
+<entry key="submitForm2">Submit Form 2</entry>
+<entry key="submitAll">Submit all Forms</entry>
+
+
+
+
+<!--  theme -->
+<entry key="theme_title">Theme settings</entry>
+<entry key="theme_label">Theme</entry>
+<entry key="theme_submit">Submit</entry>
+<entry key="theme_text">Tobago supports a big variety of displaying controls,
+  so called designs or themes.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Choosing of themes can be application wide,   user or group specific.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Images and other resources can be theme   dependant as well as the application pages can be designed seperatly   for each supported theme.&lt;/li&gt;
+    &lt;/ul&gt;
+</entry>
+
+<!--  browser -->
+<entry key="browser_sampleTitle">Browser Example</entry>
+<entry key="browser_text">Tobago is completely browser independant. Support of the different
+  browsers takes place in the JSF renderkit and does not have any effect on the
+  business logic development.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Tobago supports common browsers: Internet   Explorer, Mozilla and Netscape navigator.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Tobago reacts on the value delivered by the   HTTP header 'User-Agent' to decide which controls have to be rendered.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Control defaulting: The implentation of themes   can be both browser independant and based on other themes to prevent   code redundancy.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;More browsers can be supported easily.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Additional clients are supported, too: HTML, Simple HTML, WML&lt;/li&gt;
+    &lt;/ul&gt;
+</entry>
+
+<!--  locale -->
+<entry key="locale_title">Locale settings</entry>
+<entry key="locale_label">Locale</entry>
+<entry key="locale_submit">Submit</entry>
+<entry key="locale_text">Tobago supports internationalization and localization.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Unicode is used internally.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Content in different languages can be provided by resource bundles.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Like content, images and scripts can be localized.&lt;/li&gt;
+    &lt;/ul&gt;
+</entry>
+
+<!--  layout -->
+<entry key="layout_exampleTitle">Layout Example: Personal Information</entry>
+<entry key="layout_salutation">Salutation</entry>
+<entry key="layout_firstName">First Name</entry>
+<entry key="layout_lastName">Last Name</entry>
+<entry key="layout_co">c/o</entry>
+<entry key="layout_street">Street</entry>
+<entry key="layout_streetNumber">No</entry>
+<entry key="layout_zipCode">ZIP</entry>
+<entry key="layout_city">City</entry>
+<entry key="layout_note">Note</entry>
+<entry key="layout_text">Tobago simplifies the design of websites.
+    &lt;ul style="margin-top: 2px;"&gt;
+    &lt;li style="line-height: 130%;"&gt;Easy to use development of single- and   multicolumn forms.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Cells can span over multiple rows and colums.&lt;/li&gt;
+    &lt;li style="line-height: 130%;"&gt;Automatic alignment of input field labels.&lt;/li&gt;
+    &lt;/ul&gt;
+</entry>
+
+  <!-- Themes -->
+  <entry key="themesText1">&lt;b&gt;Theme configuration&lt;/b&gt; &lt;br /&gt;&lt;br
+    /&gt;
+    In Tobago it's easy to give an application a well designed look. You can use
+    prepared themes like speyside or scarborough, just to name two.
+    The only thing you have to do is configure them at the right place. This is
+    done in the tobago-config.xml by defining a default theme.</entry>
+
+  <entry key="themesCodeExampleTitle">Code Example</entry>
+  <entry key="themesCodeExample">...
+&lt;tobago-config&gt;
+            &lt;theme-config&gt;
+                        &lt;default-theme&gt;speyside&lt;/default-theme&gt;
+            &lt;/theme-config&gt;
+            &lt;resource-dir&gt;tobago&lt;/resource-dir&gt;
+&lt;/tobago-config&gt;
+...</entry>
+
 </properties>

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL