You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/04/14 18:36:59 UTC

svn commit: r1739136 - in /myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp: content/20-component/010-input/10-in/ content/30-concept/10-theme/ content/30-concept/16-layout/10-flow/ content/30-concept/16-layout/10...

Author: lofwyr
Date: Thu Apr 14 16:36:58 2016
New Revision: 1739136

URL: http://svn.apache.org/viewvc?rev=1739136&view=rev
Log:
TOBAGO-1544: Revise Demo Application for Tobago 3.0
[developed by hnoeth]

Added:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/flow-layout.xhtml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/flex-layout.xhtml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/segment-layout.xhtml
Removed:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30/
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/22-theme/theme.xhtml
Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/010-input/10-in/in.xhtml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/10-theme/theme.xhtml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview_de.properties.xml

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/010-input/10-in/in.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/010-input/10-in/in.xhtml?rev=1739136&r1=1739135&r2=1739136&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/010-input/10-in/in.xhtml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/20-component/010-input/10-in/in.xhtml Thu Apr 14 16:36:58 2016
@@ -57,16 +57,17 @@
   </tc:section>
 
   <tc:section label="Ajax">
-    <p>
-      The outputfield in this example, display the given value on the server.
-      With <code class="language-markup">&lt;f:ajax render="outputfield"/></code>, the outputfield will be rerendered,
-      after the value has been changed, because its id is <code>outputfield</code> and the default event for
-      <code>&lt;tc:in></code> is <code>change</code>.
-    </p>
+    <p>The outputfield in this example, display the given value on the server.
+      With <code class="language-markup">&lt;f:ajax render="outputfield" listener="\#{inController.update}"/></code>,
+      the outputfield will be rerendered, after the value has been changed.
+      This is because <code>outputfield</code> is the id of the <code>&lt;tc:out/></code> tag.
+      and the default event for <code class="language-markup">&lt;tc:in/></code> is <code>change</code>.
+
+      Additional, the <code>listener</code> attribute is set. The given method is called after the inputfield
+      loose focus.</p>
     <tc:in id="i8" label="On Change" value="#{inController.changeValue}">
-      <f:ajax render="outputfield"/>
+      <f:ajax render="outputfield" listener="#{inController.update}"/>
     </tc:in>
     <tc:out id="outputfield" label="On Server" value="#{inController.changeValue}"/>
   </tc:section>
-
 </ui:composition>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/10-theme/theme.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/10-theme/theme.xhtml?rev=1739136&r1=1739135&r2=1739136&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/10-theme/theme.xhtml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/10-theme/theme.xhtml Thu Apr 14 16:36:58 2016
@@ -18,51 +18,38 @@
 -->
 
 <ui:composition template="/main.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
                 xmlns:tc="http://myfaces.apache.org/tobago/component"
                 xmlns:ui="http://java.sun.com/jsf/facelets"
                 xmlns:f="http://java.sun.com/jsf/core">
   <ui:param name="title" value="#{overviewBundle.theme}"/>
-  <tc:panel>
-    <f:facet name="layout">
-      <tc:gridLayout rows="120px;auto;*"/>
-    </f:facet>
+  <p>Tobago supports a big variety of displaying controls, so called designs or themes.</p>
 
-    <tc:out escape="false" value="#{overviewBundle.theme_text}"/>
-
-    <tc:panel>
-      <f:facet name="layout">
-        <tc:gridLayout columns="*;auto"/>
-      </f:facet>
-
-      <tc:selectOneChoice value="#{clientConfigController2.theme}"
-                          label="#{overviewBundle.theme_label}">
-        <f:selectItems value="#{clientConfigController2.themeItems}"/>
-      </tc:selectOneChoice>
-      <tc:button action="#{clientConfigController2.submit}" label="#{overviewBundle.theme_submit}"/>
-    </tc:panel>
-
-    <tc:panel>
-      <f:facet name="layout">
-        <tc:gridLayout columns="*;480px;*" rows="*;320px;*"/>
-      </f:facet>
-
-      <tc:panel>
-        <tc:gridLayoutConstraint columnSpan="3"/>
-      </tc:panel>
-
-      <tc:panel/>
-      <tc:image value="image/theme-photo.jpg"/>
-      <tc:panel/>
-
-      <tc:panel/>
-      <tc:out escape="false" value="#{overviewBundle.theme_photo}"/>
-      <tc:panel/>
-
-      <tc:panel>
-        <tc:gridLayoutConstraint columnSpan="3"/>
-      </tc:panel>
-
-    </tc:panel>
-
-  </tc:panel>
+  <tc:section label="Change Theme">
+    <p>Choosing of themes can be application wide, user or group specific.
+      Images and other resources can be theme dependant as well as the application pages can be designed seperatly
+      for each supported theme.</p>
+    <tc:selectOneChoice label="Theme" value="#{themeController.theme}">
+      <f:selectItems value="#{themeController.themeItems}"/>
+    </tc:selectOneChoice>
+    <tc:button label="Submit" action="#{themeController.submit}"/>
+
+    <tc:separator/>
+    <tc:image value="image/theme-photo.jpg"/>
+    <tc:out id="o1" value="#{overviewBundle.theme_photo}"/>
+  </tc:section>
+
+  <tc:section label="Configuration">
+    <p>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 in the 'tobago-config.xml'.</p>
+
+    <pre><code class="language-markup">...
+&lt;tobago-config>
+  &lt;theme-config>
+    &lt;default-theme>speyside&lt;/default-theme>
+  &lt;/theme-config>
+  &lt;resource-dir>tobago&lt;/resource-dir>
+&lt;/tobago-config>
+...</code></pre>
+  </tc:section>
 </ui:composition>

Added: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/flow-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/flow-layout.xhtml?rev=1739136&view=auto
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/flow-layout.xhtml (added)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/10-flow/flow-layout.xhtml Thu Apr 14 16:36:58 2016
@@ -0,0 +1,97 @@
+<?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.
+-->
+
+<ui:composition template="/main.xhtml"
+                xmlns:tc="http://myfaces.apache.org/tobago/component"
+                xmlns:ui="http://java.sun.com/jsf/facelets">
+  <ui:param name="title" value="#{overviewBundle.flow_layout}"/>
+  <p>The flow layout can be used with the <code>&lt;tc:flowLayout/></code> tag.
+    By default, the content is displayed in a flow layout.</p>
+
+  <tc:section label="Basics">
+    <p>The buttons are displayed successively at the same line.
+      Components which doesn't fit in the current line are moved to the next one.
+      Components like an outputfield or a checkbox are displayed in a separate line.</p>
+    <tc:flowLayout>
+      <tc:out id="o1" label="Output" value="Outputvalue"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:selectBooleanCheckbox label="Checkbox"/>
+    </tc:flowLayout>
+  </tc:section>
+
+  <tc:section label="Align: left (default)">
+    TODO
+    <tc:flowLayout>
+      <tc:style textAlign="left"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:out id="o2" value="Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text
+      Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text "/>
+    </tc:flowLayout>
+  </tc:section>
+
+  <tc:section label="Align: right">
+    TODO
+    <tc:flowLayout>
+      <tc:style textAlign="right"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:out id="o3" value="Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text
+      Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text "/>
+    </tc:flowLayout>
+  </tc:section>
+
+  <tc:section label="Align: center">
+    TODO
+    <tc:flowLayout>
+      <tc:style textAlign="center"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:out id="o4" value="Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text
+      Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text "/>
+    </tc:flowLayout>
+  </tc:section>
+
+  <tc:section label="Align: justify">
+    TODO
+    <tc:flowLayout>
+      <tc:style textAlign="justify"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:out id="o5" value="Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text
+      Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text "/>
+    </tc:flowLayout>
+  </tc:section>
+</ui:composition>

Added: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/flex-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/flex-layout.xhtml?rev=1739136&view=auto
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/flex-layout.xhtml (added)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/20-flex/flex-layout.xhtml Thu Apr 14 16:36:58 2016
@@ -0,0 +1,77 @@
+<?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.
+-->
+
+<ui:composition template="/main.xhtml"
+                xmlns:tc="http://myfaces.apache.org/tobago/component"
+                xmlns:ui="http://java.sun.com/jsf/facelets">
+  <ui:param name="title" value="#{overviewBundle.flex_layout}"/>
+  <p>The flex layout can be used with the <code>&lt;tc:flexLayout/></code> tag.
+    The two most important attributes are <code>columns</code> and <code>rows</code>.
+    If both attributes are set, only <code>rows</code> has an effect.</p>
+
+  <tc:section label="Basics">
+    <p>If no attributes set, the behavior of the flex layout is like a flow layout.</p>
+    <tc:flexLayout>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+    </tc:flexLayout>
+  </tc:section>
+
+  <tc:section label="Columns">
+    <p>In this example, the <code>columns</code> attribute is set to '200px;auto;1*;2*;1*'.
+      This means:</p>
+    <ul>
+      <li>Column 1: Width is always at 200px.</li>
+      <li>Column 2: Width is always the width of the button.</li>
+      <li>The left space is filled with the remaining buttons.
+        The fourth button is twice the size than button three and five.
+      </li>
+    </ul>
+    <tc:flexLayout columns="200px;auto;1*;2*;1*">
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+    </tc:flexLayout>
+  </tc:section>
+
+  <tc:section label="Rows">
+    <p>The <code>rows</code> attribute is set to '100px;auto;1*;2*;1*'. Also, the height of the flex layout is '400px'.
+      This means:</p>
+    <ul>
+      <li>Row 1: Height is always at 100px.</li>
+      <li>Row 2: Height is always the height of the button.</li>
+      <li>The left space is filled with the remaining buttons.
+        The fourth button is twice the size than button three and five.
+      </li>
+    </ul>
+    <tc:flexLayout rows="100px;auto;1*;2*;1*">
+      <tc:style height="400px"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+      <tc:button label="Button"/>
+    </tc:flexLayout>
+  </tc:section>
+</ui:composition>

Added: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/segment-layout.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/segment-layout.xhtml?rev=1739136&view=auto
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/segment-layout.xhtml (added)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/content/30-concept/16-layout/30-segment/segment-layout.xhtml Thu Apr 14 16:36:58 2016
@@ -0,0 +1,72 @@
+<?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.
+-->
+
+<ui:composition template="/main.xhtml"
+                xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:tc="http://myfaces.apache.org/tobago/component"
+                xmlns:ui="http://java.sun.com/jsf/facelets">
+  <ui:param name="title" value="#{overviewBundle.segment_layout}"/>
+  <p>The segment layout is basicly a grid with 12 columns.
+    The number and the proportion of the columns can be set with
+    <code>large</code>, <code>medium</code>, <code>small</code> or <code>extraSmall</code>.
+    Every attribute has a different css class, but the usage is the same.
+    The value is a semicolon separated list of integers, which sum has to be '12'.
+    A value of n will use n columns from the grid.</p>
+
+  <tc:section label="Basics">
+    <p>This example show a segment layout with four columns and a segment layout with three columns.</p>
+    <tc:section label="4 Columns">
+      <pre><code class="language-markup">&lt;tc:segmentLayout medium="2;4;3;3"></code></pre>
+      <tc:segmentLayout medium="2;4;3;3">
+        <tc:label value="1"/>
+        <tc:label value="2"/>
+        <tc:label value="3"/>
+        <tc:label value="4"/>
+        <tc:hidden/>
+        <tc:label value="5"/>
+      </tc:segmentLayout>
+    </tc:section>
+    <tc:section label="3 Columns">
+      <pre><code class="language-markup">&lt;tc:segmentLayout medium="2;4;6"></code></pre>
+      <tc:segmentLayout medium="2;4;6">
+        <tc:label value="1"/>
+        <tc:label value="2"/>
+        <tc:label value="3"/>
+        <tc:label value="4"/>
+        <tc:hidden/>
+        <tc:label value="5"/>
+      </tc:segmentLayout>
+    </tc:section>
+  </tc:section>
+
+  <tc:section label="Extra Small">
+    <p>This segment layout use the attribute <code>extraSmall</code> with the value '5;7'.
+      This means, that the css class <code class="language-css">.col-xs-5</code> and
+      <code class="language-css">.col-xs-7</code> is used.
+      For those classes, a smaller font-size is defined in the <code>demo.css</code>.</p>
+    <tc:segmentLayout extraSmall="5;7">
+      <tc:label value="1"/>
+      <tc:label value="2"/>
+      <tc:label value="3"/>
+      <tc:label value="4"/>
+      <tc:hidden/>
+      <tc:label value="5"/>
+    </tc:segmentLayout>
+  </tc:section>
+</ui:composition>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml?rev=1739136&r1=1739135&r2=1739136&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview.properties.xml Thu Apr 14 16:36:58 2016
@@ -19,7 +19,7 @@
 <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
 
 <properties>
-  <entry key="tobago_url">http://myfaces.apache.org/tobago</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>
@@ -100,14 +100,17 @@
   <entry key="validation_jsr303">JSR 303: Bean Validation</entry>
   <entry key="conversion">Conversion</entry>
   <entry key="form">Forms</entry>
+  <entry key="theme">Themes</entry>
+  <entry key="layout">Layout</entry>
+  <entry key="flow_layout">FlowLayout</entry>
+  <entry key="flex_layout">FlexLayout</entry>
+  <entry key="segment_layout">SegmentLayout</entry>
   <entry key="roles">Roles</entry>
 
 
   <entry key="validation-severity">Severity</entry>
-  <entry key="theme">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>
@@ -320,8 +323,6 @@
 
 <!--  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;
@@ -392,7 +393,7 @@
             &lt;resource-dir&gt;tobago&lt;/resource-dir&gt;
 &lt;/tobago-config&gt;
 ...</entry>
-  <entry key="theme_photo">Photo of the location</entry>
+  <entry key="theme_photo">The Standard Theme don't have a photo to show</entry>
 
   <entry key="foreach_text">
     There are two possibilities to use iterators:&lt;br/>

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview_de.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview_de.properties.xml?rev=1739136&r1=1739135&r2=1739136&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview_de.properties.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/src/main/webapp/tobago-resource/html/standard/standard/property/overview_de.properties.xml Thu Apr 14 16:36:58 2016
@@ -41,7 +41,6 @@
 
   <!--<entry key="bestPractice">Best Practice</entry>-->
   <entry key="error">Fehlerbehandlung</entry>
-  <entry key="theme">Designs</entry>
   <entry key="transition">Seitenübergang</entry>
 
   <entry key="submit">Übernehmen</entry>
@@ -188,9 +187,6 @@
 
 <!--  theme -->
   <entry key="theme_title">Einstellung des Designs</entry>
-  <entry key="theme_label">Design</entry>
-  <entry key="theme_submit">Übernehmen</entry>
-  <entry key="theme_text">Tobago unterstützt eine vielseitige Darstellungsweise aller Controls: so genannte Designs oder Themes. &lt;ul style="margin-top: 2px;"&gt; &lt;li style="line-height: 130%;"&gt;Die Auswahl eines Themes kann applikationsweit gelten,   aber auch eine Benutzer- oder Gruppeneinstellung sein.&lt;/li&gt; &lt;li style="line-height: 130%;"&gt;Es können sowohl Bilder und andere Resourcen,   als auch die eigentlichen Applikationswebseiten   Theme-abhängig gestaltet werden.&lt;/li&gt; &lt;/ul&gt;</entry>
 
 <!--  browser -->
   <entry key="browser_sampleTitle">Browser Beispiel</entry>