CVS: TapestryBook/examples/context/WEB-INF CreditCard.page,NONE,1.1 JSP.page,NONE,1.1 CreditCardField.jwc,NONE,1.1 CreditCardResults.page,NONE,1.1 CreditCardField.properties,NONE,1.1 CreditCardField.script,NONE,1.1 JSPForm.page,NONE,1.1 Pets.page,1.1,1.2 ToDo2.page,1.1,1.2 Toppings.page,1.2,1.3 L10N.page,1.1,1.2 Register2.page,1.3,1.4 RegisterConfirm.page,1.3,1.4 Dates.page,1.2,1.3 ToDo3.page,1.1,1.2 Border.html,1.1,1.2 DatesConfirm.page,1.1,1.2 ToDo.page,1.2,1.3 Border.jwc,1.2,1.3 Register.page,1.3,1.4 TextField1.page,1.2,1.3 Dates2.page,1.3,1.4 ResumeSummary.page,1.1,1.2 ResumeBuilder.page,1.1,1.2 examples.application,1.1,1.2 DirectArea.jwc,1.2,1.3 UploadResults.page,1.4,1.5 ToppingsResult.page,1.1,1.2 PetCategory.page,1.1,1.2 DatePickerResult.page,1.1,1.2 Login.page,1.1,1.2 ToDo4.page,1.1,1.2 L10NResult.page,1.1,1.2 Upload.page,1.4,1.5 web.xml,1.3,1.4 DatePicker.page,1.1,1.2

Howard Lewis Ship <[email protected]> Sun, 22 Jun 2003 09:42:41 -0700
Newsgroups gmane.comp.java.tapestry.cvs
Message-ID <[email protected]>
Update of /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF
In directory sc8-pr-cvs1:/tmp/cvs-serv27669/examples/context/WEB-INF

Modified Files:
	Pets.page ToDo2.page Toppings.page L10N.page Register2.page 
	RegisterConfirm.page Dates.page ToDo3.page Border.html 
	DatesConfirm.page ToDo.page Border.jwc Register.page 
	TextField1.page Dates2.page ResumeSummary.page 
	ResumeBuilder.page examples.application DirectArea.jwc 
	UploadResults.page ToppingsResult.page PetCategory.page 
	DatePickerResult.page Login.page ToDo4.page L10NResult.page 
	Upload.page web.xml DatePicker.page 
Added Files:
	CreditCard.page JSP.page CreditCardField.jwc 
	CreditCardResults.page CreditCardField.properties 
	CreditCardField.script JSPForm.page 
Log Message:
Check in lots of updates, due to revisions and the new chapter 08.

--- NEW FILE: CreditCard.page ---
<?xml version="1.0"?>
<!-- $Id: CreditCard.page,v 1.1 2003/06/22 16:42:07 hship Exp $ -->
<!DOCTYPE page-specification PUBLIC 
	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">

<page-specification class="examples.cc.CreditCard">

  <bean name="delegate" class="examples.register.RegisterDelegate"/>
  
  <property-specification name="cardType" type="examples.cc.CreditCardType"/>
  <property-specification name="cardNumber" type="java.lang.String"/>

	<component id="inputCardType" type="PropertySelection">
	  <binding name="model" expression="cardModel"/>
	  <binding name="value" expression="cardType"/>	
	</component>

  <context-asset name="stylesheet" path="css/style.css"/>
  
</page-specification>
--- NEW FILE: JSP.page ---
<?xml version="1.0"?>
<!-- $Id: JSP.page,v 1.1 2003/06/22 16:42:07 hship Exp $ -->
<!DOCTYPE page-specification PUBLIC 
	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">

<page-specification class="examples.JSP"/>

--- NEW FILE: CreditCardField.jwc ---
<?xml version="1.0"?>
<!-- $Id: CreditCardField.jwc,v 1.1 2003/06/22 16:42:07 hship Exp $ -->
<!DOCTYPE component-specification PUBLIC 
	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">

<component-specification
	class="examples.cc.CreditCardField"
	allow-body="no" allow-informal-parameters="no">
	
	<parameter name="cardNumber" type="java.lang.String" direction="form" required="yes"/>
	
	<parameter name="disabled" type="boolean" direction="in">
    <description>
    If true, then all four text fields will be disabled.
    </description>
  </parameter>
  
	<property-specification name="form" type="org.apache.tapestry.IForm"/>
	<property-specification name="name" type="java.lang.String"/>
	
</component-specification>
--- NEW FILE: CreditCardResults.page ---
<?xml version="1.0"?>
<!-- $Id: CreditCardResults.page,v 1.1 2003/06/22 16:42:07 hship Exp $ -->
<!DOCTYPE page-specification PUBLIC 
	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">

<page-specification class="examples.cc.CreditCardResults">
  
  <property-specification name="cardType" type="examples.cc.CreditCardType"/>
  <property-specification name="cardNumber" type="java.lang.String"/>

  <context-asset name="stylesheet" path="css/style.css"/>
  
</page-specification>
--- NEW FILE: CreditCardField.properties ---
# $Id: CreditCardField.properties,v 1.1 2003/06/22 16:42:07 hship Exp $

invalid-card-number={0} is not a valid credit card number.  Credit card numbers consist of four blocks of four digits.
card-number-format=Credit card numbers consists of four groups of four numbers.
--- NEW FILE: CreditCardField.script ---
<?xml version="1.0"?>
<!-- $Id: Publisher.script,v 1.4 2003/04/28 21:04:01 hlship Exp $ -->
<!DOCTYPE script PUBLIC
  "-//Apache Software Foundation//Tapestry Script Specification 3.0//EN"
	"http://jakarta.apache.org/tapestry/dtd/Script_3_0.dtd">

<script>
<!-- 

input symbols:

  creditCardField: The CreditCardField component
  formatMessage: Message displayed if any input field has invalid data.
  
output symbols:

  formValidateFunction The name of a form validator function that validates the fields.

-->

<input-symbol key="creditCardField" class="examples.cc.CreditCardField" required="yes"/>
<input-symbol key="formatMessage" class="java.lang.String" required="yes"/>

<set key="name" expression="creditCardField.name"/>

<let key="baseName">
  document.${creditCardField.form.name}.${name}	
</let>

<let key="field0">
  ${baseName}$g0
</let>

<let key="field1">
  ${baseName}$g1
</let>

<let key="field2">
  ${baseName}$g2	
</let>

<let key="field3">
  ${baseName}$g3	
</let>

<let key="formValidateFunction" unique="yes">
  validate_${name}	
</let>


<body>

<unique>
<![CDATA[
function onkeyup_cc_field(field, next)
{ 
  // IE only, I'm afraid
  var keycode = window.event.keyCode;

  if (keycode >=  48 && keycode <= 57 && field.value.length == 4)
  {
	  next.focus();
	  next.select();
  }
}	

function validate_cc_field(field)
{
  if (! field.value.match(/^\d{4}$/))
  {
    field.focus();
    field.select();
    window.alert("${formatMessage}");
    return false;
  }
     
  return true;
}
]]>
</unique>

<![CDATA[

function ${formValidateFunction}()
{
  return validate_cc_field(${field0}) &&
    validate_cc_field(${field1}) &&
    validate_cc_field(${field2}) &&
    validate_cc_field(${field3});
}

]]>
</body>

<initialization>
	
${field0}.onkeyup = function()
{
  onkeyup_cc_field(${field0}, ${field1});
}

${field1}.onkeyup = function()
{
  onkeyup_cc_field(${field1}, ${field2});
}

${field2}.onkeyup = function()
{
  onkeyup_cc_field(${field2}, ${field3});
}

</initialization>

</script>

--- NEW FILE: JSPForm.page ---
<?xml version="1.0"?>
<!-- $Id: JSPForm.page,v 1.1 2003/06/22 16:42:07 hship Exp $ -->
<!DOCTYPE page-specification PUBLIC 
	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">

<page-specification class="examples.JSPForm">

  <property-specification name="userName"	type="java.lang.String"/>
  
</page-specification>

Index: Pets.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Pets.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Pets.page	16 Mar 2003 02:55:40 -0000	1.1
--- Pets.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.pets.Pets"/>
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.pets.Pets"/>

Index: ToDo2.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ToDo2.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ToDo2.page	28 Feb 2003 00:25:41 -0000	1.1
--- ToDo2.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.todo2.ToDo2">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.todo2.ToDo2">

Index: Toppings.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Toppings.page,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Toppings.page	25 May 2003 21:27:32 -0000	1.2
--- Toppings.page	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.Toppings">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.Toppings">

Index: L10N.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/L10N.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** L10N.page	9 Mar 2003 21:34:47 -0000	1.1
--- L10N.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.l10n.L10N">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.l10n.L10N">

Index: Register2.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Register2.page,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Register2.page	22 Apr 2003 20:12:29 -0000	1.3
--- Register2.page	22 Jun 2003 16:42:07 -0000	1.4
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.register.Register">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.register.Register">

Index: RegisterConfirm.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/RegisterConfirm.page,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** RegisterConfirm.page	22 Apr 2003 20:12:29 -0000	1.3
--- RegisterConfirm.page	22 Jun 2003 16:42:07 -0000	1.4
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.register.RegisterConfirm">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.register.RegisterConfirm">

Index: Dates.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Dates.page,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Dates.page	21 Mar 2003 23:19:51 -0000	1.2
--- Dates.page	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.dates.Dates">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.dates.Dates">

Index: ToDo3.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ToDo3.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ToDo3.page	28 Feb 2003 00:25:41 -0000	1.1
--- ToDo3.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.todo3.ToDo3">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.todo3.ToDo3">

Index: Border.html
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Border.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Border.html	16 Mar 2003 02:55:40 -0000	1.1
--- Border.html	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 4,7 ****
--- 4,9 ----
  <span jwcid="@RenderBody"/>
  
+ <hr/>
+ 
  <p><a href="#" jwcid="@PageLink" page="Home">Return to Home page</a>.</p>
  

Index: DatesConfirm.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/DatesConfirm.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DatesConfirm.page	2 Mar 2003 22:56:19 -0000	1.1
--- DatesConfirm.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.dates.DatesConfirm">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.dates.DatesConfirm">

Index: ToDo.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ToDo.page,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ToDo.page	28 Feb 2003 00:25:41 -0000	1.2
--- ToDo.page	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.todo1.ToDo">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.todo1.ToDo">

Index: Border.jwc
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Border.jwc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Border.jwc	21 Mar 2003 23:19:51 -0000	1.2
--- Border.jwc	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE component-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <component-specification
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE component-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <component-specification

Index: Register.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Register.page,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Register.page	22 Apr 2003 20:12:30 -0000	1.3
--- Register.page	22 Jun 2003 16:42:07 -0000	1.4
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.register.Register">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.register.Register">

Index: TextField1.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/TextField1.page,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TextField1.page	28 Feb 2003 00:25:41 -0000	1.2
--- TextField1.page	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.TextField1">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.TextField1">

Index: Dates2.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Dates2.page,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Dates2.page	4 Mar 2003 02:15:42 -0000	1.3
--- Dates2.page	22 Jun 2003 16:42:07 -0000	1.4
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.dates.Dates2">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.dates.Dates2">

Index: ResumeSummary.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ResumeSummary.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ResumeSummary.page	21 Mar 2003 23:57:27 -0000	1.1
--- ResumeSummary.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.resume.ResumeSummary">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.resume.ResumeSummary">

Index: ResumeBuilder.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ResumeBuilder.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ResumeBuilder.page	21 Mar 2003 23:57:27 -0000	1.1
--- ResumeBuilder.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.resume.ResumeBuilder">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.resume.ResumeBuilder">

Index: examples.application
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/examples.application,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** examples.application	21 Mar 2003 23:57:27 -0000	1.1
--- examples.application	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE application PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <application name="Tapestry Book Examples">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE application PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <application name="Tapestry Book Examples">

Index: DirectArea.jwc
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/DirectArea.jwc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DirectArea.jwc	24 Mar 2003 19:45:58 -0000	1.2
--- DirectArea.jwc	22 Jun 2003 16:42:07 -0000	1.3
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE component-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <component-specification
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE component-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <component-specification

Index: UploadResults.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/UploadResults.page,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** UploadResults.page	21 Mar 2003 23:19:51 -0000	1.4
--- UploadResults.page	22 Jun 2003 16:42:07 -0000	1.5
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.upload.UploadResults">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.upload.UploadResults">

Index: ToppingsResult.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ToppingsResult.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ToppingsResult.page	20 Feb 2003 15:13:43 -0000	1.1
--- ToppingsResult.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.ToppingsResult">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.ToppingsResult">

Index: PetCategory.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/PetCategory.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PetCategory.page	16 Mar 2003 02:55:40 -0000	1.1
--- PetCategory.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.pets.PetCategory">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.pets.PetCategory">

Index: DatePickerResult.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/DatePickerResult.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DatePickerResult.page	25 May 2003 21:27:32 -0000	1.1
--- DatePickerResult.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.DatePickerResult">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.DatePickerResult">

Index: Login.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Login.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Login.page	20 Feb 2003 15:13:38 -0000	1.1
--- Login.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.Login">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.Login">

Index: ToDo4.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/ToDo4.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ToDo4.page	25 May 2003 21:27:32 -0000	1.1
--- ToDo4.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  	     	
  <page-specification class="examples.todo4.ToDo4">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  	     	
  <page-specification class="examples.todo4.ToDo4">

Index: L10NResult.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/L10NResult.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** L10NResult.page	9 Mar 2003 21:34:47 -0000	1.1
--- L10NResult.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification>
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification>

Index: Upload.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/Upload.page,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Upload.page	21 Mar 2003 23:19:51 -0000	1.4
--- Upload.page	22 Jun 2003 16:42:07 -0000	1.5
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.upload.Upload">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.upload.Upload">

Index: web.xml
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/web.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** web.xml	21 Mar 2003 23:19:51 -0000	1.3
--- web.xml	22 Jun 2003 16:42:07 -0000	1.4
***************
*** 8,13 ****
  
  <web-app>
! 	
! 	<distributable/>
  	
  	<servlet>
--- 8,12 ----
  
  <web-app>
! 	<display-name>Tapestry In Action Examples</display-name>
  	
  	<servlet>
***************
*** 27,29 ****
  	</servlet-mapping>
  	
! </web-app>
--- 26,33 ----
  	</servlet-mapping>
  	
!   <taglib>
!   	<taglib-uri>http://jakarta.apache.org/tapestry/tld/tapestry_1_0.tld</taglib-uri>
!   	<taglib-location>/WEB-INF/lib/tapestry-3.0-beta-2.jar</taglib-location>
!   </taglib>
!   	
! </web-app>
\ No newline at end of file

Index: DatePicker.page
===================================================================
RCS file: /cvsroot/tapestry/TapestryBook/examples/context/WEB-INF/DatePicker.page,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DatePicker.page	25 May 2003 21:27:32 -0000	1.1
--- DatePicker.page	22 Jun 2003 16:42:07 -0000	1.2
***************
*** 2,7 ****
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 1.4//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_1_4.dtd">
  
  <page-specification class="examples.DatePicker">
--- 2,7 ----
  <!-- $Id$ -->
  <!DOCTYPE page-specification PUBLIC 
! 	"-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
! 	"http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
  
  <page-specification class="examples.DatePicker">



-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php