jefft 2003/01/17 15:47:20
Modified: src/blocks/databases/samples/mod-db schema.sql
src/documentation/xdocs/userdocs/concepts caching.xml
src/java/org/apache/cocoon/components/xmlform Form.java
FormListener.java
src/java/org/apache/cocoon/transformation
TraxTransformer.java
src/java/org/apache/cocoon/xml/dom DOMBuilder.java
DOMUtil.java
Log:
Small typos and fixups
Revision Changes Path
1.2 +1 -1 xml-cocoon2/src/blocks/databases/samples/mod-db/schema.sql
Index: schema.sql
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/blocks/databases/samples/mod-db/schema.sql,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- schema.sql 17 Jan 2003 11:22:37 -0000 1.1
+++ schema.sql 17 Jan 2003 23:47:19 -0000 1.2
@@ -3,7 +3,7 @@
-- to adapt it to another RDBMS, replace column type identity
-- with appropriate autoincrement type, e.g. SERIAL for informix
-- you might want to add "on delete cascade" to foreign keys in
--- tab�e user_groups
+-- table user_groups
create table user (
uid integer identity primary key,
1.2 +1 -1
xml-cocoon2/src/documentation/xdocs/userdocs/concepts/caching.xml
Index: caching.xml
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/documentation/xdocs/userdocs/concepts/caching.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- caching.xml 3 Jan 2002 12:31:04 -0000 1.1
+++ caching.xml 17 Jan 2003 23:47:19 -0000 1.2
@@ -27,7 +27,7 @@
For more information about configuration see the chapter below.</p>
<p>The following subchapters describe the available caching
algorithms.</p>
<s2 title="The CachingEventPipeline">
- <p>The CachingEventPipelineuses a very easy but effective
approach
+ <p>The CachingEventPipeline uses a very easy but effective
approach
to cache the event pipelines of a request: The pipeline process
is cached up to the most possible point.</p>
<p>Each sitemap component (generator or transformer) which might
be
1.14 +2 -2
xml-cocoon2/src/java/org/apache/cocoon/components/xmlform/Form.java
Index: Form.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/xmlform/Form.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Form.java 15 Jan 2003 13:17:41 -0000 1.13
+++ Form.java 17 Jan 2003 23:47:19 -0000 1.14
@@ -567,7 +567,7 @@
* This method is called before
* the form is populated with request parameters.
*
- * Semanticly similar to that of the
+ * Semantically similar to that of the
* ActionForm.reset() in Struts
*
* Can be used for clearing checkbox fields,
1.3 +2 -2
xml-cocoon2/src/java/org/apache/cocoon/components/xmlform/FormListener.java
Index: FormListener.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/xmlform/FormListener.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FormListener.java 15 Jan 2003 13:17:41 -0000 1.2
+++ FormListener.java 17 Jan 2003 23:47:19 -0000 1.3
@@ -67,7 +67,7 @@
* This method is called before
* the form is populated with request parameters.
*
- * Semanticly similar to that of the
+ * Semantically similar to that of the
* ActionForm.reset() in Struts
*
* Can be used for clearing checkbox fields,
1.38 +2 -2
xml-cocoon2/src/java/org/apache/cocoon/transformation/TraxTransformer.java
Index: TraxTransformer.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/transformation/TraxTransformer.java,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- TraxTransformer.java 4 Dec 2002 11:06:44 -0000 1.37
+++ TraxTransformer.java 17 Jan 2003 23:47:19 -0000 1.38
@@ -88,7 +88,7 @@
import java.util.Set;
/**
- * This Transformer is used to transform this incomming SAX stream using
+ * This Transformer is used to transform this incoming SAX stream using
* a XSLT stylesheet. Use the following sitemap declarations to define, configure
* and parameterize it:
*
1.9 +7 -7 xml-cocoon2/src/java/org/apache/cocoon/xml/dom/DOMBuilder.java
Index: DOMBuilder.java
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/xml/dom/DOMBuilder.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- DOMBuilder.java 21 Nov 2002 18:18:49 -0000 1.8
+++ DOMBuilder.java 17 Jan 2003 23:47:19 -0000 1.9
@@ -82,14 +82,14 @@
protected Node parentNode;
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
*/
public DOMBuilder() {
this( (Listener)null, (Node)null );
}
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
* @deprecated Use DOMBuilder() instead.
*/
public DOMBuilder(DOMFactory factory) {
@@ -97,14 +97,14 @@
}
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
*/
public DOMBuilder( Listener listener ) {
this(listener, null);
}
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
* @deprecated Use DOMBuilder(listener) instead.
*/
public DOMBuilder( DOMFactory factory, Listener listener ) {
@@ -112,7 +112,7 @@
}
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
* @deprecated Use DOMBuilder(listener, parentNode) instead.
*/
public DOMBuilder( DOMFactory domFactory, Listener listener, Node parentNode ) {
@@ -120,7 +120,7 @@
}
/**
- * Construct a new instance of this TreeGenerator.
+ * Construct a new instance of this DOMBuilder.
*/
public DOMBuilder( Listener listener, Node parentNode ) {
super();
1.9 +2 -2 xml-cocoon2/src/java/org/apache/cocoon/xml/dom/DOMUtil.java
Index: DOMUtil.java
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/xml/dom/DOMUtil.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- DOMUtil.java 14 Jan 2003 09:54:19 -0000 1.8
+++ DOMUtil.java 17 Jan 2003 23:47:19 -0000 1.9
@@ -73,7 +73,7 @@
import javax.xml.transform.TransformerException;
/**
- * This class is an utitity class for miscellaneous DOM functions, like
+ * This class is a utility class for miscellaneous DOM functions, like
* getting and setting values of nodes.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a>
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]