You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by he...@apache.org on 2005/10/11 09:02:08 UTC

svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Author: hepabolu
Date: Tue Oct 11 00:02:02 2005
New Revision: 312820

URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
Log:
Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)

Modified:
    cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
@@ -308,11 +308,11 @@
                 this.contentHandler.endElement(URI, DAY_NODE_NAME,
                         PREFIX + ':' + DAY_NODE_NAME);
                 end.add(Calendar.DAY_OF_MONTH, 1); 		
+				if (firstDay == end.get(Calendar.DAY_OF_WEEK)) { 
+					this.contentHandler.endElement(URI, WEEK_NODE_NAME,
+	                        PREFIX + ':' + WEEK_NODE_NAME);
+				}
             }
-			if (firstDay == end.get(Calendar.DAY_OF_WEEK)) { 
-				this.contentHandler.endElement(URI, WEEK_NODE_NAME,
-                        PREFIX + ':' + WEEK_NODE_NAME);
-			}
         }
         this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
                 PREFIX + ':' + CALENDAR_NODE_NAME);



Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Patrick Ahles <p....@gmail.com>.
Helma fixed it already!

Ralph mentioned it already: this patch should be applied to trunk too.
Do I have to report a new patch (for trunk) in bugzilla, or will
somebody patch it right away using the patch for branch (changing the
tabs to spaces beforehand...) ?

On 10/11/05, Upayavira <uv...@odoko.co.uk> wrote:
> Actually, there are tabs there - should be spaces, which is why the
> spacing looked funny. Fancy fixing it?
>
> Regards, Upayavira
>

--
Patrick

----
Neutiquam erro. Magister mundi sum!

Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Upayavira <uv...@odoko.co.uk>.
Actually, there are tabs there - should be spaces, which is why the 
spacing looked funny. Fancy fixing it?

Regards, Upayavira

Patrick Ahles wrote:
> Hi Ralph,
> 
> this indeed looks somewhat confusing, but the IF is now _inside_ the
> while loop...
> 
> 
> 
> On 10/11/05, Ralph Goers <Ra...@dslextreme.com> wrote:
> 
>>Is it just too early in the morning for me?  I don't see any difference
>>other than spacing?
>>
>>Ralph
>>
>>hepabolu@apache.org wrote:
>>
>>
>>>Author: hepabolu
>>>Date: Tue Oct 11 00:02:02 2005
>>>New Revision: 312820
>>>
>>>URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
>>>Log:
>>>Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)
>>>
>>>Modified:
>>>   cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>>>
>>>Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>>>URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
>>>==============================================================================
>>>--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
>>>+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
>>>@@ -308,11 +308,11 @@
>>>                this.contentHandler.endElement(URI, DAY_NODE_NAME,
>>>                        PREFIX + ':' + DAY_NODE_NAME);
>>>                end.add(Calendar.DAY_OF_MONTH, 1);
>>>+                              if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
>>>+                                      this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>>>+                              PREFIX + ':' + WEEK_NODE_NAME);
>>>+                              }
>>>            }
>>>-                      if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
>>>-                              this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>>>-                        PREFIX + ':' + WEEK_NODE_NAME);
>>>-                      }
>>>        }
>>>        this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
>>>                PREFIX + ':' + CALENDAR_NODE_NAME);
>>>
>>>
>>>
>>>
>>
> 
> 
> --
> Patrick
> 
> ----
> Neutiquam erro. Magister mundi sum!
> 


Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Patrick Ahles <p....@gmail.com>.
Yes, but since so much was being reorganized, I hesitated. I'll create
a patch for trunk too.

On 10/11/05, Ralph Goers <Ra...@dslextreme.com> wrote:
> Does this patch also need to be applied to trunk (2.2) ?
>
> Ralph
>
> Patrick Ahles wrote:
>
> >Hi Ralph,
> >
> >this indeed looks somewhat confusing, but the IF is now _inside_ the
> >while loop...
> >
> >
> >
> >On 10/11/05, Ralph Goers <Ra...@dslextreme.com> wrote:
> >
> >
> >>Is it just too early in the morning for me?  I don't see any difference
> >>other than spacing?
> >>
> >>Ralph
> >>
> >>hepabolu@apache.org wrote:
> >>
> >>
> >>
> >>>Author: hepabolu
> >>>Date: Tue Oct 11 00:02:02 2005
> >>>New Revision: 312820
> >>>
> >>>URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
> >>>Log:
> >>>Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)
> >>>
> >>>Modified:
> >>>   cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
> >>>
> >>>Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
> >>>URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
> >>>==============================================================================
> >>>--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
> >>>+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
> >>>@@ -308,11 +308,11 @@
> >>>                this.contentHandler.endElement(URI, DAY_NODE_NAME,
> >>>                        PREFIX + ':' + DAY_NODE_NAME);
> >>>                end.add(Calendar.DAY_OF_MONTH, 1);
> >>>+                              if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
> >>>+                                      this.contentHandler.endElement(URI, WEEK_NODE_NAME,
> >>>+                              PREFIX + ':' + WEEK_NODE_NAME);
> >>>+                              }
> >>>            }
> >>>-                      if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
> >>>-                              this.contentHandler.endElement(URI, WEEK_NODE_NAME,
> >>>-                        PREFIX + ':' + WEEK_NODE_NAME);
> >>>-                      }
> >>>        }
> >>>        this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
> >>>                PREFIX + ':' + CALENDAR_NODE_NAME);
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >
> >
> >--
> >Patrick
> >
> >----
> >Neutiquam erro. Magister mundi sum!
> >
> >
>


--
Patrick

----
Neutiquam erro. Magister mundi sum!

Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Ralph Goers <Ra...@dslextreme.com>.
Does this patch also need to be applied to trunk (2.2) ?

Ralph

Patrick Ahles wrote:

>Hi Ralph,
>
>this indeed looks somewhat confusing, but the IF is now _inside_ the
>while loop...
>
>
>
>On 10/11/05, Ralph Goers <Ra...@dslextreme.com> wrote:
>  
>
>>Is it just too early in the morning for me?  I don't see any difference
>>other than spacing?
>>
>>Ralph
>>
>>hepabolu@apache.org wrote:
>>
>>    
>>
>>>Author: hepabolu
>>>Date: Tue Oct 11 00:02:02 2005
>>>New Revision: 312820
>>>
>>>URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
>>>Log:
>>>Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)
>>>
>>>Modified:
>>>   cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>>>
>>>Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>>>URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
>>>==============================================================================
>>>--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
>>>+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
>>>@@ -308,11 +308,11 @@
>>>                this.contentHandler.endElement(URI, DAY_NODE_NAME,
>>>                        PREFIX + ':' + DAY_NODE_NAME);
>>>                end.add(Calendar.DAY_OF_MONTH, 1);
>>>+                              if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
>>>+                                      this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>>>+                              PREFIX + ':' + WEEK_NODE_NAME);
>>>+                              }
>>>            }
>>>-                      if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
>>>-                              this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>>>-                        PREFIX + ':' + WEEK_NODE_NAME);
>>>-                      }
>>>        }
>>>        this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
>>>                PREFIX + ':' + CALENDAR_NODE_NAME);
>>>
>>>
>>>
>>>
>>>      
>>>
>
>
>--
>Patrick
>
>----
>Neutiquam erro. Magister mundi sum!
>  
>

Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Patrick Ahles <p....@gmail.com>.
Hi Ralph,

this indeed looks somewhat confusing, but the IF is now _inside_ the
while loop...



On 10/11/05, Ralph Goers <Ra...@dslextreme.com> wrote:
> Is it just too early in the morning for me?  I don't see any difference
> other than spacing?
>
> Ralph
>
> hepabolu@apache.org wrote:
>
> >Author: hepabolu
> >Date: Tue Oct 11 00:02:02 2005
> >New Revision: 312820
> >
> >URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
> >Log:
> >Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)
> >
> >Modified:
> >    cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
> >
> >Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
> >URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
> >==============================================================================
> >--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
> >+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
> >@@ -308,11 +308,11 @@
> >                 this.contentHandler.endElement(URI, DAY_NODE_NAME,
> >                         PREFIX + ':' + DAY_NODE_NAME);
> >                 end.add(Calendar.DAY_OF_MONTH, 1);
> >+                              if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
> >+                                      this.contentHandler.endElement(URI, WEEK_NODE_NAME,
> >+                              PREFIX + ':' + WEEK_NODE_NAME);
> >+                              }
> >             }
> >-                      if (firstDay == end.get(Calendar.DAY_OF_WEEK)) {
> >-                              this.contentHandler.endElement(URI, WEEK_NODE_NAME,
> >-                        PREFIX + ':' + WEEK_NODE_NAME);
> >-                      }
> >         }
> >         this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
> >                 PREFIX + ':' + CALENDAR_NODE_NAME);
> >
> >
> >
> >
>


--
Patrick

----
Neutiquam erro. Magister mundi sum!

Re: svn commit: r312820 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java

Posted by Ralph Goers <Ra...@dslextreme.com>.
Is it just too early in the morning for me?  I don't see any difference 
other than spacing?

Ralph

hepabolu@apache.org wrote:

>Author: hepabolu
>Date: Tue Oct 11 00:02:02 2005
>New Revision: 312820
>
>URL: http://svn.apache.org/viewcvs?rev=312820&view=rev
>Log:
>Bug 35413, patch applied, thanks to Patrick Ahles, now properly applied ;-)
>
>Modified:
>    cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>
>Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java
>URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=312820&r1=312819&r2=312820&view=diff
>==============================================================================
>--- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
>+++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Oct 11 00:02:02 2005
>@@ -308,11 +308,11 @@
>                 this.contentHandler.endElement(URI, DAY_NODE_NAME,
>                         PREFIX + ':' + DAY_NODE_NAME);
>                 end.add(Calendar.DAY_OF_MONTH, 1); 		
>+				if (firstDay == end.get(Calendar.DAY_OF_WEEK)) { 
>+					this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>+	                        PREFIX + ':' + WEEK_NODE_NAME);
>+				}
>             }
>-			if (firstDay == end.get(Calendar.DAY_OF_WEEK)) { 
>-				this.contentHandler.endElement(URI, WEEK_NODE_NAME,
>-                        PREFIX + ':' + WEEK_NODE_NAME);
>-			}
>         }
>         this.contentHandler.endElement(URI, CALENDAR_NODE_NAME,
>                 PREFIX + ':' + CALENDAR_NODE_NAME);
>
>
>  
>