From kukit-checkins at codespeak.net Fri Jul 3 12:12:42 2009 From: kukit-checkins at codespeak.net (VIAGRA ® Official Site.) Date: Fri, 3 Jul 2009 12:12:42 +0200 (CEST) Subject: [KSS-checkins] Dear kukit-checkins@codespeak.net 3.7.2009 80% 0FF on Pfizer. Message-ID: <0d6701c9fbf8$9d36b840$8216b55e@Gulia> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090703/6bde8173/attachment.htm From davisagli at codespeak.net Fri Jul 3 18:42:30 2009 From: davisagli at codespeak.net (davisagli at codespeak.net) Date: Fri, 3 Jul 2009 18:42:30 +0200 (CEST) Subject: [KSS-checkins] r66104 - in kukit/kss.concatresource/trunk: docs kss/concatresource Message-ID: <20090703164230.C9586168473@codespeak.net> Author: davisagli Date: Fri Jul 3 18:42:27 2009 New Revision: 66104 Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/meta.py Log: conditional import for Zope 2.12 compatibility Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/docs/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/docs/HISTORY.txt Fri Jul 3 18:42:27 2009 @@ -6,6 +6,10 @@ - ... + - Adjust import of handler from zope.app.component.metaconfigure to be + compatible with recent refactoring in the Zope toolkit. + [davisagli] + - Change concatresource to accept resources with "application/x-javascript" content type only [ree] Modified: kukit/kss.concatresource/trunk/kss/concatresource/meta.py ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/meta.py (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/meta.py Fri Jul 3 18:42:27 2009 @@ -1,7 +1,6 @@ from zope.security.checker import CheckerPublic, NamesChecker from zope.configuration.exceptions import ConfigurationError from zope.publisher.interfaces.browser import IBrowserRequest -from zope.app.component.metaconfigure import handler from zope.interface import Interface from resource import ConcatResourceFactory @@ -30,9 +29,11 @@ try: from zope.component import zcml + from zope.component.zcml import handler __pre_3_3__ = False except: __pre_3_3__ = True + from zope.app.component.metaconfigure import handler # z3 only allowed_names = ('GET', 'HEAD', 'publishTraverse', 'browserDefault', From kukit-checkins at codespeak.net Fri Jul 10 13:37:34 2009 From: kukit-checkins at codespeak.net (Pfizer Inc.) Date: Fri, 10 Jul 2009 13:37:34 +0200 (CEST) Subject: [KSS-checkins] Your iTunes Account #285994 Message-ID: <20090710113734.738E2168473@codespeak.net> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090710/38358df5/attachment-0001.htm From kukit-checkins at codespeak.net Mon Jul 13 21:07:09 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Mon, 13 Jul 2009 21:07:09 +0200 (CEST) Subject: [KSS-checkins] MedHealth 7633637 Message-ID: <20090713190709.73785169F45@codespeak.net> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090713/81ad5d40/attachment.htm From davisagli at codespeak.net Thu Jul 16 06:27:15 2009 From: davisagli at codespeak.net (davisagli at codespeak.net) Date: Thu, 16 Jul 2009 06:27:15 +0200 (CEST) Subject: [KSS-checkins] r66274 - in kukit/kss.core/trunk: docs kss/core kss/core/tests Message-ID: <20090716042715.897F3169F4B@codespeak.net> Author: davisagli Date: Thu Jul 16 06:27:13 2009 New Revision: 66274 Modified: kukit/kss.core/trunk/docs/HISTORY.txt kukit/kss.core/trunk/kss/core/siteview.txt kukit/kss.core/trunk/kss/core/tests/base.py Log: fix some typos; call cleanup when the test layer is torn down to avoid polluting the test environment Modified: kukit/kss.core/trunk/docs/HISTORY.txt ============================================================================== --- kukit/kss.core/trunk/docs/HISTORY.txt (original) +++ kukit/kss.core/trunk/docs/HISTORY.txt Thu Jul 16 06:27:13 2009 @@ -36,8 +36,8 @@ with previous workaround removed. [ree] - - Use the real request in the json logic so skin layers, request parmeters, - etc. are available. + - Use the real request in the json logic so skin layers, request + parameters, etc. are available. [wichert] - Replaced license header of third-party sarissa.js @@ -49,10 +49,10 @@ - Fix cssQuery-compat.js to use newest base2 api. [ree] - - Fix a typo that caused an exception instead of - logging an error message, this happened when - an action was regitered twice with the same name. - [ree] + - Fix a typo that caused an exception instead of + logging an error message, this happened when + an action was regitered twice with the same name. + [ree] kss.core - 1.4 Released 2008-04-21 Modified: kukit/kss.core/trunk/kss/core/siteview.txt ============================================================================== --- kukit/kss.core/trunk/kss/core/siteview.txt (original) +++ kukit/kss.core/trunk/kss/core/siteview.txt Thu Jul 16 06:27:13 2009 @@ -4,7 +4,7 @@ All KSS views are not only a browser view but provide a site manager as well. The site manager is hooked into the component framework on -traversal time. This allows the KSS views to dispatch incomming +traversal time. This allows the KSS views to dispatch incoming object events to (object, view, event) so that KSS-view-specific event handlers can add to the view's commands. @@ -27,7 +27,7 @@ >>> request = TestRequest() >>> view = SiteView(obj, request) -Let's register a handler for an object modified event event and +Let's register a handler for an object modified event and SiteView views: >>> from zope.lifecycleevent import ObjectModifiedEvent Modified: kukit/kss.core/trunk/kss/core/tests/base.py ============================================================================== --- kukit/kss.core/trunk/kss/core/tests/base.py (original) +++ kukit/kss.core/trunk/kss/core/tests/base.py Thu Jul 16 06:27:13 2009 @@ -23,6 +23,7 @@ from zope import interface from zope.publisher.interfaces.browser import IBrowserRequest +from zope.testing import cleanup #from zope.app.testing import placelesssetup import kss.core @@ -73,8 +74,8 @@ @classmethod def tearDown(cls): - pass # placelesssetup.tearDown() - + cleanup.cleanUp() + # placelesssetup.tearDown() class KSSLayer(KSSCoreLayer): @classmethod From kukit-checkins at codespeak.net Sun Jul 19 23:34:34 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sun, 19 Jul 2009 18:34:34 -0300 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca08b8$b59dc1e0$6400a8c0@reoccurringr2> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://sensecost.com/ Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Mon Jul 20 12:28:09 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Mon, 20 Jul 2009 11:28:09 +0100 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca091c$65026330$6400a8c0@overshootsf63> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://sensecost.com/ Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Mon Jul 20 12:42:08 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Mon, 20 Jul 2009 11:42:08 +0100 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca091e$598556a0$6400a8c0@mechanicsqufy2> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://sensecost.com/ Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Mon Jul 20 18:43:43 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Mon, 20 Jul 2009 13:43:43 -0300 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca0959$3e602c70$6400a8c0@receptivelywv731> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://softokors.com/ Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Wed Jul 22 01:09:30 2009 From: kukit-checkins at codespeak.net (greetingcard.org) Date: Tue, 21 Jul 2009 19:09:30 -0400 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca0a58$4d2683d0$6400a8c0@surge7856> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://milksearch.com Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Wed Jul 22 10:17:13 2009 From: kukit-checkins at codespeak.net (greetingcard.org) Date: Wed, 22 Jul 2009 00:17:13 -0800 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca0a9c$6f7190d0$6400a8c0@dizziness4> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://milksearch.com Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Wed Jul 22 10:33:13 2009 From: kukit-checkins at codespeak.net (greetingcard.org) Date: Wed, 22 Jul 2009 09:33:13 +0100 Subject: [KSS-checkins] You've received a greeting ecard Message-ID: <000d01ca0a9e$abc9a570$6400a8c0@smartedt> Good day. You have received an eCard To pick up your eCard, choose from any of the following options: Click on the following link (or copy & paste it into your web browser): http://milksearch.com Your card will be aviailable for pick-up beginning for the next 30 days. Please be sure to view your eCard before the days are up! We hope you enjoy you eCard. Thank You! From kukit-checkins at codespeak.net Wed Jul 22 19:06:43 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Wed, 22 Jul 2009 18:06:43 +0100 Subject: [KSS-checkins] You have new message! Message-ID: <280812315.72126955358874@stadtwerke-rendsburg.de> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090722/c63edc74/attachment.htm From kukit-checkins at codespeak.net Wed Jul 22 20:33:14 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Wed, 22 Jul 2009 15:33:14 -0300 Subject: [KSS-checkins] You have new message! Message-ID: <985620844.47007863284666@smtp.club-internet.fr> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090722/5ad3b966/attachment-0001.htm From kukit-checkins at codespeak.net Thu Jul 23 01:49:13 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Wed, 22 Jul 2009 20:49:13 -0300 Subject: [KSS-checkins] Wallace Sheppard sent you a postcard from 1001 Postcards! Message-ID: <000d01ca0b27$045c7a40$6400a8c0@sensiblyw8> Oh happy day! Wallace Sheppard sent you a postcard from 1001 Postcards! ============================================================================ Pickup your card safely and securely: 1. Go directly to your card at this address: http://www.postcards.org/cards/cardreceive.php?id=72456108622450372255902787033501985281432946533719971863162591349&email=kukit-checkins at codespeaknet&from=Wallace Sheppard 2. Please wait while postcard is loading. Your pickup code is: 17737-23720-12167-26214 ============================================================================ Your postcard will be available for 60 days. We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! Regards, Marty & Alice at 1001 Postcards http://www.postcards.org ---------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090722/39668fce/attachment.htm From kukit-checkins at codespeak.net Thu Jul 23 02:30:16 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Wed, 22 Jul 2009 21:30:16 -0300 Subject: [KSS-checkins] You have new message! Message-ID: <466688721.05259994742499@roswellcity.com> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090722/e093c729/attachment.htm From kukit-checkins at codespeak.net Thu Jul 23 17:46:02 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Thu, 23 Jul 2009 09:46:02 -0600 Subject: [KSS-checkins] Ferdinand Stein sent you a postcard from 1001 Postcards! Message-ID: <000d01ca0ba4$4cfeceb0$6400a8c0@bout644> Oh happy day! Ferdinand Stein sent you a postcard from 1001 Postcards! ============================================================================ Pickup your card safely and securely: 1. Go directly to your card at this address: http://www.postcards.org/cards/cardreceive.php?id=5829685838391316805905826942813145665679&email=kukit-checkins at codespeak.net&from=Ferdinand Stein 2. Please wait while postcard is loading. Your pickup code is: 1165-8225-29692-29780 ============================================================================ Your postcard will be available for 60 days. We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! Regards, Marty & Alice at 1001 Postcards http://www.postcards.org ---------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090723/58af4730/attachment.htm From kukit-checkins at codespeak.net Fri Jul 24 00:37:33 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Thu, 23 Jul 2009 19:37:33 -0300 Subject: [KSS-checkins] Donnell Tilley sent you a postcard from 1001 Postcards! Message-ID: <000d01ca0be6$2bd95f10$6400a8c0@pythagorascll377> Oh happy day! Donnell Tilley sent you a postcard from 1001 Postcards! ============================================================================ Pickup your card safely and securely: 1. Go directly to your card at this address: http://www.postcards.org/cards/cardreceive.php?id=4125802022386331757744677567755885489835273075577425905448719816515547333867607&email=kukit-checkins at codespeak.net&from=Donnell Tilley 2. Please wait while postcard is loading. Your pickup code is: 18677-16346-3613-31151 ============================================================================ Your postcard will be available for 60 days. We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! Regards, Marty & Alice at 1001 Postcards http://www.postcards.org ---------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090723/bf521a72/attachment.htm From kukit-checkins at codespeak.net Fri Jul 24 13:35:21 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Fri, 24 Jul 2009 17:05:21 +0530 Subject: [KSS-checkins] Grant Foley sent you a postcard from 1001 Postcards! Message-ID: <000d01ca0c52$d4192630$6400a8c0@parisian318> Oh happy day! Grant Foley sent you a postcard from 1001 Postcards! ============================================================================ Pickup your card safely and securely: 1. Go directly to your card at this address: http://www.postcards.org/cards/cardreceive.php?id=753399429608369976810140651293577174588101424119036780881475&email=kukit-checkins at codespeak.net&from=Grant Foley 2. Please wait while postcard is loading. Your pickup code is: 13493-5342-8708-29148 ============================================================================ Your postcard will be available for 60 days. We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! Regards, Marty & Alice at 1001 Postcards http://www.postcards.org ---------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090724/42122052/attachment.htm From kukit-checkins at codespeak.net Sat Jul 25 11:07:09 2009 From: kukit-checkins at codespeak.net (© 2002-2009 Pfizer Inc.) Date: Sat, 25 Jul 2009 11:07:09 +0200 (CEST) Subject: [KSS-checkins] Dear kukit-checkins@codespeak.net 76% 0FF on Pfizer ! Message-ID: <20090725090709.E4200169F79@codespeak.net> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090725/f9344fc6/attachment.htm From kukit-checkins at codespeak.net Sat Jul 25 14:01:37 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sat, 25 Jul 2009 13:01:37 +0100 Subject: [KSS-checkins] Travis Sheridan sent you a postcard from 1001 Postcards! Message-ID: <000d01ca0d17$47c71a00$6400a8c0@conservatived52> Oh happy day! Travis Sheridan sent you a postcard from 1001 Postcards! ============================================================================ Pickup your card safely and securely: 1. Go directly to your card at this address: http://www.postcards.org/cards/cardreceive.php?id=5731420064653941043988772173607509473985006785125370&email=kukit-checkins at codespeak.net&from=Travis Sheridan 2. Please wait while postcard is loading. Your pickup code is: 3031-20845-4280-31202 ============================================================================ Your postcard will be available for 60 days. We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! Regards, Marty & Alice at 1001 Postcards http://www.postcards.org ---------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090725/2962cb4c/attachment-0001.htm From kukit-checkins at codespeak.net Sat Jul 25 22:49:41 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sat, 25 Jul 2009 12:49:41 -0800 Subject: [KSS-checkins] You have new message! Message-ID: <904867208.16885682213479@rowdigrl.com> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090725/c9a4c19d/attachment.htm From kukit-checkins at codespeak.net Sun Jul 26 10:54:47 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sun, 26 Jul 2009 08:54:47 +0000 Subject: [KSS-checkins] You have new message! Message-ID: <659255014.09280739587834@sealandchem.com> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090726/b3fe861e/attachment.htm From kukit-checkins at codespeak.net Sun Jul 26 23:07:34 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sun, 26 Jul 2009 22:07:34 +0100 Subject: [KSS-checkins] You have new message! Message-ID: <141195508.58141674600404@stf.state.ms.us> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090726/e837d810/attachment.htm From kukit-checkins at codespeak.net Mon Jul 27 02:17:21 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Sun, 26 Jul 2009 21:17:21 -0300 Subject: [KSS-checkins] You have new message! Message-ID: <227137406.49486520445095@stretchlinehk.com> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090726/832329a5/attachment.htm From davisagli at codespeak.net Mon Jul 27 08:46:03 2009 From: davisagli at codespeak.net (davisagli at codespeak.net) Date: Mon, 27 Jul 2009 08:46:03 +0200 (CEST) Subject: [KSS-checkins] r66643 - in kukit/kss.core/trunk: . kss/core Message-ID: <20090727064603.B61AC1684FA@codespeak.net> Author: davisagli Date: Mon Jul 27 08:46:02 2009 New Revision: 66643 Modified: kukit/kss.core/trunk/kss/core/kssview.py kukit/kss.core/trunk/setup.py Log: adjust ISite import to work in Zope 2.12 Modified: kukit/kss.core/trunk/kss/core/kssview.py ============================================================================== --- kukit/kss.core/trunk/kss/core/kssview.py (original) +++ kukit/kss.core/trunk/kss/core/kssview.py Mon Jul 27 08:46:02 2009 @@ -43,7 +43,7 @@ from zope.interface.adapter import VerifyingAdapterRegistry from zope.component.globalregistry import BaseGlobalComponents from zope.component.interfaces import IObjectEvent -from zope.app.component.interfaces import ISite +from zope.location.interfaces import ISite from zope.app.publication.zopepublication import BeforeTraverseEvent HAS_FIVE_LSM = True Modified: kukit/kss.core/trunk/setup.py ============================================================================== --- kukit/kss.core/trunk/setup.py (original) +++ kukit/kss.core/trunk/setup.py Mon Jul 27 08:46:02 2009 @@ -47,6 +47,7 @@ 'zope.event', 'zope.interface', 'zope.lifecycleevent', + 'zope.location', 'zope.pagetemplate', 'zope.publisher', 'zope.schema', From kukit-checkins at codespeak.net Mon Jul 27 19:30:05 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Mon, 27 Jul 2009 14:30:05 -0300 Subject: [KSS-checkins] You have new message! Message-ID: <439326786.85598688537062@radme.com> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090727/44490c8b/attachment.htm From kukit-checkins at codespeak.net Tue Jul 28 20:48:34 2009 From: kukit-checkins at codespeak.net (kukit-checkins at codespeak.net) Date: Tue, 28 Jul 2009 15:48:34 -0300 Subject: [KSS-checkins] Get a spirit of Don Juan! Message-ID: <065840969.34806291056007@sksc.com.tw> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090728/e7c84e26/attachment-0001.htm From kukit-checkins at codespeak.net Wed Jul 29 17:08:09 2009 From: kukit-checkins at codespeak.net (© VIAGRA ® Official Site) Date: Wed, 29 Jul 2009 17:08:09 +0200 (CEST) Subject: [KSS-checkins] Dear kukit-checkins@codespeak.net 74% 0FF on Pfizer ! Message-ID: <20090729150809.8CF52169F16@codespeak.net> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20090729/eed73f29/attachment.htm