Skip Menu |

This queue is for tickets about the RTx-Calendar CPAN distribution.

Report information
The Basics
Id: 74110
Status: resolved
Priority: 0/
Queue: RTx-Calendar

People
Owner: Nobody in particular
Requestors: lurdan [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.10
Fixed in: (no value)



Subject: month navigation character corrupted
I've just installed RTx::Calendar into RT3.8.8 environment (running packaged version on debian squeeze), and I've found navigation link which lead us to previous and next month is showed as "?". It was showed as "<<" ">>" before making RT4 happy. (I don't know what "?" mean or translate in RT4...) I'm glad if it can be replace with original character, like: --- html/Search/Calendar.html.orig 2011-04-12 23:03:28.000000000 +0900 +++ html/Search/Calendar.html 2012-01-18 14:12:00.000000000 +0900 @@ -32,7 +32,7 @@ % $PYear--; % $PMonth = 11; % } -<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=<%$PYear%>&<%$QueryString%>">?<%$rtdate->GetMonth($PMonth)%></a> +<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=<%$PYear%>&<%$QueryString%>">&#171;<%$rtdate->GetMonth($PMonth)%></a> </td> <td align="center"> <a href="<%$RT::WebPath%>/Prefs/Calendar.html">Calendar Preferences and Help</a> @@ -43,7 +43,7 @@ % $NYear++; % $NMonth = 0; % } -<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=<%$NYear%>&<%$QueryString%>"><%$rtdate->GetMonth($NMonth)%>?</a> +<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=<%$NYear%>&<%$QueryString%>"><%$rtdate->GetMonth($NMonth)%>&#187;</a> </td> </tr> </table> @@ -83,10 +83,10 @@ <table width="100%"> <tr> <td align="left"> -<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=<%$PYear%>&<%$QueryString%>">?<%$rtdate->GetMonth($PMonth)%></a> +<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=<%$PYear%>&<%$QueryString%>">&#171;<%$rtdate->GetMonth($PMonth)%></a> </td> <td align="right"> -<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=<%$NYear%>&<%$QueryString%>"><%$rtdate->GetMonth($NMonth)%>?</a> +<a href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=<%$NYear%>&<%$QueryString%>"><%$rtdate->GetMonth($NMonth)%>&#187;</a> </td> </tr> </table>
it's actually a bug, and I fixed it in dd06fcb thanks for reporting this sunnavy On Wed Jan 18 00:41:29 2012, https://www.google.com/accounts/o8/id? id=AItOawkF13rxnN7DpsHF9pV-2icduEjQU9s3qmE wrote: Show quoted text
> I've just installed RTx::Calendar into RT3.8.8 environment (running > packaged version on debian squeeze), and I've found navigation link > which lead us to previous and next month is showed as "?". > > It was showed as "<<" ">>" before making RT4 happy. > (I don't know what "?" mean or translate in RT4...) > > I'm glad if it can be replace with original character, like: > > --- html/Search/Calendar.html.orig 2011-04-12 23:03:28.000000000 > +0900 > +++ html/Search/Calendar.html 2012-01-18 14:12:00.000000000 +0900 > @@ -32,7 +32,7 @@ > % $PYear--; > % $PMonth = 11; > % } > -<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=
<%$PYear%>&<%$QueryString%>">?<%$rtdate- Show quoted text
> >GetMonth($PMonth)%></a>
> +<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=
<%$PYear%>&<%$QueryString%>">&#171;<%$rtdate- Show quoted text
> >GetMonth($PMonth)%></a>
> </td> > <td align="center"> > <a href="<%$RT::WebPath%>/Prefs/Calendar.html">Calendar Preferences > and > Help</a> > @@ -43,7 +43,7 @@ > % $NYear++; > % $NMonth = 0; > % } > -<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=
<%$NYear%>&<%$QueryString%>"><%$rtdate- Show quoted text
> >GetMonth($NMonth)%>?</a>
> +<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=
<%$NYear%>&<%$QueryString%>"><%$rtdate- Show quoted text
> >GetMonth($NMonth)%>&#187;</a>
> </td> > </tr> > </table> > @@ -83,10 +83,10 @@ > <table width="100%"> > <tr> > <td align="left"> > -<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=
<%$PYear%>&<%$QueryString%>">?<%$rtdate- Show quoted text
> >GetMonth($PMonth)%></a>
> +<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$PMonth%>&Year=
<%$PYear%>&<%$QueryString%>">&#171;<%$rtdate- Show quoted text
> >GetMonth($PMonth)%></a>
> </td> > <td align="right"> > -<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=
<%$NYear%>&<%$QueryString%>"><%$rtdate- Show quoted text
> >GetMonth($NMonth)%>?</a>
> +<a > href="<%$RT::WebPath%>/Search/Calendar.html?Month=<%$NMonth%>&Year=
<%$NYear%>&<%$QueryString%>"><%$rtdate- Show quoted text
> >GetMonth($NMonth)%>&#187;</a>
> </td> > </tr> > </table>
We've released 0.11 which should resolve this.