Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateHeaderContributor.java URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateHeaderContributor.java?view=diff&rev=527244&r1=527216&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateHeaderContributor.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateHeaderContributor.java Tue Apr 10 11:38:05 2007 @@ -14,13 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.util.resource; +package org.apache.wicket.extensions.util.resource; import java.util.Map; -import wicket.behavior.StringHeaderContributor; -import wicket.model.IModel; -import wicket.model.LoadableDetachableModel; +import org.apache.wicket.behavior.StringHeaderContributor; +import org.apache.wicket.model.IModel; +import org.apache.wicket.model.LoadableDetachableModel; + /** * A header contributor that will contribute the contents of the given template @@ -71,7 +72,7 @@ this.variablesModel = variablesModel; } /** - * @see wicket.model.IModel#detach() + * @see org.apache.wicket.model.IModel#detach() */ public void detach() {
Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateLink.java URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateLink.java?view=diff&rev=527244&r1=527216&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateLink.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateLink.java Tue Apr 10 11:38:05 2007 @@ -14,11 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.util.resource; +package org.apache.wicket.extensions.util.resource; import java.util.Map; -import wicket.markup.html.link.ResourceLink; +import org.apache.wicket.markup.html.link.ResourceLink; + /** * Links to shared, interpolated text template resources created by a factory. Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateSharedResourceFactory.java URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateSharedResourceFactory.java?view=diff&rev=527244&r1=527216&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateSharedResourceFactory.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/util/resource/TextTemplateSharedResourceFactory.java Tue Apr 10 11:38:05 2007 @@ -14,17 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.util.resource; +package org.apache.wicket.extensions.util.resource; import java.util.Iterator; import java.util.Map; -import wicket.Application; -import wicket.Resource; -import wicket.ResourceReference; -import wicket.SharedResources; -import wicket.util.resource.AbstractStringResourceStream; -import wicket.util.resource.IResourceStream; +import org.apache.wicket.Application; +import org.apache.wicket.Resource; +import org.apache.wicket.ResourceReference; +import org.apache.wicket.SharedResources; +import org.apache.wicket.util.resource.AbstractStringResourceStream; +import org.apache.wicket.util.resource.IResourceStream; + /** * A resource (reference) factory that takes a TextTemplate and generates shared @@ -107,7 +108,7 @@ private static final long serialVersionUID = 1L; /** - * @see wicket.Resource#getResourceStream() + * @see org.apache.wicket.Resource#getResourceStream() */ public IResourceStream getResourceStream() { Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressPatternValidator.java URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressPatternValidator.java?view=diff&rev=527244&r1=527216&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressPatternValidator.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressPatternValidator.java Tue Apr 10 11:38:05 2007 @@ -14,10 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.validation.validator; +package org.apache.wicket.extensions.validation.validator; -import wicket.validation.validator.EmailAddressValidator; -import wicket.validation.validator.PatternValidator; +import org.apache.wicket.validation.validator.EmailAddressValidator; +import org.apache.wicket.validation.validator.PatternValidator; /** @@ -141,7 +141,7 @@ } /** - * @see wicket.validation.validator.PatternValidator#resourceKey() + * @see org.apache.wicket.validation.validator.PatternValidator#resourceKey() */ protected String resourceKey() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/CancelButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/CancelButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/CancelButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/CancelButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/CancelButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/CancelButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/CancelButton.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; /** * Models a cancel button in the wizard. When pressed, it calls @@ -36,12 +36,12 @@ */ public CancelButton(String id, IWizard wizard) { - super(id, wizard, "wicket.extensions.wizard.cancel"); + super(id, wizard, "org.apache.wicket.extensions.wizard.cancel"); setDefaultFormProcessing(false); } /** - * @see wicket.Component#isEnabled() + * @see org.apache.wicket.Component#isEnabled() */ public final boolean isEnabled() { @@ -49,7 +49,7 @@ } /** - * @see wicket.Component#isVisible() + * @see org.apache.wicket.Component#isVisible() */ public final boolean isVisible() { @@ -57,7 +57,7 @@ } /** - * @see wicket.extensions.wizard.WizardButton#onClick() + * @see org.apache.wicket.extensions.wizard.WizardButton#onClick() */ public final void onClick() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/FinishButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/FinishButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/FinishButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/FinishButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/FinishButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/FinishButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/FinishButton.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; /** * Models a cancel button in the wizard. When pressed, it calls @@ -37,11 +37,11 @@ */ public FinishButton(String id, IWizard wizard) { - super(id, wizard, "wicket.extensions.wizard.finish"); + super(id, wizard, "org.apache.wicket.extensions.wizard.finish"); } /** - * @see wicket.Component#isEnabled() + * @see org.apache.wicket.Component#isEnabled() */ public final boolean isEnabled() { @@ -50,7 +50,7 @@ } /** - * @see wicket.extensions.wizard.WizardButton#onClick() + * @see org.apache.wicket.extensions.wizard.WizardButton#onClick() */ public final void onClick() { @@ -68,7 +68,7 @@ else { error(getLocalizer().getString( - "wicket.extensions.wizard.FinishButton.step.did.not.complete", this)); + "org.apache.wicket.extensions.wizard.FinishButton.step.did.not.complete", this)); } } } Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizard.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizard.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizard.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizard.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizard.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizard.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizard.java Tue Apr 10 11:38:05 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.IClusterable; +import org.apache.wicket.IClusterable; /** * Interface for the wizard component. This interface is here for ultimate Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModel.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModel.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModel.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModel.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModel.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModel.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModel.java Tue Apr 10 11:38:05 2007 @@ -14,11 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; import java.util.Iterator; -import wicket.IClusterable; +import org.apache.wicket.IClusterable; + /** Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModelListener.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModelListener.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModelListener.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModelListener.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModelListener.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardModelListener.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardModelListener.java Tue Apr 10 11:38:05 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.IClusterable; +import org.apache.wicket.IClusterable; /** * Recieves notifications for wizard model state changes. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardStep.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardStep.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardStep.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardStep.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardStep.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/IWizardStep.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/IWizardStep.java Tue Apr 10 11:38:05 2007 @@ -14,10 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.Component; -import wicket.IClusterable; +import org.apache.wicket.Component; +import org.apache.wicket.IClusterable; /** * Models one step in a wizard, and is the equivalent of one panel in a wizard Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/LastButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/LastButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/LastButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/LastButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/LastButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/LastButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/LastButton.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; /** * Models a 'last' button in the wizard. When pressed, it calls @@ -37,11 +37,11 @@ */ public LastButton(String id, IWizard wizard) { - super(id, wizard, "wicket.extensions.wizard.last"); + super(id, wizard, "org.apache.wicket.extensions.wizard.last"); } /** - * @see wicket.Component#isEnabled() + * @see org.apache.wicket.Component#isEnabled() */ public final boolean isEnabled() { @@ -49,7 +49,7 @@ } /** - * @see wicket.Component#isVisible() + * @see org.apache.wicket.Component#isVisible() */ public final boolean isVisible() { @@ -57,7 +57,7 @@ } /** - * @see wicket.extensions.wizard.WizardButton#onClick() + * @see org.apache.wicket.extensions.wizard.WizardButton#onClick() */ public final void onClick() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/NextButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/NextButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/NextButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/NextButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/NextButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/NextButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/NextButton.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; /** @@ -37,11 +37,11 @@ */ public NextButton(String id, IWizard wizard) { - super(id, wizard, "wicket.extensions.wizard.next"); + super(id, wizard, "org.apache.wicket.extensions.wizard.next"); } /** - * @see wicket.Component#isEnabled() + * @see org.apache.wicket.Component#isEnabled() */ public final boolean isEnabled() { @@ -49,7 +49,7 @@ } /** - * @see wicket.extensions.wizard.WizardButton#onClick() + * @see org.apache.wicket.extensions.wizard.WizardButton#onClick() */ public final void onClick() { @@ -68,12 +68,12 @@ else { error(getLocalizer().getString( - "wicket.extensions.wizard.NextButton.step.did.not.complete", this)); + "org.apache.wicket.extensions.wizard.NextButton.step.did.not.complete", this)); } } /** - * @see wicket.Component#onAttach() + * @see org.apache.wicket.Component#onAttach() */ protected final void onAttach() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/PreviousButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/PreviousButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/PreviousButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/PreviousButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/PreviousButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/PreviousButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/PreviousButton.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; /** * Models a previous button in the wizard. When pressed, it moves the wizard @@ -37,12 +37,12 @@ */ public PreviousButton(String id, IWizard wizard) { - super(id, wizard, "wicket.extensions.wizard.previous"); + super(id, wizard, "org.apache.wicket.extensions.wizard.previous"); setDefaultFormProcessing(false); } /** - * @see wicket.Component#isEnabled() + * @see org.apache.wicket.Component#isEnabled() */ public final boolean isEnabled() { @@ -50,7 +50,7 @@ } /** - * @see wicket.extensions.wizard.WizardButton#onClick() + * @see org.apache.wicket.extensions.wizard.WizardButton#onClick() */ public final void onClick() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/StaticContentStep.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/StaticContentStep.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/StaticContentStep.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/StaticContentStep.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/StaticContentStep.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/StaticContentStep.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/StaticContentStep.java Tue Apr 10 11:38:05 2007 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.markup.html.basic.Label; -import wicket.model.IModel; -import wicket.model.Model; +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.model.IModel; +import org.apache.wicket.model.Model; /** * A wizard step that displays the provided static content without expecting any Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java Tue Apr 10 11:38:05 2007 @@ -14,17 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; import java.util.Iterator; -import wicket.Component; -import wicket.behavior.HeaderContributor; -import wicket.feedback.ContainerFeedbackMessageFilter; -import wicket.markup.html.WebMarkupContainer; -import wicket.markup.html.form.Form; -import wicket.markup.html.panel.FeedbackPanel; -import wicket.markup.html.panel.Panel; +import org.apache.wicket.Component; +import org.apache.wicket.behavior.HeaderContributor; +import org.apache.wicket.feedback.ContainerFeedbackMessageFilter; +import org.apache.wicket.markup.html.WebMarkupContainer; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.panel.FeedbackPanel; +import org.apache.wicket.markup.html.panel.Panel; + /** * A wizard is a dialog component that takes it's users through a number of @@ -199,7 +200,7 @@ } /** - * @see wicket.extensions.wizard.IWizard#getWizardModel() + * @see org.apache.wicket.extensions.wizard.IWizard#getWizardModel() */ public final IWizardModel getWizardModel() { @@ -212,7 +213,7 @@ * doesn't change at all. * * @return False - * @see wicket.Component#isVersioned() + * @see org.apache.wicket.Component#isVersioned() */ public boolean isVersioned() { @@ -220,7 +221,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModelListener#onActiveStepChanged(wicket.extensions.wizard.IWizardStep) + * @see org.apache.wicket.extensions.wizard.IWizardModelListener#onActiveStepChanged(org.apache.wicket.extensions.wizard.IWizardStep) */ public void onActiveStepChanged(IWizardStep newStep) { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.properties (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.properties) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.properties?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.properties&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.properties&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard.properties (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.properties Tue Apr 10 11:38:05 2007 @@ -12,13 +12,13 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -wicket.extensions.wizard.next=Next > -wicket.extensions.wizard.previous=< Previous -wicket.extensions.wizard.last=Last -wicket.extensions.wizard.cancel=Cancel -wicket.extensions.wizard.finish=Finish +org.apache.wicket.extensions.wizard.next=Next > +org.apache.wicket.extensions.wizard.previous=< Previous +org.apache.wicket.extensions.wizard.last=Last +org.apache.wicket.extensions.wizard.cancel=Cancel +org.apache.wicket.extensions.wizard.finish=Finish -wicket.extensions.wizard.NextButton.step.did.not.complete=Unable to move to the next step as the \ +org.apache.wicket.extensions.wizard.NextButton.step.did.not.complete=Unable to move to the next step as the \ the current step was not completed for some unknown reason. -wicket.extensions.wizard.FinishButton.step.did.not.complete=Unable to finish as the \ +org.apache.wicket.extensions.wizard.FinishButton.step.did.not.complete=Unable to finish as the \ the current step was not completed for some unknown reason. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButton.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButton.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButton.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButton.java Tue Apr 10 11:38:05 2007 @@ -14,10 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.markup.html.form.Button; -import wicket.model.ResourceModel; +import org.apache.wicket.markup.html.form.Button; +import org.apache.wicket.model.ResourceModel; /** * Base class for buttons that work with [EMAIL PROTECTED] IWizard the wizard component}. @@ -79,7 +79,7 @@ protected abstract void onClick(); /** - * @see wicket.markup.html.form.Button#onSubmit() + * @see org.apache.wicket.markup.html.form.Button#onSubmit() */ public final void onSubmit() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButtonBar.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButtonBar.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardButtonBar.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardButtonBar.java Tue Apr 10 11:38:05 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; -import wicket.markup.html.panel.Panel; +import org.apache.wicket.markup.html.panel.Panel; /** * The default bar of button components for wizards. This should be good for 90% Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardModel.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardModel.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardModel.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardModel.java Tue Apr 10 11:38:05 2007 @@ -14,21 +14,22 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; import java.util.ArrayList; import java.util.Iterator; import java.util.List; -import wicket.IClusterable; -import wicket.util.collections.ArrayListStack; +import org.apache.wicket.IClusterable; +import org.apache.wicket.util.collections.ArrayListStack; + /** * Default implementation of [EMAIL PROTECTED] IWizardModel}. * <p> * Steps can be added to this model directly using either the * [EMAIL PROTECTED] #add(IWizardStep) normal add method} or - * [EMAIL PROTECTED] #add(IWizardStep, wicket.extensions.wizard.WizardModel.ICondition) the conditional add method}. + * [EMAIL PROTECTED] #add(IWizardStep, org.apache.wicket.extensions.wizard.WizardModel.ICondition) the conditional add method}. * </p> * * <p> @@ -152,7 +153,7 @@ * isn't a very strong contract, it gives all the power to the user of this * model. * - * @see wicket.extensions.wizard.IWizardModel#cancel() + * @see org.apache.wicket.extensions.wizard.IWizardModel#cancel() */ public void cancel() { @@ -165,7 +166,7 @@ * isn't a very strong contract, it gives all the power to the user of this * model. * - * @see wicket.extensions.wizard.IWizardModel#finish() + * @see org.apache.wicket.extensions.wizard.IWizardModel#finish() */ public void finish() { @@ -205,7 +206,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#isLastStep(wicket.extensions.wizard.IWizardStep) + * @see org.apache.wicket.extensions.wizard.IWizardModel#isLastStep(org.apache.wicket.extensions.wizard.IWizardStep) */ public boolean isLastStep(IWizardStep step) { @@ -249,7 +250,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#lastStep() + * @see org.apache.wicket.extensions.wizard.IWizardModel#lastStep() */ public void lastStep() { @@ -259,7 +260,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#next() + * @see org.apache.wicket.extensions.wizard.IWizardModel#next() */ public void next() { @@ -269,7 +270,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#previous() + * @see org.apache.wicket.extensions.wizard.IWizardModel#previous() */ public void previous() { @@ -289,7 +290,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#reset() + * @see org.apache.wicket.extensions.wizard.IWizardModel#reset() */ public void reset() { @@ -341,7 +342,7 @@ } /** - * @see wicket.extensions.wizard.IWizardModel#stepIterator() + * @see org.apache.wicket.extensions.wizard.IWizardModel#stepIterator() */ public final Iterator stepIterator() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardStep.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardStep.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/WizardStep.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/WizardStep.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.wizard; +package org.apache.wicket.extensions.wizard; import java.util.ArrayList; import java.util.HashSet; @@ -22,16 +22,17 @@ import java.util.List; import java.util.Set; -import wicket.Component; -import wicket.markup.html.basic.Label; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.FormComponent; -import wicket.markup.html.form.validation.IFormValidator; -import wicket.markup.html.panel.Panel; -import wicket.model.AbstractReadOnlyModel; -import wicket.model.CompoundPropertyModel; -import wicket.model.IModel; -import wicket.model.Model; +import org.apache.wicket.Component; +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.FormComponent; +import org.apache.wicket.markup.html.form.validation.IFormValidator; +import org.apache.wicket.markup.html.panel.Panel; +import org.apache.wicket.model.AbstractReadOnlyModel; +import org.apache.wicket.model.CompoundPropertyModel; +import org.apache.wicket.model.IModel; +import org.apache.wicket.model.Model; + /** * default implementation of [EMAIL PROTECTED] IWizardStep}. It is also a panel, which is @@ -57,18 +58,18 @@ * HTML (defined in e.g. file x/NewUserWizard$UserNameStep.html): * * <pre> - * <wicket:panel> + * <org.apache.wicket:panel> * <table> * <tr> - * <td><wicket:message key="username">Username</wicket:message></td> + * <td><org.apache.wicket:message key="username">Username</org.apache.wicket:message></td> * <td><input type="text" wicket:id="user.userName" /></td> * </tr> * <tr> - * <td><wicket:message key="email">Email Adress</wicket:message></td> + * <td><org.apache.wicket:message key="email">Email Adress</org.apache.wicket:message></td> * <td><input type="text" wicket:id="user.email" /></td> * </tr> * </table> - * </wicket:panel> + * </org.apache.wicket:panel> * </pre> * * </p> @@ -119,7 +120,7 @@ } /** - * @see wicket.markup.html.form.validation.IFormValidator#getDependentFormComponents() + * @see org.apache.wicket.markup.html.form.validation.IFormValidator#getDependentFormComponents() */ public FormComponent[] getDependentFormComponents() { @@ -145,7 +146,7 @@ } /** - * @see wicket.markup.html.form.validation.IFormValidator#validate(wicket.markup.html.form.Form) + * @see org.apache.wicket.markup.html.form.validation.IFormValidator#validate(org.apache.wicket.markup.html.form.Form) */ public void validate(Form form) { @@ -327,15 +328,15 @@ } /** - * @see wicket.extensions.wizard.IWizardStep#applyState() + * @see org.apache.wicket.extensions.wizard.IWizardStep#applyState() */ public void applyState() { } /** - * @see wicket.extensions.wizard.IWizardStep#getHeader(java.lang.String, - * wicket.Component, wicket.extensions.wizard.IWizard) + * @see org.apache.wicket.extensions.wizard.IWizardStep#getHeader(java.lang.String, + * org.apache.wicket.Component, org.apache.wicket.extensions.wizard.IWizard) */ public Component getHeader(String id, Component parent, IWizard wizard) { @@ -365,8 +366,8 @@ } /** - * @see wicket.extensions.wizard.IWizardStep#getView(java.lang.String, - * wicket.Component, wicket.extensions.wizard.IWizard) + * @see org.apache.wicket.extensions.wizard.IWizardStep#getView(java.lang.String, + * org.apache.wicket.Component, org.apache.wicket.extensions.wizard.IWizard) */ public Component getView(String id, Component parent, IWizard wizard) { @@ -438,7 +439,7 @@ } /** - * @see wicket.Component#detachModel() + * @see org.apache.wicket.Component#detachModel() */ protected void detachModel() { @@ -456,7 +457,7 @@ /** * Workaround for adding the form validators; not needed in 2.0. * - * @see wicket.Component#onAttach() + * @see org.apache.wicket.Component#onAttach() */ protected void onAttach() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_da.properties (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_da.properties) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_da.properties?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_da.properties&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_da.properties&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_da.properties (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_da.properties Tue Apr 10 11:38:05 2007 @@ -12,10 +12,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -wicket.extensions.wizard.FinishButton.step.did.not.complete = Kunne ikke afslutte da det nuv\u00E6rende trin ikke er korrekt afsluttet. -wicket.extensions.wizard.NextButton.step.did.not.complete = Kunne ikke g\u00E5 videre til n\u00E6ste trin, da dette trin ikke er blevet afsluttet. -wicket.extensions.wizard.cancel = Annuller -wicket.extensions.wizard.finish = Afslut -wicket.extensions.wizard.last = Sidste -wicket.extensions.wizard.next = N\u00E6ste > -wicket.extensions.wizard.previous = < Forrige +org.apache.wicket.extensions.wizard.FinishButton.step.did.not.complete = Kunne ikke afslutte da det nuv\u00E6rende trin ikke er korrekt afsluttet. +org.apache.wicket.extensions.wizard.NextButton.step.did.not.complete = Kunne ikke g\u00E5 videre til n\u00E6ste trin, da dette trin ikke er blevet afsluttet. +org.apache.wicket.extensions.wizard.cancel = Annuller +org.apache.wicket.extensions.wizard.finish = Afslut +org.apache.wicket.extensions.wizard.last = Sidste +org.apache.wicket.extensions.wizard.next = N\u00E6ste > +org.apache.wicket.extensions.wizard.previous = < Forrige Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_fi.properties (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_fi.properties) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_fi.properties?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_fi.properties&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_fi.properties&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket/extensions/wizard/Wizard_fi.properties (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard_fi.properties Tue Apr 10 11:38:05 2007 @@ -13,10 +13,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -wicket.extensions.wizard.FinishButton.step.did.not.complete = Ei voida hyv\u00E4ksy\u00E4 koska nykyinen vaihe ei kelpaa. -wicket.extensions.wizard.NextButton.step.did.not.complete = Seuraavaan vaiheeseen ei voi siirty\u00E4 koska nykyinen vaihe ei kelpaa. -wicket.extensions.wizard.cancel = Keskeyt\u00E4 -wicket.extensions.wizard.finish = Hyv\u00E4ksy -wicket.extensions.wizard.last = Viimeinen -wicket.extensions.wizard.next = Seuraava > -wicket.extensions.wizard.previous = < Edellinen +org.apache.wicket.extensions.wizard.FinishButton.step.did.not.complete = Ei voida hyv\u00E4ksy\u00E4 koska nykyinen vaihe ei kelpaa. +org.apache.wicket.extensions.wizard.NextButton.step.did.not.complete = Seuraavaan vaiheeseen ei voi siirty\u00E4 koska nykyinen vaihe ei kelpaa. +org.apache.wicket.extensions.wizard.cancel = Keskeyt\u00E4 +org.apache.wicket.extensions.wizard.finish = Hyv\u00E4ksy +org.apache.wicket.extensions.wizard.last = Viimeinen +org.apache.wicket.extensions.wizard.next = Seuraava > +org.apache.wicket.extensions.wizard.previous = < Edellinen Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket.properties URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket.properties?view=diff&rev=527244&r1=527243&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket.properties (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/main/java/wicket.properties Tue Apr 10 11:38:05 2007 @@ -12,4 +12,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -initializer=wicket.extensions.Initializer +initializer=org.apache.wicket.extensions.Initializer Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/basic/SmartLinkLabelTest.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.markup.html.basic; +package org.apache.wicket.extensions.markup.html.basic; + +import org.apache.wicket.extensions.markup.html.basic.SmartLinkLabel; import junit.framework.Assert; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailValidatorTest.java Tue Apr 10 11:38:05 2007 @@ -14,12 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.extensions.validation.validator; +package org.apache.wicket.extensions.validation.validator; import java.util.regex.Matcher; +import org.apache.wicket.extensions.validation.validator.RfcCompliantEmailAddressPatternValidator; + import junit.framework.TestCase; -import wicket.extensions.validation.validator.RfcCompliantEmailAddressPatternValidator; /** * Test that it really validates RFC valid email addresses. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java?view=diff&rev=527244&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java&r2=527244 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/wicket/util/license/ApacheLicenceHeaderTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket-extensions/src/test/java/org/apache/wicket/util/license/ApacheLicenceHeaderTest.java Tue Apr 10 11:38:05 2007 @@ -14,7 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.license; +package org.apache.wicket.util.license; + +import org.apache.wicket.util.license.ApacheLicenseHeaderTestCase; /** * Test that the license headers are in place in this project. The tests are run
