Re: cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/pipeline AbstractProcessingPipeline.java

2004-05-24 Thread Joerg Heinicke
On 24.05.2004 13:04, [EMAIL PROTECTED] wrote:
  Log:
  Change mime-type setting of readers (merge from cocoon-2.2)
...
  +   action dev=CZ type=fix
  + Change the mime-type setting of a reader. For more information, see
  + link href=http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10277;bug entry 
10277/link.
Hello Carsten,
I saw your back port of the changed mime-type setting.
And have two questions that are not directly related to it:
1. Is this compatible to my proposed patch at 
http://issues.apache.org/bugzilla/show_bug.cgi?id=26997 ??
2. What about this patch at all?

Sorry to nag you about this issue, but I got no response until now. And 
I think fixing this issue is important as we can not rely on correct 
browser charset recognition. Tomcat probably follows only the spec. See 
also the dependent bug for a more user-centric view.

Joerg


cvs commit: cocoon-2.1/src/java/org/apache/cocoon/components/pipeline AbstractProcessingPipeline.java

2003-08-14 Thread cziegeler
cziegeler2003/08/06 03:07:30

  Modified:src/java/org/apache/cocoon/components/pipeline
AbstractProcessingPipeline.java
  Log:
  The parameters was never set.
  
  Revision  ChangesPath
  1.7   +2 -1  
cocoon-2.1/src/java/org/apache/cocoon/components/pipeline/AbstractProcessingPipeline.java
  
  Index: AbstractProcessingPipeline.java
  ===
  RCS file: 
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/pipeline/AbstractProcessingPipeline.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AbstractProcessingPipeline.java   31 Jul 2003 03:54:22 -  1.6
  +++ AbstractProcessingPipeline.java   6 Aug 2003 10:07:30 -   1.7
  @@ -184,6 +184,7 @@
* Setup this component
*/
   public void setup(Parameters params) {
  +this.parameters = params;
   final String expiresValue = params.getParameter(expires, null);
   if (expiresValue != null) {
   this.expires = this.parseExpires(expiresValue);