From andrew@zope.com Mon Oct 1 17:20:09 2001 From: andrew@zope.com (Andrew Sawyers) Date: Mon, 1 Oct 2001 12:20:09 -0400 Subject: [CMF-checkins] CVS: Products/CMFDecor/skins/zpt_generic - standard_error_message.pt:1.1 Message-ID: <200110011620.f91GK9I31800@cvs.baymountain.com> Update of /cvs-repository/Products/CMFDecor/skins/zpt_generic In directory cvs.zope.org:/tmp/cvs-serv31747 Added Files: standard_error_message.pt Log Message: *added skinned standard_error_message === Added File Products/CMFDecor/skins/zpt_generic/standard_error_message.pt ===

Site Error

An error was encountered while publishing this resource.

Error Type:
Error Value:


Troubleshooting Suggestions

  • This resource may be trying to reference a nonexistent object or variable .
  • The URL may be incorrect.
  • The parameters passed to this resource may be incorrect.
  • A resource that this resource relies on may be encountering an error.

For more detailed information about the error, please refer to the HTML source for this page.

If the error persists please contact the site maintainer. Thank you for your patience.

>
From andrew@zope.com Mon Oct 1 19:16:47 2001 From: andrew@zope.com (Andrew Sawyers) Date: Mon, 1 Oct 2001 14:16:47 -0400 Subject: [CMF-checkins] CVS: Products/CMFDecor/skins/zpt_generic - standard_error_message.pt:1.2 Message-ID: <200110011816.f91IGl324068@cvs.baymountain.com> Update of /cvs-repository/Products/CMFDecor/skins/zpt_generic In directory cvs.zope.org:/tmp/cvs-serv24049 Modified Files: standard_error_message.pt Log Message: *fixed typo... === Products/CMFDecor/skins/zpt_generic/standard_error_message.pt 1.1 => 1.2 ===

-
> + From tseaver@zope.com Tue Oct 2 15:40:52 2001 From: tseaver@zope.com (Tres Seaver) Date: Tue, 2 Oct 2001 10:40:52 -0400 Subject: [CMF-checkins] CVS: Products/CMFCore - CatalogTool.py:1.16 Message-ID: <200110021440.f92EeqH16835@cvs.baymountain.com> Update of /cvs-repository/Products/CMFCore In directory cvs.zope.org:/tmp/cvs-serv16827/CMFCore Modified Files: CatalogTool.py Log Message: - Remove silly dependency on REQUEST (catalog already does the Right Thing (tm) when none available). === Products/CMFCore/CatalogTool.py 1.15 => 1.16 === # searchResults has inherited security assertions. def searchResults(self, REQUEST=None, **kw): - '''Calls SiteIndex.searchResults() with extra arguments that + '''Calls ZCatalog.searchResults with extra arguments that limit the results to what the user is allowed to see. ''' - if REQUEST is None: - REQUEST = self.REQUEST user = _getAuthenticatedUser(self) kw['allowedRolesAndUsers'] = list(user.getRoles()) + \ ['Anonymous', From klm@zope.com Tue Oct 2 18:46:46 2001 From: klm@zope.com (Ken Manheimer) Date: Tue, 2 Oct 2001 13:46:46 -0400 Subject: [CMF-checkins] CVS: CMF/CMFDefault/skins/generic - join_form.dtml:1.2 Message-ID: <200110021746.f92Hkke23341@cvs.baymountain.com> Update of /cvs-repository/CMF/CMFDefault/skins/generic In directory cvs.zope.org:/tmp/cvs-serv23333 Modified Files: join_form.dtml Log Message: Tiny => typo encountered when trying to track down CMFDecor join_form.pt error message disappearance. === CMF/CMFDefault/skins/generic/join_form.dtml 1.1 => 1.2 ===
- +
From jens@zope.com Wed Oct 3 19:39:43 2001 From: jens@zope.com (Jens Vagelpohl) Date: Wed, 3 Oct 2001 14:39:43 -0400 Subject: [CMF-checkins] CVS: Products/CMFCalendar - Event.py:1.5 Message-ID: <200110031839.f93Idhx12222@cvs.baymountain.com> Update of /cvs-repository/Products/CMFCalendar In directory cvs.zope.org:/tmp/cvs-serv12214 Modified Files: Event.py Log Message: Added safeguards that will make sure that end_date is never before start_date === Products/CMFCalendar/Event.py 1.4 => 1.5 === self.expiration_date = expiration_date self.setStartDate(start_date) + + if end_date < start_date: + end_date = start_date + self.setEndDate(end_date) self.location=location self.contact_name=contact_name @@ -258,6 +262,7 @@ , start_time , startAMPM ) + start_date = DateTime( efdate ) exdate = '%s/%s/%s %s %s' % (expirationDay , expirationMo @@ -265,9 +270,14 @@ , stop_time , stopAMPM ) + end_date = DateTime( exdate ) + + if end_date < start_date: + end_date = start_date - self.setStartDate(DateTime(efdate)) - self.setEndDate(DateTime(exdate)) + self.setStartDate( start_date ) + self.setEndDate( end_date ) + if location is not None: self.location = location if contact_name is not None: From jens@zope.com Wed Oct 3 19:49:20 2001 From: jens@zope.com (Jens Vagelpohl) Date: Wed, 3 Oct 2001 14:49:20 -0400 Subject: [CMF-checkins] CVS: Products/CMFDecor/skins/zpt_generic - search_form.pt:1.6 Message-ID: <200110031849.f93InKd14336@cvs.baymountain.com> Update of /cvs-repository/Products/CMFDecor/skins/zpt_generic In directory cvs.zope.org:/tmp/cvs-serv14328 Modified Files: search_form.pt Log Message: limited length of multiple select box to 5 === Products/CMFDecor/skins/zpt_generic/search_form.pt 1.5 => 1.6 === Subject -