You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2006/11/11 20:51:21 UTC

svn commit: r473784 - in /incubator/wicket/branches/wicket-1.x: wicket-examples/src/main/java/wicket/examples/forminput/ wicket-extensions/licenses/ wicket-extensions/src/main/java/wicket/extensions/markup/html/datepicker/ wicket-extensions/src/site/ w...

Author: dashorst
Date: Sat Nov 11 11:51:20 2006
New Revision: 473784

URL: http://svn.apache.org/viewvc?view=rev&rev=473784
Log:
WICKET-43 removed datepicker from code base

Removed:
    incubator/wicket/branches/wicket-1.x/wicket-extensions/licenses/jscalendar-license.txt
    incubator/wicket/branches/wicket-1.x/wicket-extensions/src/main/java/wicket/extensions/markup/html/datepicker/
    incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/DatePicker.xml
    incubator/wicket/branches/wicket-1.x/wicket-extensions/src/xdocs/
Modified:
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.java
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_da_DK.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_de.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_fa_IR.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_ja.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_nl.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_pt_BR.html
    incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_zh_CN.html
    incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/site.xml
    incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/index.xml

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.html Sat Nov 11 11:51:20 2006
@@ -26,9 +26,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">Double</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">Date</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 	          <label>Listview in a Form</label>			  
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.java?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput.java Sat Nov 11 11:51:20 2006
@@ -20,13 +20,10 @@
 import java.net.MalformedURLException;
 import java.net.URL;
 import java.util.Arrays;
-import java.util.Date;
 import java.util.List;
 import java.util.Locale;
 
 import wicket.examples.WicketExamplePage;
-import wicket.extensions.markup.html.datepicker.DatePicker;
-import wicket.markup.html.WebMarkupContainer;
 import wicket.markup.html.basic.Label;
 import wicket.markup.html.form.Check;
 import wicket.markup.html.form.CheckBox;
@@ -138,15 +135,9 @@
 			add(integerTextField.add(NumberValidator.POSITIVE));
 			add(new RequiredTextField("doubleProperty", Double.class));
 			// we have a component attached to the label here, as we want to
-			// synchronize the
-			// id's of the label, textfield and datepicker. Note that you can
-			// perfectly
-			// do without labels
-			WebMarkupContainer dateLabel = new WebMarkupContainer("dateLabel");
-			add(dateLabel);
-			TextField datePropertyTextField = new TextField("dateProperty", Date.class);
-			add(datePropertyTextField);
-			add(new DatePicker("datePicker", dateLabel, datePropertyTextField));
+			// synchronize the id's of the label, textfield and datepicker. Note 
+			// that you can perfectly do without labels
+
 			add(new RequiredTextField("integerInRangeProperty", Integer.class).add(NumberValidator
 					.range(0, 100)));
 			add(new CheckBox("booleanProperty"));

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_da_DK.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_da_DK.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_da_DK.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_da_DK.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">Kommatal</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">Dato</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 	          <label>Listview i en form</label>			  
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_de.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_de.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_de.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_de.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">Double</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">Date</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 			  <label>Listview in ein Form</label>
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_fa_IR.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_fa_IR.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_fa_IR.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_fa_IR.html Sat Nov 11 11:51:20 2006
@@ -28,9 +28,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">اعشاری بزرگ</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">تاریخ</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 	          <label>لیست در یک فرم</label>
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_ja.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_ja.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_ja.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_ja.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">Double</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">date</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 	          <label>Listview in a Form</label>			  
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_nl.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_nl.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_nl.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_nl.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 	          <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 	          <label for="doubleProperty">Numeriek</label>
 	          <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-	          <label wicket:id="dateLabel" for="dateProperty">Datum</label>
-	          <input wicket:id="dateProperty" type="text" size="40"/>
-	          <span wicket:id="datePicker" id="dateProperty"></span>
 	          <label>Listview in een Form</label>
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_pt_BR.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_pt_BR.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_pt_BR.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_pt_BR.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 			  <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 			  <label for="doubleProperty">Double</label>
 			  <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-			  <label wicket:id="dateLabel" for="dateProperty">Data</label>
-			  <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-			  <span wicket:id="datePicker"></span>
 	          <label>Listview no Formulário</label>			  
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_zh_CN.html
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_zh_CN.html?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_zh_CN.html (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/forminput/FormInput_zh_CN.html Sat Nov 11 11:51:20 2006
@@ -27,9 +27,6 @@
 	          <input wicket:id="integerProperty" id="integerProperty" type="text" size="40"/>
 	          <label for="doubleProperty">数字;</label>
 	          <input wicket:id="doubleProperty" id="doubleProperty" type="text" size="40"/>
-	          <label wicket:id="dateLabel" for="dateProperty">日期;</label>
-	          <input wicket:id="dateProperty" id="dateProperty" type="text" size="40"/>
-	          <span wicket:id="datePicker"></span>
 	          <label>Listview in form</label>
 			  <ul>
 			   <li wicket:id="lines">

Modified: incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/site.xml?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/site.xml (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/site.xml Sat Nov 11 11:51:20 2006
@@ -17,10 +17,18 @@
 			<item name="License" href="/license.html" />
 		</menu>
 		<menu name="Components">
-			<item name="DatePicker" href="/DatePicker.html" collapse="true">
-				<item name="Description" href="/apidocs/wicket/extensions/markup/html/datepicker/DatePicker.html" />
-				<item name="License" href="/JSLicense.html" />
-			</item>
+			<item name="Repeaters" href="/apidocs/wicket/extensions/markup/html/repeater/package-summary.html" />
+			<item name="Ajax" href="/apidocs/wicket/extensions/ajax/markup/html/package-summary.html" />
+			<item name="AutoComplete" href="/apidocs/wicket/extensions/ajax/markup/html/autocomplete/package-summary.html" />
+			<item name="File Upload" href="/apidocs/wicket/extensions/ajax/markup/html/form/upload/package-summary.html" />
+			<item name="Modal Window" href="/apidocs/wicket/extensions/ajax/markup/html/modal/package-summary.html" />
+			<item name="Rating Panel" href="/apidocs/wicket/extensions/rating/RatingPanel.html" />
+			<item name="Tabbed Panel" href="/apidocs/wicket/extensions/markup/html/tabs/package-summary.html" />
+			<item name="Ajax Tabbed Panel" href="/apidocs/wicket/extensions/ajax/markup/html/tabs/AjaxTabbedPanel.html" />
+			<item name="Tree/TreeTable" href="/apidocs/wicket/extensions/markup/html/tree/package-summary.html" />
+			<item name="Breadcrumbs" href="/apidocs/wicket/extensions/breadcrumb/package-summary.html" />
+			<item name="Captcha" href="/apidocs/wicket/extensions/markup/html/captcha/package-summary.html" />
+			<item name="Wizard" href="/apidocs/wicket/extensions/wizard/package-summary.html" />
 		</menu>
 		<menu name="Documentation">
 			<item name="Wiki" href="http://wicketframework.org/wiki" />

Modified: incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/index.xml?view=diff&rev=473784&r1=473783&r2=473784
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/index.xml (original)
+++ incubator/wicket/branches/wicket-1.x/wicket-extensions/src/site/xdoc/index.xml Sat Nov 11 11:51:20 2006
@@ -24,17 +24,6 @@
 				</tr>
 				<tr>
 					<td>
-						<a href="apidocs/wicket/extensions/markup/html/datepicker/DatePicker.html">DatePicker</a>
-					</td>
-					<td>
-						Javascript component for picking dates.
-					</td>
-					<td>
-						<a href="http://www.wicket-library.com/wicket-examples/forminput">demo</a>
-					</td>
-				</tr>
-				<tr>
-					<td>
 						<a href="apidocs/wicket/extensions/ajax/markup/html/package-summary.html">Various Ajax components</a>
 					</td>
 					<td>Editable labels, Ajax indicators</td>