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

cvs commit: jakarta-tapestry/src/documentation/content/xdocs site.xml

hlship      2005/01/06 16:31:05

  Modified:    contrib/src/java/org/apache/tapestry/contrib/valid
                        NumericField.jwc DateField.jwc
                        ValidatingTextField.jwc
               src/documentation/content/xdocs/UsersGuide common.ent
                        template.xml
               src/documentation/content/xdocs site.xml
  Log:
  Fix some minor problems introduced by the update-copyrights script.
  
  Revision  Changes    Path
  1.5       +27 -15    jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/NumericField.jwc
  
  Index: NumericField.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/NumericField.jwc,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NumericField.jwc	6 Jan 2005 02:17:31 -0000	1.4
  +++ NumericField.jwc	7 Jan 2005 00:31:04 -0000	1.5
  @@ -1,17 +1,29 @@
  -<?xml version="1.0" encoding="UTF-8"?>
<!--
   Copyright 2004 The Apache Software Foundation
  
   Licensed 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 component-specification PUBLIC 
  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">

<component-specification class="org.apache.tapestry.contrib.valid.NumericField">

  <parameter name="disabled"/>
  <parameter name="hidden"/>
  <parameter name="displayWidth"/>
  <parameter name="maximumLength"/>

  <parameter name="value" required="yes"/>
  <parameter name="displayName" required="yes"/>
  <parameter name="maximum"/>
  <parameter name="minimum"/>
  <parameter name="required"/>
  <parameter name="type" required="yes"/>

  <reserved-parameter name="name"/>

</component-specification>
<!-- 
  +<?xml version="1.0" encoding="UTF-8"?>
   <!-- 
  -   Copyright 2004, 2005 The Apache Software Foundation
  -
  -   Licensed 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.
  +Copyright 2004, 2005 The Apache Software Foundation
  +Licensed 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 component-specification PUBLIC
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN"
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
  +<component-specification class="org.apache.tapestry.contrib.valid.NumericField">
  +    <parameter name="disabled"/>
  +    <parameter name="hidden"/>
  +    <parameter name="displayWidth"/>
  +    <parameter name="maximumLength"/>
  +    <parameter name="value" required="yes"/>
  +    <parameter name="displayName" required="yes"/>
  +    <parameter name="maximum"/>
  +    <parameter name="minimum"/>
  +    <parameter name="required"/>
  +    <parameter name="type" required="yes"/>
  +    <reserved-parameter name="name"/>
  +</component-specification>
  
  
  
  1.5       +29 -1     jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/DateField.jwc
  
  Index: DateField.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/DateField.jwc,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DateField.jwc	5 Jan 2005 23:17:31 -0000	1.4
  +++ DateField.jwc	7 Jan 2005 00:31:04 -0000	1.5
  @@ -1,4 +1,4 @@
  -<?xml version="1.0" encoding="UTF-8"?>
<!--
   Copyright 2004 The Apache Software Foundation
  
   Licensed 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 component-specification PUBLIC 
  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
  
<component-specification class="org.apache.tapestry.contrib.valid.DateField">

  <parameter name="disabled"/>
  <parameter name="hidden"/>
  <parameter name="displayWidth"/>
  <parameter name="maximumLength"/>

  <parameter name="date" type="java.util.Date" required="yes" />
  <parameter name="displayName" required="yes" />
  <parameter name="maximum"/>
  <parameter name="minimum" />
  <parameter name="required" />
  <parameter name="format" />
  <parameter name="displayFormat"  />
    
  <reserved-parameter name="name"/>
  <reserved-parameter name="type"/>
  <reserved-parameter name="value"/>
  <reserved-parameter name="size"/>
  <reserved-parameter name="maxlength"/>

</component-specification>
<!-- 
  +<?xml version="1.0" encoding="UTF-8"?>
   <!-- 
      Copyright 2004, 2005 The Apache Software Foundation
   
  @@ -14,4 +14,32 @@
      See the License for the specific language governing permissions and
      limitations under the License.
   -->
  +
  +<!DOCTYPE component-specification PUBLIC 
  +  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  +  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
  +  
  +<component-specification class="org.apache.tapestry.contrib.valid.DateField">
  +
  +  <parameter name="disabled"/>
  +  <parameter name="hidden"/>
  +  <parameter name="displayWidth"/>
  +  <parameter name="maximumLength"/>
  +
  +  <parameter name="date" type="java.util.Date" required="yes" />
  +  <parameter name="displayName" required="yes" />
  +  <parameter name="maximum"/>
  +  <parameter name="minimum" />
  +  <parameter name="required" />
  +  <parameter name="format" />
  +  <parameter name="displayFormat"  />
  +    
  +  <reserved-parameter name="name"/>
  +  <reserved-parameter name="type"/>
  +  <reserved-parameter name="value"/>
  +  <reserved-parameter name="size"/>
  +  <reserved-parameter name="maxlength"/>
  +
  +</component-specification>
  +
   
  
  
  
  1.5       +1 -17     jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/ValidatingTextField.jwc
  
  Index: ValidatingTextField.jwc
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/contrib/src/java/org/apache/tapestry/contrib/valid/ValidatingTextField.jwc,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ValidatingTextField.jwc	6 Jan 2005 02:17:31 -0000	1.4
  +++ ValidatingTextField.jwc	7 Jan 2005 00:31:04 -0000	1.5
  @@ -1,17 +1 @@
  -<?xml version="1.0" encoding="UTF-8"?>
<!--
   Copyright 2004 The Apache Software Foundation
  
   Licensed 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 component-specification PUBLIC 
  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
  
<component-specification class="org.apache.tapestry.contrib.valid.ValidatingTextField" allow-body="no">

  <parameter name="disabled"/>  
  <parameter name="hidden"/>
  <parameter name="displayWidth"/>
  <parameter name="maximumLength"/>

  <parameter name="text" required="yes"/>
  <parameter name="displayName" required="yes"/>
  <parameter name="minimumLength"/>
  <parameter name="required"/>
 
  <reserved-parameter name="type"/>
  <reserved-parameter name="value"/>
  
</component-specification>
<!-- 
  -<!-- 
  -   Copyright 2004, 2005 The Apache Software Foundation
  -
  -   Licensed 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.
  --->
  -
  +<?xml version="1.0" encoding="UTF-8"?>
<!-- 
   Copyright 2004, 2005 The Apache Software Foundation

   Licensed 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 component-specification PUBLIC 
  "-//Apache Software Foundation//Tapestry Specification 3.1//EN" 
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_1.dtd">
  
<component-specification class="org.apache.tapestry.contrib.valid.ValidatingTextField" allow-body="no">

  <parameter name="disabled"/>  
  <parameter name="hidden"/>
  <parameter name="displayWidth"/>
  <parameter name="maximumLength"/>

  <parameter name="text" required="yes"/>
  <parameter name="displayName" required="yes"/>
  <parameter name="minimumLength"/>
  <parameter name="required"/>
 
  <reserved-parameter name="type"/>
  <reserved-parameter name="value"/>
  
</component-specification>
  
  
  
  1.11      +1 -1      jakarta-tapestry/src/documentation/content/xdocs/UsersGuide/common.ent
  
  Index: common.ent
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/src/documentation/content/xdocs/UsersGuide/common.ent,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- common.ent	19 Dec 2004 15:31:46 -0000	1.10
  +++ common.ent	7 Jan 2005 00:31:05 -0000	1.11
  @@ -1,5 +1,5 @@
   <!--
  -   Copyright 2004 The Apache Software Foundation
  +   Copyright 2004, 2005 The Apache Software Foundation
     
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
  
  
  
  1.10      +1 -1      jakarta-tapestry/src/documentation/content/xdocs/UsersGuide/template.xml
  
  Index: template.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/src/documentation/content/xdocs/UsersGuide/template.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- template.xml	5 Jan 2005 23:17:21 -0000	1.9
  +++ template.xml	7 Jan 2005 00:31:05 -0000	1.10
  @@ -1,4 +1,4 @@
  -<!--
  +<?xml version="1.0"?>
   <!-- 
      Copyright 2004, 2005 The Apache Software Foundation
   
  
  
  
  1.15      +10 -8     jakarta-tapestry/src/documentation/content/xdocs/site.xml
  
  Index: site.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/src/documentation/content/xdocs/site.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- site.xml	5 Jan 2005 23:17:19 -0000	1.14
  +++ site.xml	7 Jan 2005 00:31:05 -0000	1.15
  @@ -15,14 +15,6 @@
      limitations under the License.
   -->
   
  -<link href="site:changes"> links to changes.html (or ../changes.html if in
  -  subdir).
  -- Provide aliases for external URLs in the external-refs section.  Eg, <link
  -  href="ext:cocoon"> links to http://xml.apache.org/cocoon/ 
  -
  -See http://xml.apache.org/forrest/linking.html for more info
  --->
  -
   <!DOCTYPE site
   [
   <!ENTITY project-report-menu.ent SYSTEM "project-report-menu.ent">
  @@ -72,6 +64,16 @@
           <DatePicker label="DatePicker" href="DatePicker.html"/>
           <Delegator label="Delegator" href="Delegator.html"/>
           <DirectLink label="DirectLink" href="DirectLink.html"/>
  +        <ExceptionDisplay label="ExceptionDisplay" href="ExceptionDisplay.html"/>
  +        <ExternalLink label="ExternalLink" href="ExternalLink.html"/>
  +        <FieldLabel label="FieldLabel" href="FieldLabel.html"/>
  +        <Foreach label="Foreach" href="Foreach.html"/>
  +        <Form label="Form" href="Form.html"/>
  +        <Frame label="Frame" href="Frame.html"/>
  +        <GenericLink label="GenericLink" href="GenericLink.html"/>
  +        <Hidden label="Hidden" href="Hidden.html"/>
  +        <Image label="Image" href="Image.html"/>
  +        <ImageSubmit label="ImageSubmit" href="ImageSubmit.html"/>
           <Insert label="Insert" href="Insert.html"/>
           <InsertText label="InsertText" href="InsertText.html"/>
           <LinkSubmit label="LinkSubmit" href="LinkSubmit.html"/>
  
  
  

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