From: znek Date: Thu, 12 Aug 2004 18:08:29 +0000 (+0000) Subject: improvements, improvements ;-) X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e99d9cdf62d339fd52af77d24575fa4e62420999;p=scalable-opengroupware.org improvements, improvements ;-) git-svn-id: http://svn.opengroupware.org/SOGo/trunk@193 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/UI/Common/ChangeLog b/SOGo/UI/Common/ChangeLog index 6a10f38d..70def0aa 100644 --- a/SOGo/UI/Common/ChangeLog +++ b/SOGo/UI/Common/ChangeLog @@ -1,3 +1,8 @@ +2004-08-12 Marcus Mueller + + * UIxWinClose.wox: removed rendering of (X) on Laurent's request + (v0.9.11) + 2004-08-11 Marcus Mueller * UIxPageFrame subclasses from UIxComponent now, removed -SoUser diff --git a/SOGo/UI/Common/UIxWinClose.wox b/SOGo/UI/Common/UIxWinClose.wox index 153cf41f..9de8f405 100644 --- a/SOGo/UI/Common/UIxWinClose.wox +++ b/SOGo/UI/Common/UIxWinClose.wox @@ -1,6 +1,13 @@ + + + \ No newline at end of file diff --git a/SOGo/UI/Common/Version b/SOGo/UI/Common/Version index 28292b54..c351558f 100644 --- a/SOGo/UI/Common/Version +++ b/SOGo/UI/Common/Version @@ -1,3 +1,3 @@ # $Id$ -SUBMINOR_VERSION:=8 +SUBMINOR_VERSION:=11 diff --git a/SOGo/UI/Scheduler/ChangeLog b/SOGo/UI/Scheduler/ChangeLog index 5a1df235..5fbaf8df 100644 --- a/SOGo/UI/Scheduler/ChangeLog +++ b/SOGo/UI/Scheduler/ChangeLog @@ -1,3 +1,15 @@ +2004-08-12 Marcus Mueller + + * v0.9.24 + + * Added AnaisUidSelector to all views. Removed worse named -owner + method from all affected views and instead added + -formattedCalendarUIDs to UIxCalView. This is now used by all + print views in their header. + + * UIxCalWeekOverview.m: adjusted endDate properly, if -displayWeekends + returns NO (the default). + 2004-08-12 Marcus Mueller * UIxCalView.m: fixed problems with redirect (v0.9.23) diff --git a/SOGo/UI/Scheduler/UIxCalDayChartview.wox b/SOGo/UI/Scheduler/UIxCalDayChartview.wox index 34962970..a5b204af 100644 --- a/SOGo/UI/Scheduler/UIxCalDayChartview.wox +++ b/SOGo/UI/Scheduler/UIxCalDayChartview.wox @@ -36,10 +36,11 @@ - +
TODO: controls + + - +
TODO: controls + + - + diff --git a/SOGo/UI/Scheduler/UIxCalMonthOverview.wox b/SOGo/UI/Scheduler/UIxCalMonthOverview.wox index 2db35fc0..3391cad7 100644 --- a/SOGo/UI/Scheduler/UIxCalMonthOverview.wox +++ b/SOGo/UI/Scheduler/UIxCalMonthOverview.wox @@ -36,10 +36,11 @@
TODO: controls + +

-

+

- +
TODO: controls + +

-

+

diff --git a/SOGo/UI/Scheduler/UIxCalView.m b/SOGo/UI/Scheduler/UIxCalView.m index 96a4cf81..8d38d972 100644 --- a/SOGo/UI/Scheduler/UIxCalView.m +++ b/SOGo/UI/Scheduler/UIxCalView.m @@ -387,6 +387,12 @@ [_qp removeObjectForKey:@"day"]; } +/* calendarUIDs */ + +- (NSString *)formattedCalendarUIDs { + return [[[self clientObject] calendarUIDs] + componentsJoinedByString:@", "]; +} /* Actions */ diff --git a/SOGo/UI/Scheduler/UIxCalWeekChartview.wox b/SOGo/UI/Scheduler/UIxCalWeekChartview.wox index d2e31a4c..8ad53360 100644 --- a/SOGo/UI/Scheduler/UIxCalWeekChartview.wox +++ b/SOGo/UI/Scheduler/UIxCalWeekChartview.wox @@ -28,7 +28,11 @@
- +
TODO: controls + + - +
TODO: controls + + - + diff --git a/SOGo/UI/Scheduler/UIxCalWeekView.m b/SOGo/UI/Scheduler/UIxCalWeekView.m index 92d2bf1e..02dfc30e 100644 --- a/SOGo/UI/Scheduler/UIxCalWeekView.m +++ b/SOGo/UI/Scheduler/UIxCalWeekView.m @@ -10,8 +10,14 @@ } - (NSCalendarDate *)endDate { - return [[[self startDate] dateByAddingYears:0 months:0 days:7 - hours:0 minutes:0 seconds:0] + unsigned offset; + + if([self shouldDisplayWeekend]) + offset = 7; + else + offset = 5; + return [[[self startDate] dateByAddingYears:0 months:0 days:offset + hours:0 minutes:0 seconds:0] endOfDay]; } diff --git a/SOGo/UI/Scheduler/UIxCalYearOverview.wox b/SOGo/UI/Scheduler/UIxCalYearOverview.wox index 2ee96ece..7c4df342 100644 --- a/SOGo/UI/Scheduler/UIxCalYearOverview.wox +++ b/SOGo/UI/Scheduler/UIxCalYearOverview.wox @@ -31,7 +31,11 @@
TODO: controls + +

-

+

- +
TODO: controls + +