Checked in patch for bug 241953

This commit is contained in:
mostafah%oeone.com 2004-04-28 14:45:34 +00:00
parent 7c1f545442
commit de23120f21
6 changed files with 34 additions and 34 deletions

View File

@ -532,12 +532,12 @@ DayView.prototype.refreshDisplay = function dayview_refreshDisplay( )
var dateString = weekViewStringBundle.GetStringFromName( "Week" )+" "+weekNumber+ ": " + this.calendarWindow.dateFormater.getFormatedDate( this.calendarWindow.getSelectedDate() ) ;
var dayTextItemPrev2 = document.getElementById( "-2-day-title" );
var dayTextItemPrev1 = document.getElementById( "-1-day-title" );
var dayTextItem = document.getElementById( "0-day-title" );
var dayTextItemNext1 = document.getElementById( "1-day-title" );
var dayTextItemNext2 = document.getElementById( "2-day-title" );
var daySpecificTextItem = document.getElementById( "0-day-specific-title" );
var dayTextItemPrev2 = document.getElementById( "d-2-day-title" );
var dayTextItemPrev1 = document.getElementById( "d-1-day-title" );
var dayTextItem = document.getElementById( "d0-day-title" );
var dayTextItemNext1 = document.getElementById( "d1-day-title" );
var dayTextItemNext2 = document.getElementById( "d2-day-title" );
var daySpecificTextItem = document.getElementById( "d0-day-specific-title" );
dayTextItemPrev2.setAttribute( "value" , dayNamePrev2 );
dayTextItemPrev1.setAttribute( "value" , dayNamePrev1 );
dayTextItem.setAttribute( "value" , dayName );

View File

@ -73,24 +73,24 @@
<vbox id="day-title-container" flex="1">
<hbox id="day-title-box" flex="1">
<vbox class="day-title-label-box" flex="1">
<label id="-2-day-title" onclick="gCalendarWindow.goToPrevious( 2 )" value="" />
<label id="d-2-day-title" onclick="gCalendarWindow.goToPrevious( 2 )" value="" />
</vbox>
<vbox class="day-title-label-box" flex="1">
<label id="-1-day-title" onclick="gCalendarWindow.goToPrevious( 1 )" value="" />
<label id="d-1-day-title" onclick="gCalendarWindow.goToPrevious( 1 )" value="" />
</vbox>
<vbox class="day-title-label-box" flex="1">
<label id="0-day-title" value="" />
<label id="d0-day-title" value="" />
</vbox>
<vbox class="day-title-label-box" flex="1">
<label id="1-day-title" onclick="gCalendarWindow.goToNext( 1 )" value="" />
<label id="d1-day-title" onclick="gCalendarWindow.goToNext( 1 )" value="" />
</vbox>
<vbox class="day-title-label-box" flex="1">
<label id="2-day-title" onclick="gCalendarWindow.goToNext( 2 )" value="" />
<label id="d2-day-title" onclick="gCalendarWindow.goToNext( 2 )" value="" />
</vbox>
</hbox>
<hbox id="day-specific-title-box" flex="1">
<vbox class="day-title-label-box" flex="1">
<label id="0-day-specific-title" value="" />
<label id="d0-day-specific-title" value="" />
</vbox>
</hbox>
</vbox>

View File

@ -453,11 +453,11 @@ MonthView.prototype.refreshDisplay = function monthView_refreshDisplay( )
titleMonthArray[i] = newMonth + i;
titleMonthArray[i] = (titleMonthArray[i] >= 0)? titleMonthArray[i] % 12 : titleMonthArray[i] + 12;
titleMonthArray[i] = this.calendarWindow.dateFormater.getMonthName( titleMonthArray[i] );
var idName = i + "-month-title";
var idName = "m"+ i + "-month-title";
document.getElementById( idName ).setAttribute( "value" , titleMonthArray[i] );
}
document.getElementById( "0-month-title" ).setAttribute( "value" , titleMonthArray[0] + " " + newYear );
document.getElementById( "m0-month-title" ).setAttribute( "value" , titleMonthArray[0] + " " + newYear );
var categoriesStringBundle = srGetStrBundle("chrome://calendar/locale/calendar.properties");
var defaultWeekStart = categoriesStringBundle.GetStringFromName("defaultWeekStart" );

View File

@ -79,25 +79,25 @@
<vbox id="month-title-container" flex="1">
<hbox id="month-title-box" flex="1">
<vbox class="month-title-label-box" flex="1">
<label id="-2-month-title" onclick="gCalendarWindow.goToPrevious( 2 )"/>
<label id="m-2-month-title" onclick="gCalendarWindow.goToPrevious( 2 )"/>
</vbox>
<vbox class="month-title-label-box" flex="1">
<label id="-1-month-title" onclick="gCalendarWindow.goToPrevious( 1 )"/>
<label id="m-1-month-title" onclick="gCalendarWindow.goToPrevious( 1 )"/>
</vbox>
<vbox class="month-title-label-box" flex="1">
<label id="0-month-title" />
<label id="m0-month-title" />
</vbox>
<vbox class="month-title-label-box" flex="1">
<label id="1-month-title" onclick="gCalendarWindow.goToNext( 1 )"/>
<label id="m1-month-title" onclick="gCalendarWindow.goToNext( 1 )"/>
</vbox>
<vbox class="month-title-label-box" flex="1">
<label id="2-month-title" onclick="gCalendarWindow.goToNext( 2 )"/>
<label id="m2-month-title" onclick="gCalendarWindow.goToNext( 2 )"/>
</vbox>
</hbox>
<!-- Eric modification : the year is now included in the 0-month-title by the JS file
<hbox id="year-title-box" flex="1">
<vbox class="month-title-label-box" flex="1">
<label id="0-year-title"/>
<label id="m0-year-title"/>
</vbox>
</hbox>
-->

View File

@ -483,7 +483,7 @@
margin: 0px 15px 0px 15px;
}
#2-month-title, #-2-month-title
#m2-month-title, #m-2-month-title
{
font-size:1.2em;
color: #9FBEC8;
@ -491,14 +491,14 @@
padding:0px;
cursor:pointer;
}
#1-month-title, #-1-month-title
#m1-month-title, #m-1-month-title
{
font-size:1.5em;
color: #9FBEC8;
cursor:pointer;
}
#0-month-title, #0-year-title
#m0-month-title, #m0-year-title
{
font-size:2.0em;
color: #3f7d91;
@ -809,7 +809,7 @@
margin: 0px 15px 0px 15px;
}
#2-day-title, #-2-day-title, #1-day-specific-title, #-1-day-specific-title
#d2-day-title, #d-2-day-title, #d1-day-specific-title, #d-1-day-specific-title
{
font-size:1.2em;
color: #9FBEC8;
@ -818,20 +818,20 @@
cursor:pointer;
}
#1-day-title, #-1-day-title
#d1-day-title, #d-1-day-title
{
font-size:1.5em;
color: #9FBEC8;
cursor:pointer;
}
#0-day-specific-title
#d0-day-specific-title
{
font-size:1.2em;
color: #3f7d91;
}
#0-day-title
#d0-day-title
{
font-size:2.0em;
color: #3f7d91;

View File

@ -476,7 +476,7 @@
margin: 0px 15px 0px 15px;
}
#2-month-title, #-2-month-title
#m2-month-title, #m-2-month-title
{
font-size:1.2em;
color: #9FBEC8;
@ -484,14 +484,14 @@
padding:0px;
cursor:pointer;
}
#1-month-title, #-1-month-title
#m1-month-title, #m-1-month-title
{
font-size:1.5em;
color: #9FBEC8;
cursor:pointer;
}
#0-month-title, #0-year-title
#m0-month-title, #m0-year-title
{
font-size:2.0em;
color: #3f7d91;
@ -802,7 +802,7 @@
margin: 0px 15px 0px 15px;
}
#2-day-title, #-2-day-title, #1-day-specific-title, #-1-day-specific-title
#d2-day-title, #d-2-day-title, #d1-day-specific-title, #d-1-day-specific-title
{
font-size:1.2em;
color: #9FBEC8;
@ -811,20 +811,20 @@
cursor:pointer;
}
#1-day-title, #-1-day-title
#d1-day-title, #d-1-day-title
{
font-size:1.5em;
color: #9FBEC8;
cursor:pointer;
}
#0-day-specific-title
#d0-day-specific-title
{
font-size:1.2em;
color: #3f7d91;
}
#0-day-title
#d0-day-title
{
font-size:2.0em;
color: #3f7d91;