You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2008/06/24 17:14:21 UTC

svn commit: r671206 - in /tapestry/tapestry3/trunk: ./ doc/src/ComponentReference/ examples/ framework/src/org/apache/tapestry/enhance/javassist/ tapestry-contrib/ tapestry-contrib/src/org/apache/tapestry/contrib/table/components/ tapestry-examples/ ta...

Author: jkuhnert
Date: Tue Jun 24 08:14:19 2008
New Revision: 671206

URL: http://svn.apache.org/viewvc?rev=671206&view=rev
Log:
First pass conversion of ant build over to maven.

Added:
    tapestry/tapestry3/trunk/tapestry-contrib/
      - copied from r670597, tapestry/tapestry3/trunk/contrib/
    tapestry/tapestry3/trunk/tapestry-contrib/pom.xml   (with props)
    tapestry/tapestry3/trunk/tapestry-examples/
      - copied from r670597, tapestry/tapestry3/trunk/examples/
    tapestry/tapestry3/trunk/tapestry-examples/pom.xml   (with props)
    tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/
      - copied from r670597, tapestry/tapestry3/trunk/examples/Workbench/
    tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml   (with props)
    tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml   (with props)
    tapestry/tapestry3/trunk/tapestry-framework/
      - copied from r670597, tapestry/tapestry3/trunk/framework/
    tapestry/tapestry3/trunk/tapestry-framework/pom.xml   (with props)
Removed:
    tapestry/tapestry3/trunk/examples/
    tapestry/tapestry3/trunk/framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java
    tapestry/tapestry3/trunk/tapestry-examples/Workbench/
    tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/config/web.xml
Modified:
    tapestry/tapestry3/trunk/build.xml
    tapestry/tapestry3/trunk/doc/src/ComponentReference/ActionLink.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Any.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Checkbox.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Conditional.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/DatePicker.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/DirectLink.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Foreach.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Form.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Image.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Insert.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/PageLink.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/PropertySelection.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/RadioGroup.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBlock.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBody.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Script.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Select.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Shell.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Submit.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/TextArea.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/TextField.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/Upload.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/ValidField.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.InspectorButton.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.PopupLink.html
    tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.Table.html
    tapestry/tapestry3/trunk/tapestry-contrib/src/org/apache/tapestry/contrib/table/components/TableFormPages.jwc
    tapestry/tapestry3/trunk/tapestry-examples/build.xml
    tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/build.xml
    tapestry/tapestry3/trunk/tapestry-framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java

Modified: tapestry/tapestry3/trunk/build.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/build.xml?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/build.xml (original)
+++ tapestry/tapestry3/trunk/build.xml Tue Jun 24 08:14:19 2008
@@ -44,7 +44,7 @@
 	
 	<path id="vlib.classpath">
 		<pathelement location="${vlibbeans.jar}"/>
-		<pathelement location="examples/VlibBeans/jboss"/>
+		<pathelement location="tapestry-examples/VlibBeans/jboss"/>
 		<pathelement location="${jboss.client.dir}/jboss-j2ee.jar"/>
 		<pathelement location="${jboss.client.dir}/jboss-client.jar"/>
 		<pathelement location="${jboss.client.dir}/jnp-client.jar"/>
@@ -55,7 +55,7 @@
 		<ant dir="framework" target="clean"/>
 		<ant dir="contrib" target="clean"/>
 		<ant dir="junit" target="clean"/>
-		<ant dir="examples" target="clean"/>
+		<ant dir="tapestry-examples" target="clean"/>
 		<ant dir="doc/src" target="clean"/>
 		<delete dir="${private.dir}" quiet="true"/>		
 	</target>
@@ -80,19 +80,19 @@
      	 doesn't override definitions in each project's buildfile. -->
 		<ant dir="framework" target="install" inheritAll="false"/>
 		<ant dir="contrib" target="install" inheritAll="false"/>
-		<ant dir="examples" target="install" inheritAll="false"/>
+		<ant dir="tapestry-examples" target="install" inheritAll="false"/>
 	</target>
 	
 	<target name="build-workbench" description="Builds and installs the Workbench demo."
 		depends="download-ext-framework">
-		<ant dir="examples/Workbench" target="install" inheritAll="false"/>
+		<ant dir="tapestry-examples/tapestry-workbench" target="install" inheritAll="false"/>
 	</target>
 	
 	<target name="build-vlib" description="Builds and installs the Virtual Library demo."
 		depends="download-ext-framework,check-for-jboss-dir">
-		<ant dir="examples/VlibBeans" target="install" inheritAll="false"/>
-		<ant dir="examples/Vlib" target="install" inheritAll="false"/>
-		<ant dir="examples/VlibEAR" target="install" inheritAll="false"/>		
+		<ant dir="tapestry-examples/VlibBeans" target="install" inheritAll="false"/>
+		<ant dir="tapestry-examples/Vlib" target="install" inheritAll="false"/>
+		<ant dir="tapestry-examples/VlibEAR" target="install" inheritAll="false"/>
 	</target>
 	
 	<target name="documentation" depends="download-ext-doc"

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/ActionLink.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/ActionLink.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/ActionLink.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/ActionLink.html Tue Jun 24 08:14:19 2008
@@ -164,7 +164,7 @@
   from the Customer List table.
 	<p>
 
-<table class="examples" cellspacing="6">
+<table class="tapestry-examples" cellspacing="6">
   <tr align="left">
    <th>ID</th>
    <th>&nbsp;</th>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Any.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Any.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Any.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Any.html Tue Jun 24 08:14:19 2008
@@ -104,7 +104,7 @@
   In this example the Any component is use to generate XML order list document. 
 	<p>
 
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
 <font color="blue">&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;</font><br> 

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Checkbox.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Checkbox.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Checkbox.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Checkbox.html Tue Jun 24 08:14:19 2008
@@ -117,7 +117,7 @@
 	Provides a checkbox for the user contact a sales representative. 
 	<p>
 	
-<table class="examples" cellspacing="8">
+<table class="tapestry-examples" cellspacing="8">
  <tr>
 	<td>
 	 <input type="checkbox" checked> Contact Sales Rep

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Conditional.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Conditional.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Conditional.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Conditional.html Tue Jun 24 08:14:19 2008
@@ -129,7 +129,7 @@
   person is a manager and if they are a manager whether they have any staff.	
 	<p>
 	
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
 John Smith is a Manager with <font color="red"><b>no</b></font> staff. 	

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/DatePicker.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/DatePicker.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/DatePicker.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/DatePicker.html Tue Jun 24 08:14:19 2008
@@ -155,7 +155,7 @@
   an end date.
   </p>
 
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
 <form jwcid="form">

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/DirectLink.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/DirectLink.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/DirectLink.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/DirectLink.html Tue Jun 24 08:14:19 2008
@@ -195,7 +195,7 @@
   Customers from a Customer List table.
 	<p>
 
-<table class="examples" cellspacing="6">
+<table class="tapestry-examples" cellspacing="6">
   <tr align="left">
    <th>ID</th>
    <th>&nbsp;</th>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Foreach.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Foreach.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Foreach.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Foreach.html Tue Jun 24 08:14:19 2008
@@ -150,7 +150,7 @@
 	The Foreach component is used to generate a table from a Customer List.
 	<p>
 
-<table class="examples" cellspacing="6">
+<table class="tapestry-examples" cellspacing="6">
   <tr align="left">
    <th>ID</th>
    <th>&nbsp;</th>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Form.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Form.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Form.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Form.html Tue Jun 24 08:14:19 2008
@@ -178,7 +178,7 @@
 	The Form component is used to provide a simple login page.
 	<p>
 
-<table class="examples" cellpadding="4">
+<table class="tapestry-examples" cellpadding="4">
 <form>
  <tr>
   <td>Username:</td><td><input size="12"></td>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Image.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Image.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Image.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Image.html Tue Jun 24 08:14:19 2008
@@ -111,7 +111,7 @@
 &lt;context-asset&gt; to reference the image. 
 	<p>
 
-<table class="examples" cellpadding="8" valign="middle">
+<table class="tapestry-examples" cellpadding="8" valign="middle">
 <tr>
  <td>
   <a href="http://tapestry.sourceforge.net/">
@@ -150,7 +150,7 @@
 <tt>ExternalAsset</tt></a> to reference the image's URL. 
 	<p>
 
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
   <h4>Elvis helitanker Saves 14 Lives</h4>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Insert.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Insert.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Insert.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Insert.html Tue Jun 24 08:14:19 2008
@@ -160,7 +160,7 @@
 	Inserts the pages dueDate and applies the specified DateFormat and HTML class.  
 	<p>
 
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
  The order was due on the <font color="red"><b>21 January 2002</b></font>. 	

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/PageLink.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/PageLink.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/PageLink.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/PageLink.html Tue Jun 24 08:14:19 2008
@@ -177,7 +177,7 @@
    <td><font color="white"><b><a href="PageLink.html">Logout</a></b></font></td>
  </tr>
 </table>
-<table class="examples" cellpadding="6" width="100%">
+<table class="tapestry-examples" cellpadding="6" width="100%">
  <tr>
    <td>My mail page content.</td>
  </tr>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/PropertySelection.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/PropertySelection.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/PropertySelection.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/PropertySelection.html Tue Jun 24 08:14:19 2008
@@ -173,7 +173,7 @@
   <a href="../api/org/apache/tapestry/form/StringPropertySelectionModel.html"><tt>StringPropertySelectionModel<tt></tt></tt></a>
             <tt><tt> 
             <p> 
-            <table class="examples" valign="middle" cellspacing="8">
+            <table class="tapestry-examples" valign="middle" cellspacing="8">
               <tr> 
                 <td>Gender: 
                   <select>
@@ -218,7 +218,7 @@
               and the new cloting item information is displayed by the description, 
               label and price <a href="Insert.html">Insert</a> components. 
             <p> 
-            <table class="examples" valign="middle" cellspacing="8">
+            <table class="tapestry-examples" valign="middle" cellspacing="8">
               <tr> 
                 <td>Item: 
                   <select>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/RadioGroup.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/RadioGroup.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/RadioGroup.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/RadioGroup.html Tue Jun 24 08:14:19 2008
@@ -133,7 +133,7 @@
   &lt;fieldset&gt;&lt;legend&gt;..&nbsp;&lt;/legend&gt;..&nbsp;&lt;/fieldset&gt; tags.
   <p/>
       
-<table class="examples" cellpadding="4" cellspacing="4">
+<table class="tapestry-examples" cellpadding="4" cellspacing="4">
  <tr>
   <td>
    <fieldset><legend>Order Size</legend>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBlock.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBlock.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBlock.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBlock.html Tue Jun 24 08:14:19 2008
@@ -113,7 +113,7 @@
 	        <p> This example shows a page with a custom TabPanel component. When 
               a user selects a tab, TabPanel switches content. Each tab content 
               is defined by a Block.</p>
-			<table class="examples" border="0" width="350" cellspacing="0" cellpadding="0">
+			<table class="tapestry-examples" border="0" width="350" cellspacing="0" cellpadding="0">
 <tr>
   <td width="10">&nbsp;</td>
   <td>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBody.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBody.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBody.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/RenderBody.html Tue Jun 24 08:14:19 2008
@@ -107,7 +107,7 @@
               a Border component to provide common layout to almost all of application 
               pages. </p>
              
-	        <table width="200" class="examples" cellspacing="0" border="0" align="center">
+	        <table width="200" class="tapestry-examples" cellspacing="0" border="0" align="center">
               <tr>
 				<td valign="top" style="text-align:justify;">
 <H1 align=center><FONT color=#ff3333>Agnosis</FONT></H1>
@@ -123,7 +123,7 @@
 				<BR/>
 				<B>O</B>lvidados por el Hado
 				<BR/>
-				<B>S</B>i Él existe
+				<B>S</B>i �l existe
 				<BR/>
 				<B>I</B>ncomprensible y eterno
 				<BR/>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Script.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Script.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Script.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Script.html Tue Jun 24 08:14:19 2008
@@ -146,7 +146,7 @@
   <tt>${expression}</tt> syntax.
 	<p>
 
-<table class="examples" cellpadding="4">
+<table class="tapestry-examples" cellpadding="4">
 <form>
 
  <tr>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Select.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Select.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Select.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Select.html Tue Jun 24 08:14:19 2008
@@ -139,7 +139,7 @@
 	with only a single component (instead of three, as will be shown below).
 	<p>
 
-<table class="examples" cellpadding="4">
+<table class="tapestry-examples" cellpadding="4">
  <tr>
   <td>Select a color
 	 <select name="selection" multiple>		

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Shell.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Shell.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Shell.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Shell.html Tue Jun 24 08:14:19 2008
@@ -220,7 +220,7 @@
   path to resolve the stylesheet.
 	<p>
 
-<table class="examples" cellpadding="24">
+<table class="tapestry-examples" cellpadding="24">
 <tr>
  <td>
   <h2><i><font color="navy">Customer Login</font></i></h2>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Submit.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Submit.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Submit.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Submit.html Tue Jun 24 08:14:19 2008
@@ -190,7 +190,7 @@
   .
 	<p>
 
-<table class="examples" cellpadding="4">
+<table class="tapestry-examples" cellpadding="4">
 <form>
  <tr>
   <td>Username:</td><td><input size="12"></td>
@@ -262,7 +262,7 @@
  <A href="PropertySelection.html">PropertySelection</a>. 
  <p>
 
-<table class="examples" valign="middle" cellspacing="8">
+<table class="tapestry-examples" valign="middle" cellspacing="8">
  <tr>
   <td>
   <form>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/TextArea.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/TextArea.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/TextArea.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/TextArea.html Tue Jun 24 08:14:19 2008
@@ -124,7 +124,7 @@
   feedback &lt;textarea&gt;.
 	<p>
 
-  <table class="examples" valign="middle" cellspacing="8">
+  <table class="tapestry-examples" valign="middle" cellspacing="8">
 	 <tr>
 	  <td>Your Comments</td>
 	  <td><TEXTAREA name=textarea rows=5>Please enter your comments here</TEXTAREA>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/TextField.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/TextField.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/TextField.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/TextField.html Tue Jun 24 08:14:19 2008
@@ -130,7 +130,7 @@
   form input field.
 	<p>
 
-<table class="examples" cellspacing="8" valign="middle">
+<table class="tapestry-examples" cellspacing="8" valign="middle">
  <tr>
   <td>Id</td>
   <td><input size="8" value="1245"></td>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/Upload.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/Upload.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/Upload.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/Upload.html Tue Jun 24 08:14:19 2008
@@ -134,7 +134,7 @@
   obtain the web application's directory path.
 
 <form>
-<table class="examples" cellpadding="4">
+<table class="tapestry-examples" cellpadding="4">
 <tr>
  <td colspan="2">File:&nbsp;<input type="file"></td>
 </tr>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/ValidField.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/ValidField.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/ValidField.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/ValidField.html Tue Jun 24 08:14:19 2008
@@ -226,7 +226,7 @@
 	<p>
 
 <form>
-<table class="examples" cellpadding="2">
+<table class="tapestry-examples" cellpadding="2">
 <tr>
  <td colspan="2"><font color="navy" size="+2"><i><b>Regal Auctions Bid Page</b></i></font></td>
 </tr>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.InspectorButton.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.InspectorButton.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.InspectorButton.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.InspectorButton.html Tue Jun 24 08:14:19 2008
@@ -117,7 +117,7 @@
 	<p>
   This example is a simple page with the InspectorButton.</p>
       
-<table class="examples" cellpadding="8">
+<table class="tapestry-examples" cellpadding="8">
 <tr>
  <td>
 <h1>Hello world</h1>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.PopupLink.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.PopupLink.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.PopupLink.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.PopupLink.html Tue Jun 24 08:14:19 2008
@@ -123,7 +123,7 @@
   This example provides a context help popup link for an account number field. 
   <p>
 
-<table class="examples" cellspacing="8">
+<table class="tapestry-examples" cellspacing="8">
 <tr>
  <td>Account Number:</td>
  <td><input type="text"/></td>

Modified: tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.Table.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.Table.html?rev=671206&r1=671205&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.Table.html (original)
+++ tapestry/tapestry3/trunk/doc/src/ComponentReference/contrib.Table.html Tue Jun 24 08:14:19 2008
@@ -474,7 +474,7 @@
   <b>Examples</b>
   <p>
 
-<table class="examples" cellpadding="4" width="700">
+<table class="tapestry-examples" cellpadding="4" width="700">
 <tr><td>
 
 <SPAN><A 

Added: tapestry/tapestry3/trunk/tapestry-contrib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-contrib/pom.xml?rev=671206&view=auto
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-contrib/pom.xml (added)
+++ tapestry/tapestry3/trunk/tapestry-contrib/pom.xml Tue Jun 24 08:14:19 2008
@@ -0,0 +1,118 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-contrib</artifactId>
+    <packaging>jar</packaging>
+    <version>3.0.5-SNAPSHOT</version>
+
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>3.0.5-SNAPSHOT</version>
+    </parent>
+    <name>Contrib</name>
+    <inceptionYear>2006</inceptionYear>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>tapestry-framework</artifactId>
+            <version>3.0.5-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>jboss-j2ee</artifactId>
+            <version>4.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.9</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>2.1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>ognl</groupId>
+            <artifactId>ognl</artifactId>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>src</sourceDirectory>
+        <resources>
+            <resource>
+                <directory>src</directory>
+                <includes>
+                    <include>**/*</include>
+                    <include>**/*.library</include>
+                    <include>**/*.page</include>
+                    <include>**/*.jwc</include>
+                </includes>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </resource>
+        </resources>
+        <!--
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <testResources>
+            <testResource>
+                <directory>src/test</directory>
+                <includes><include>**/*</include></includes>
+                 <excludes>
+                    <exclude>**/*.java</exclude>
+                </excludes>
+            </testResource>
+        </testResources>
+        -->
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <outputDirectory>../target/site/tapestry-contrib</outputDirectory>
+        <excludeDefaults>true</excludeDefaults>
+    </reporting>
+
+</project>

Propchange: tapestry/tapestry3/trunk/tapestry-contrib/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry3/trunk/tapestry-contrib/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry3/trunk/tapestry-contrib/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: tapestry/tapestry3/trunk/tapestry-contrib/src/org/apache/tapestry/contrib/table/components/TableFormPages.jwc
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-contrib/src/org/apache/tapestry/contrib/table/components/TableFormPages.jwc?rev=671206&r1=670597&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-contrib/src/org/apache/tapestry/contrib/table/components/TableFormPages.jwc (original)
+++ tapestry/tapestry3/trunk/tapestry-contrib/src/org/apache/tapestry/contrib/table/components/TableFormPages.jwc Tue Jun 24 08:14:19 2008
@@ -17,10 +17,10 @@
 <!--  $Id$ -->
 <!DOCTYPE component-specification PUBLIC 
   "-//Apache Software Foundation//Tapestry Specification 3.0//EN" 
-  "http://jakarta.apache.org/tapestry/dtd/Tapestry_3_0.dtd">
+  "http://tapestry.apache.org/dtd/Tapestry_3_0.dtd">
 	
-<component-specification class="org.apache.tapestry.contrib.table.components.TableFormPages" 
-	allow-body="no" allow-informal-parameters="yes">
+<component-specification class="org.apache.tapestry.contrib.table.components.TableFormPages"
+                         allow-body="no" allow-informal-parameters="yes">
 	
 	<description>
         A version of TablePages that is designed for operation in a form. 
@@ -28,8 +28,6 @@
         This component must be wrapped by TableView. 
 	</description>
   
-	<component id="informal" type="Any" inherit-informal-parameters="yes"/>
-  
 	<parameter name="pagesDisplayed" 
 		type="int" 
 		required="no"
@@ -42,8 +40,10 @@
     </parameter>
   
 	<property-specification name="selectedPage" type="int"/>
-  
-	<component id="hiddenCurrentPage" type="Hidden">
+
+    <component id="informal" type="Any" inherit-informal-parameters="yes"/>
+
+    <component id="hiddenCurrentPage" type="Hidden">
 		<binding name="value" expression="currentPage"/>
 	</component>
   

Modified: tapestry/tapestry3/trunk/tapestry-examples/build.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-examples/build.xml?rev=671206&r1=670597&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-examples/build.xml (original)
+++ tapestry/tapestry3/trunk/tapestry-examples/build.xml Tue Jun 24 08:14:19 2008
@@ -3,12 +3,12 @@
      its targets in each of its sub-projects. -->
 <project name="Tapestry Examples" default="install">
 	<target name="clean">
-		<ant dir="Workbench" target="clean"/>
+		<ant dir="tapestry-workbench" target="clean"/>
 		<ant dir="VlibBeans" target="clean"/>
 		<ant dir="Vlib" target="clean"/>
 	</target>
 	<target name="install">
-		<ant dir="Workbench" target="install" inheritAll="false"/>
+		<ant dir="tapestry-workbench" target="install" inheritAll="false"/>
 		<ant dir="VlibBeans" target="install" inheritAll="false"/>
 		<ant dir="Vlib" target="install" inheritAll="false"/>
 		<ant dir="VlibEAR" target="install" inheritAll="false"/>

Added: tapestry/tapestry3/trunk/tapestry-examples/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-examples/pom.xml?rev=671206&view=auto
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-examples/pom.xml (added)
+++ tapestry/tapestry3/trunk/tapestry-examples/pom.xml Tue Jun 24 08:14:19 2008
@@ -0,0 +1,57 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-examples</artifactId>
+    <packaging>pom</packaging>
+    <version>3.0.5-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>3.0.5-SNAPSHOT</version>
+    </parent>
+    <name>Examples</name>
+    <description>Tapestry example applications</description>
+    <inceptionYear>2006</inceptionYear>
+
+    <modules>
+        <module>tapestry-workbench</module>
+    </modules>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>tapestry-framework</artifactId>
+                <version>3.0.5-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>tapestry-contrib</artifactId>
+                <version>3.0.5-SNAPSHOT</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <version>2.0.2</version>
+                    <inherited>true</inherited>
+                    <configuration>
+                        <source>1.4</source>
+                        <target>1.4</target>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+    <reporting>
+        <outputDirectory>../target/site/tapestry-examples</outputDirectory>
+    </reporting>
+</project>

Propchange: tapestry/tapestry3/trunk/tapestry-examples/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry3/trunk/tapestry-examples/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry3/trunk/tapestry-examples/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/build.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/build.xml?rev=671206&r1=670597&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/build.xml (original)
+++ tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/build.xml Tue Jun 24 08:14:19 2008
@@ -39,7 +39,7 @@
 		<mkdir dir="${build.dir}"/>
 		<mkdir dir="${examples.dir}"/>
 		
-		<copy file="${config.dir}/web.xml" todir="${build.dir}">
+		<copy file="context/WEB-INF/web.xml" todir="${build.dir}">
 			<filterset>
 				<filter token="TAPESTRY_JAR" value="${framework.jar}"/>
 			</filterset>

Added: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml?rev=671206&view=auto
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml (added)
+++ tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml Tue Jun 24 08:14:19 2008
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--$Id$ -->
+<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+ "http://java.sun.com/dtd/web-app_2_3.dtd">
+<web-app>
+  <display-name>Tapestry Workbench Example</display-name>
+  
+	<filter>
+		<filter-name>redirect</filter-name>
+		<filter-class>org.apache.tapestry.RedirectFilter</filter-class>
+	</filter>
+	
+	<filter-mapping>
+		<filter-name>redirect</filter-name>
+		<url-pattern>/</url-pattern>
+	</filter-mapping>
+  
+  <servlet>
+  	<servlet-name>workbench</servlet-name>
+    <servlet-class>org.apache.tapestry.ApplicationServlet</servlet-class>
+  	<load-on-startup>0</load-on-startup>
+  </servlet>
+     
+  <servlet-mapping>
+  	<servlet-name>workbench</servlet-name>
+  	<url-pattern>/app</url-pattern>
+  </servlet-mapping>  
+
+  <session-config>
+  	<session-timeout>15</session-timeout>
+  </session-config>
+
+  <taglib>
+  	<taglib-uri>http://jakarta.apache.org/tapestry/tld/tapestry_1_0.tld</taglib-uri>
+  	<taglib-location>/WEB-INF/lib/tapestry-framework-3.0.5-SNAPSHOT.jar</taglib-location>
+  </taglib>
+</web-app>

Propchange: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/context/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml?rev=671206&view=auto
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml (added)
+++ tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml Tue Jun 24 08:14:19 2008
@@ -0,0 +1,110 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-Workbench</artifactId>
+    <packaging>war</packaging>
+    <version>3.0.5-SNAPSHOT</version>
+
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-examples</artifactId>
+        <version>3.0.5-SNAPSHOT</version>
+    </parent>
+
+    <name>Tapestry Workbench</name>
+    <inceptionYear>2006</inceptionYear>
+
+    <dependencies>
+        <dependency>
+            <groupId>jcharts</groupId>
+            <artifactId>jcharts</artifactId>
+            <version>0.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>tapestry-contrib</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>tapestry-framework</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <version>2.3</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>src</sourceDirectory>
+
+        <resources>
+            <resource>
+                <directory>src</directory>
+                <includes>
+                    <include>**/*.gif</include>
+                    <include>**/*.png</include>
+                    <include>**/*.jwc</include>
+                    <include>**/*.page</include>
+                    <include>**/*.html</include>
+                    <include>**/*.properties</include>
+                </includes>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.0.2</version>
+                <configuration>
+                    <source>1.4</source>
+                    <target>1.4</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.mortbay.jetty</groupId>
+                <artifactId>maven-jetty-plugin</artifactId>
+                <version>6.1.3</version>
+                <configuration>
+                    <webAppSourceDirectory>${basedir}/context</webAppSourceDirectory>
+                    <contextPath>/</contextPath>
+                    <systemProperties>
+                        <systemProperty>
+                            <name>org.apache.tapestry.disable-caching</name>
+                            <value>true</value>
+                        </systemProperty>
+                    </systemProperties>
+                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>commons-logging</groupId>
+                        <artifactId>commons-logging</artifactId>
+                        <version>1.0.4</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>log4j</groupId>
+                        <artifactId>log4j</artifactId>
+                        <version>1.2.13</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-war-plugin</artifactId>
+                <version>2.0.2</version>
+                <configuration>
+                    <warSourceDirectory>${basedir}/context</warSourceDirectory>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry3/trunk/tapestry-examples/tapestry-workbench/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: tapestry/tapestry3/trunk/tapestry-framework/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-framework/pom.xml?rev=671206&view=auto
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-framework/pom.xml (added)
+++ tapestry/tapestry3/trunk/tapestry-framework/pom.xml Tue Jun 24 08:14:19 2008
@@ -0,0 +1,162 @@
+<!--suppress ALL -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-framework</artifactId>
+    <packaging>jar</packaging>
+    <version>3.0.5-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>3.0.5-SNAPSHOT</version>
+    </parent>
+    <name>Tapestry Core Library - ${version}</name>
+    <inceptionYear>2006</inceptionYear>
+
+    <dependencies>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>javassist</artifactId>
+            <!-- Override parent pom -->
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>ognl</groupId>
+            <artifactId>ognl</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.13</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-digester</groupId>
+            <artifactId>commons-digester</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>bsf</groupId>
+            <artifactId>bsf</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>oro</groupId>
+            <artifactId>oro</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <sourceDirectory>src</sourceDirectory>
+        <resources>
+            <resource>
+                <directory>META-INF</directory>
+                <includes>
+                    <include>**</include>
+                </includes>
+                <targetPath>META-INF</targetPath>
+            </resource>
+            <resource>
+                <directory>src</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+                <excludes>
+                    <exclude>**/*.java</exclude>
+                    <exclude>**/build.xml</exclude>
+                    <exclude>**/.cvsignore</exclude>
+                </excludes>
+            </resource>
+        </resources>
+        <!--
+                <testSourceDirectory>src/test</testSourceDirectory>
+                <testResources>
+                    <testResource>
+                        <directory>src/test</directory>
+                        <includes>
+                            <include>**/*</include>
+                        </includes>
+                        <excludes>
+                            <exclude>**/*.java</exclude>
+                        </excludes>
+                    </testResource>
+                    <testResource>
+                        <directory>src/conf</directory>
+                        <includes>
+                            <include>log4j.properties</include>
+                        </includes>
+                    </testResource>
+                </testResources>
+        -->
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <outputDirectory>../target/site/tapestry-framework</outputDirectory>
+    </reporting>
+
+</project>

Propchange: tapestry/tapestry3/trunk/tapestry-framework/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry3/trunk/tapestry-framework/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: tapestry/tapestry3/trunk/tapestry-framework/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: tapestry/tapestry3/trunk/tapestry-framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry3/trunk/tapestry-framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java?rev=671206&r1=670597&r2=671206&view=diff
==============================================================================
--- tapestry/tapestry3/trunk/tapestry-framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java (original)
+++ tapestry/tapestry3/trunk/tapestry-framework/src/org/apache/tapestry/enhance/javassist/ClassFabricator.java Tue Jun 24 08:14:19 2008
@@ -14,20 +14,14 @@
 
 package org.apache.tapestry.enhance.javassist;
 
-import java.io.IOException;
-import java.text.MessageFormat;
-
-import javassist.CannotCompileException;
-import javassist.ClassPool;
-import javassist.CtClass;
-import javassist.CtField;
-import javassist.CtMethod;
-import javassist.NotFoundException;
-
+import javassist.*;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.apache.tapestry.enhance.CodeGenerationException;
 
+import java.io.IOException;
+import java.text.MessageFormat;
+
 /**
  *  @author Mindbridge
  *  @version $Id$
@@ -278,10 +272,6 @@
         {
             return _genClass.toBytecode();
         }
-        catch (NotFoundException e)
-        {
-            throw new CodeGenerationException(e);
-        }
         catch (IOException e)
         {
             throw new CodeGenerationException(e);