From ae46d1ccb126222a2cea6b95bdf0715fcd24218d Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 5 Sep 2007 17:56:39 +0000 Subject: [PATCH] Monotone-Parent: 2d25ad6bd4e7c655ec57826578b1f9451831574b Monotone-Revision: 916c9f862b9a3055282ce374be1879734051ee31 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-09-05T17:56:39 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ UI/MainUI/SOGoRootPage.m | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1a506694e..d13f95d6c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-09-05 Wolfgang Sourdeau + * UI/MainUI/SOGoRootPage.m ([SOGoRootPage + -isPublicInContext:localContext]): new overriden method that + returns YES. + * UI/Scheduler/UIxCalendarSelector.m ([UIxCalendarSelector -currentCalendarLogin]): replace css-unsafe characters with _. diff --git a/UI/MainUI/SOGoRootPage.m b/UI/MainUI/SOGoRootPage.m index 01801d0f0..f99b4e9e9 100644 --- a/UI/MainUI/SOGoRootPage.m +++ b/UI/MainUI/SOGoRootPage.m @@ -138,4 +138,9 @@ [super appendToResponse: response inContext: ctx]; } +- (BOOL) isPublicInContext: (WOContext *) localContext +{ + return YES; +} + @end /* SOGoRootPage */