1
rob777
extcal calendar module. Extra characters showing.
  • 2005/4/14 0:14

  • rob777

  • Just popping in

  • Posts: 45

  • Since: 2005/1/21


Hi,

I installed the extcal calendar module and love it so far. But I am having a problem with a few of the displays.

Daily view is displayng this Friday April 29 2005d>
What is that and How do I get rid of the "d>" ?

Weekly view is displaying this Week 14d>
What is that and How do I get rid of the "d>" ?

Monthly view is displaying this April 2005d>
What is that and How do I get rid of the "d>" ?

Yearly view is displaying this 2005h>
What is that and How do I get rid of the "h>" ?

Calendar view is displaying this April 2005h>
What is that and How do I get rid of the "h>" ?



Also, in Daily view the incriments of the are broken into times. How can I get it to display 12hour format like "7:00 pm"? Instead of it's current format of "2H00". I don't even know what 2H00 means, so how would my visitors?


Also, Maybe this would be fixed by fixing the above issues, but if not...how do I change the time stamp for the module to display all time displays as 12 hour format with the am or pm. like 7:00 pm for example.


-Update-
I found this in the source code from the browser window from the daily_view.php page


Quote:
<td class='navig'> Friday April 29 2005</t>d>
<td class='navig' style='width:29%;'><a href='daily_view.php?y=2005&m=4&d=30'>Saturday April 30 2005&nbsp;&nbsp;&nbsp;<img src='./images/arrow-right.gif' alt='left arrow' /></a></td>

</tr>
<tr class='head' style='text-align:center; height:30px; font-weight:bold;'>
<td colspan='3' style='vertical-align:middle;'>
16H00
</td>


It shows the "d>" like it is an open code somewhere. But I looked at the daily_view.php file and I think this is the area to look, but don't know what I'm looing for.
Quote:

$previewDayArray = array('year'=>$prevDayNavig->thisYear(), 'month'=>$prevDayNavig->thisMonth(), 'day'=>$prevDayNavig->thisDay(), 'name'=>$date->makeDate($prevDayNavig->thisDay(true)) );
$currentDayArray = array('selected'=>$current_day_selected, 'name'=>$date->makeDate($dayNavig->thisDay(true)) );
$nextDayArray = array('year'=>$nextDayNavig->thisYear(), 'month'=>$nextDayNavig->thisMonth(), 'day'=>$nextDayNavig->thisDay(), 'name'=>$date->makeDate($nextDayNavig->thisDay(true)) );



I also looked in the templates/extcal_daily_view.html file and I think this is the area responsible for the problem, but I don't know what I'm looking for.
Quote:
<tr class='even'>
<td class='navig' style='width:29%;'><a href='daily_view.php?y=<{$preview_day.year}>&m=<{$preview_day.month}>&d=<{$preview_day.day}>'><img src='./images/arrow-left.gif' alt='left arrow' />&nbsp;&nbsp;&nbsp;<{$preview_day.name}></a></td>
<t<{if $current_day.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}> <{$current_day.name}></t><{if $current_week.selected}>h<{else}>d<{/if}>>
<td class='navig' style='width:29%;'><a href='daily_view.php?y=<{$next_day.year}>&m=<{$next_day.month}>&d=<{$next_day.day}>'><{$next_day.name}>&nbsp;&nbsp;&nbsp;<img src='./images/arrow-right.gif' alt='left arrow' /></a></td>
</tr>
<{foreach from=$day item=hour}>
<tr class='head' style='text-align:center; height:30px; font-weight:bold;'>
<td colspan='3' style='vertical-align:middle;'>
<{$hour.info.name}>
</td>
</tr>


Any thoughts?

2
rob777
Re: extcal calendar module. Extra characters showing.
  • 2005/4/14 21:46

  • rob777

  • Just popping in

  • Posts: 45

  • Since: 2005/1/21


Ok. Here is what I got so far.

I had to turn ON the option for
Update module template .html files from themes/your theme/templates directory? in admin/preferences/general settings.

I was changing the extcal templates and updating the module through the admin, but the changes weren't showing, until I turn the above setting to "ON".

Now for the fixes I found. I am probably doing it wrong, but these worked for me.
*******************************
Quote:
Daily view is displayng this Friday April 29 2005d>
What is that and How do I get rid of the "d>" ?


in extcal/templates/extcal_daily_view.html
Change
<t<{if $current_day.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}> <{$current_day.name}></t><{if $current_week.selected}>h<{else}>d<{/if}>>


To
<t<{if $current_day.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}><{$current_day.name}></t>


**********************************

Quote:
Weekly view is displaying this Week 14d>
What is that and How do I get rid of the "d>" ?


in extcal/templates/extcal_weekly_view.html
Change
<t<{if $current_week.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}> <{$current_week.week_nb}></t><{if $current_week.selected}>h<{else}>d<{/if}>>


To
<t<{if $current_week.selected}>h<{else}>d<{/if}> class='navig'><{$week_lang}><{$current_week.week_nb}></t>


************************************

Quote:
Monthly view is displaying this April 2005d>
What is that and How do I get rid of the "d>" ?


in extcal/templates/extcal_monthly_view.html
Change
<t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig'><{$current_month.month_name}> <{$current_month.year}></t><{if $current_week.selected}>h<{else}>d<{/if}>>


To
<t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig'><{$current_month.month_name}> <{$current_month.year}></t>


***************************************

Quote:
Yearly view is displaying this 2005h>
What is that and How do I get rid of the "h>" ?


in extcal/templates/extcal_yearly_view.html
Change
<t<{if $current_year.selected}>h<{else}>d<{/if}> class='navig'><{$current_year.year}></t><{if $current_year.selected}>h<{else}>d<{/if}>>


To
<t<{if $current_year.selected}>h<{else}>d<{/if}> class='navig'><{$current_year.year}></t>


**********************************************

Quote:
Calendar view is displaying this April 2005h>
What is that and How do I get rid of the "h>" ?


in extcal/templates/extcal_calendar_view.html
Change
<t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig' colspan='3'><{$current_month.name}> <{$current_month.year}></t><{if $current_month.selected}>h<{else}>d<{/if}>>


To
<t<{if $current_month.selected}>h<{else}>d<{/if}> class='navig' colspan='3'><{$current_month.name}> <{$current_month.year}></t>


*********************************************


That's all I could fix for now.

If someone could please point me to where the timestamp is defined in this module, maybe I could get the other issues solved. I have looked in almost every folder and file and I couldn't not find anywhere that looks like a fimilar timestamp code.

Any ideas???

Login

Who's Online

194 user(s) are online (153 user(s) are browsing Support Forums)


Members: 0


Guests: 194


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits