Author: almaw
Date: Thu Jul 19 10:49:54 2007
New Revision: 557707
URL: http://svn.apache.org/viewvc?view=rev&rev=557707
Log:
doc fix and typos
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Resource.java
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/WicketMessageResolver.java
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/StringResourceModel.java
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyComponent.java
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Resource.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Resource.java?view=diff&rev=557707&r1=557706&r2=557707
==============================================================================
---
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Resource.java
(original)
+++
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Resource.java
Thu Jul 19 10:49:54 2007
@@ -28,8 +28,8 @@
/**
* A Resource is something that implements IResourceListener and provides a
- * getResource() method which returns the raw IResource to be rendered back to
- * the client browser.
+ * getResourceStream() method which returns the raw IResourceStream to be
+ * rendered back to the client browser.
* <p>
* Resources themselves do not currently have URLs. Instead, they are referred
* to by components that have URLs.
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/WicketMessageResolver.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/WicketMessageResolver.java?view=diff&rev=557707&r1=557706&r2=557707
==============================================================================
---
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/WicketMessageResolver.java
(original)
+++
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/resolver/WicketMessageResolver.java
Thu Jul 19 10:49:54 2007
@@ -32,7 +32,7 @@
/**
* This is a tag resolver which handles <wicket:message
- * attr="myKey">Default Text</wicket:message>. The resolver
+ * key="myKey">Default Text</wicket:message>. The resolver
* will replace the whole tag with the message found in the properties file
* associated with the Page. If no message is found, the default body text will
* remain.
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/StringResourceModel.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/StringResourceModel.java?view=diff&rev=557707&r1=557706&r2=557707
==============================================================================
---
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/StringResourceModel.java
(original)
+++
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/model/StringResourceModel.java
Thu Jul 19 10:49:54 2007
@@ -181,7 +181,7 @@
* And where the resource bundle entry is:
*
* <pre>
- * weather.detail=The report for {0,date}, shows the temparature as
{2,number,###.##} {3} \
+ * weather.detail=The report for {0,date}, shows the temperature as
{2,number,###.##} {3} \
* and the weather to be {1}
* </pre>
*
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java?view=diff&rev=557707&r1=557706&r2=557707
==============================================================================
---
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
(original)
+++
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
Thu Jul 19 10:49:54 2007
@@ -322,7 +322,7 @@
* Mounts a shared resource class to the given path.
*
* @param path
- * the path to mount the bookmarkable page class on
+ * the path to mount the resource class on
* @param resourceKey
* the shared key of the resource being mounted
*/
Modified:
incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyComponent.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyComponent.java?view=diff&rev=557707&r1=557706&r2=557707
==============================================================================
---
incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyComponent.java
(original)
+++
incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyComponent.java
Thu Jul 19 10:49:54 2007
@@ -21,7 +21,7 @@
import org.apache.wicket.markup.MarkupStream;
/**
- * Dummy component used for testing or resource loading funationality.
+ * Dummy component used for testing or resource loading functionality.
*
* @author Chris Turner
*/