You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by mi...@apache.org on 2005/01/09 21:01:52 UTC

cvs commit: jakarta-tapestry/examples/Workbench/src/context/WEB-INF LocaleSelection.jwc Border.html LocaleList.jwc LocaleSelection.html Dates.page

mindbridge    2005/01/09 12:01:52

  Modified:    examples/Workbench/src/context/WEB-INF LocaleSelection.jwc
                        Border.html LocaleList.jwc LocaleSelection.html
                        Dates.page
  Log:
  Modifying the Workbench to work with the new changes and
  making it more compliant with the standards
  
  Revision  Changes    Path
  1.5       +1 -1      jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleSelection.jwc
  
  Index: LocaleSelection.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleSelection.jwc,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- LocaleSelection.jwc	6 Jan 2005 02:17:24 -0000	1.4
  +++ LocaleSelection.jwc	9 Jan 2005 20:01:52 -0000	1.5
  @@ -78,7 +78,7 @@
   		</binding>
   	</component>
       
  -    <property name="localeSet" persistent="yes"  initial-value="ognl:new java.util.HashSet()"/>
  +    <property name="localeSet" persist="session"  initial-value="ognl:new java.util.HashSet()"/>
   
       <property name="currentLocale"/>
       
  
  
  
  1.3       +3 -3      jakarta-tapestry/examples/Workbench/src/context/WEB-INF/Border.html
  
  Index: Border.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/src/context/WEB-INF/Border.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Border.html	9 Dec 2004 16:29:29 -0000	1.2
  +++ Border.html	9 Jan 2005 20:01:52 -0000	1.3
  @@ -4,9 +4,9 @@
   <table class="tabs" cellspacing="0" border="0">
   <tr>
   <span jwcid="@Foreach" source="ognl:pageTabNames" value="ognl:pageName">
  -<td><img jwcid="@Image" image="ognl:leftTabAsset" width="2" height="20"/></td>
  -<td jwcid="tabCell" align="middle"><a class="nav" jwcid="pageLink"><span jwcid="@Insert" value="ognl:pageTitle">Page Title</span></a></td>
  -<td><img jwcid="@Image" image="ognl:rightTabAsset" width="13" height="20"/></td>
  +<td><img jwcid="@Image" image="ognl:leftTabAsset" width="2" height="20" alt=""/></td>
  +<td jwcid="tabCell" align="center"><a class="nav" jwcid="pageLink"><span jwcid="@Insert" value="ognl:pageTitle">Page Title</span></a></td>
  +<td><img jwcid="@Image" image="ognl:rightTabAsset" width="13" height="20" alt=""/></td>
   </span>
   </tr>
   </table>
  
  
  
  1.5       +5 -4      jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleList.jwc
  
  Index: LocaleList.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleList.jwc,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- LocaleList.jwc	6 Jan 2005 02:17:24 -0000	1.4
  +++ LocaleList.jwc	9 Jan 2005 20:01:52 -0000	1.5
  @@ -22,14 +22,15 @@
   <component-specification class="org.apache.tapestry.workbench.table.LocaleList" 
   	allow-body="no" allow-informal-parameters="yes">
   
  -	<parameter name="localeSelectionListener" 
  +	<parameter name="localeSelectionListener"
   		required="yes"/>
   
       <bean name="rowClass" class="org.apache.tapestry.bean.EvenOdd"/>
   
  +    
   	<property name="currentLocale"/>
   	
  -	<property name="selectedLocales" persistent="yes" initial-value="ognl:new java.util.HashSet()"/>
  +	<property name="selectedLocales" persist="session" initial-value="ognl:new java.util.HashSet()"/>
   
   	<component id="form" type="Form">
   		<!--binding name="listener" value="ognl:listeners.formSubmit"/-->
  @@ -47,8 +48,8 @@
   	<component id="tableView" type="contrib:TableView">
           <binding name="source" value="ognl:@java.util.Locale@getAvailableLocales()"/>
           <binding name="columns">
  -            '* Locale:toString(), Language:displayLanguage, Country:displayCountry, ' +
  -            'Variant:displayVariant, ISO Language:ISO3Language, ISO Country:ISO3Country'
  +            * Locale:toString(), Language:displayLanguage, Country:displayCountry, 
  +            Variant:displayVariant, ISO Language:ISO3Language, ISO Country:ISO3Country
           </binding>
   	</component>
   
  
  
  
  1.2       +1 -1      jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleSelection.html
  
  Index: LocaleSelection.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/src/context/WEB-INF/LocaleSelection.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LocaleSelection.html	28 Oct 2004 22:24:46 -0000	1.1
  +++ LocaleSelection.html	9 Jan 2005 20:01:52 -0000	1.2
  @@ -1,6 +1,6 @@
   <span jwcid="$content$">
   
  -<style>
  +<style type="text/css">
   	.tableRowsClass { text-align: center }
   </style>
   
  
  
  
  1.5       +1 -1      jakarta-tapestry/examples/Workbench/src/context/WEB-INF/Dates.page
  
  Index: Dates.page
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/src/context/WEB-INF/Dates.page,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Dates.page	6 Jan 2005 02:17:24 -0000	1.4
  +++ Dates.page	9 Jan 2005 20:01:52 -0000	1.5
  @@ -21,7 +21,7 @@
   
   <page-specification class="org.apache.tapestry.workbench.fields.Dates">
   	
  -	<property name="includeWeek" persistent="yes"/>
  +	<property name="includeWeek" persist="session"/>
   	
   </page-specification>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org