From kukit-checkins at codespeak.net Tue Apr 20 22:31:25 2010 From: kukit-checkins at codespeak.net (VIAGRA ® Official Seller) Date: Tue, 20 Apr 2010 22:31:25 +0200 (CEST) Subject: [KSS-checkins] kukit-checkins@codespeak.net April 68% off Message-ID: <20100420203125.476F3282BEC@codespeak.net> An HTML attachment was scrubbed... URL: http://codespeak.net/pipermail/kukit-checkins/attachments/20100420/d144bb65/attachment.htm From gotcha at codespeak.net Sun Apr 25 13:09:18 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Sun, 25 Apr 2010 13:09:18 +0200 (CEST) Subject: [KSS-checkins] r74053 - kukit/kss.core/trunk/kss/core Message-ID: <20100425110918.182CC282C12@codespeak.net> Author: gotcha Date: Sun Apr 25 13:09:17 2010 New Revision: 74053 Modified: kukit/kss.core/trunk/kss/core/kssview.py Log: pyflakes; pep8; remove BBB 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 Sun Apr 25 13:09:17 2010 @@ -27,9 +27,6 @@ The default command set is implemented in the base class as well. ''' - -import warnings - try: from Products.Five import BrowserView except ImportError: @@ -68,13 +65,15 @@ self.utilities.__parent__ = self if HAS_FIVE_LSM: + def registeredUtilities(self): - for ((provided, name), (component, info) + for ((provided, name), (component, info), ) in self._utility_registrations.iteritems(): yield UtilityRegistration(self, provided, name, registry._wrap(component, self), info) + class SiteView(BrowserView): """A browser view that is its own site """ @@ -108,6 +107,7 @@ # become the current site when it's traversed. This is bad, # hopefully Zope 2.11 will fix this. For now, we'll just take # care of it ourselves... + def __before_publishing_traverse__(self, obj, request): event.notify(BeforeTraverseEvent(self, request)) @@ -128,6 +128,7 @@ for adapter in adapters: pass # getting them does the work + class KSSView(SiteView): """KSS view @@ -145,8 +146,10 @@ # XXX avoid weird acquisition behaviour in Zope 2... this should # go away when Five views aren't Acquisition objects anymore. + def _set_context(self, context): self._context = [context] + def _get_context(self): return self._context[0] context = property(_get_context, _set_context) @@ -168,6 +171,7 @@ # return the adapted view return commandset.provides(self) + class CommandSet: interface.implements(ICommandSet) @@ -175,23 +179,7 @@ self.view = view self.context = self.view.context self.request = self.view.request - self.commands = self.view.commands + self.commands = self.view.commands def getCommandSet(self, name): return self.view.getCommandSet(name) - -# BBB deprecated -class AzaxBaseView(KSSView): - def __init__(self, *args, **kw): - message = "'AzaxBaseView' is deprecated," \ - "use 'KSSView' instead." - warnings.warn(message, DeprecationWarning, 2) - KSSView.__init__(self, *args, **kw) - -class AzaxViewAdapter(CommandSet): - def __init__(self, *args, **kw): - message = "'AzaxViewAdapter' is deprecated," \ - "use 'CommandSet' instead." - warnings.warn(message, DeprecationWarning, 2) - CommandSet.__init__(self, *args, **kw) - From gotcha at codespeak.net Sun Apr 25 13:12:55 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Sun, 25 Apr 2010 13:12:55 +0200 (CEST) Subject: [KSS-checkins] r74054 - kukit/kss.core/trunk/kss/core Message-ID: <20100425111255.27F08282C12@codespeak.net> Author: gotcha Date: Sun Apr 25 13:12:53 2010 New Revision: 74054 Modified: kukit/kss.core/trunk/kss/core/interfaces.py Log: pyflakes, pep8, remove BBB Modified: kukit/kss.core/trunk/kss/core/interfaces.py ============================================================================== --- kukit/kss.core/trunk/kss/core/interfaces.py (original) +++ kukit/kss.core/trunk/kss/core/interfaces.py Sun Apr 25 13:12:53 2010 @@ -17,12 +17,13 @@ from zope.interface import Interface, Attribute + class IKSSCommands(Interface): 'KSS commands' def addCommand(self, name, selector=None): 'Add a command' - + def render(self, request): 'All methods must use this to return their command set' @@ -33,10 +34,11 @@ def getCssSelector(self, selector): 'Return selector' - + def getHtmlIdSelector(self, selector): 'Return selector' + class IKSSCommand(Interface): 'An KSS command' @@ -78,6 +80,7 @@ def getParams(self): '' + class IKSSCommandView(Interface): 'View of a command set' @@ -87,7 +90,7 @@ class IKSSParam(Interface): 'An KSS parameter' - + def force_content_unicode(self): 'Content must be str with ascii encoding, or unicode' @@ -97,6 +100,7 @@ def getContent(self): '' + class IKSSView(Interface): commands = Attribute('An IKSSCommands object that keeps track of ' @@ -110,8 +114,6 @@ """Return the commandset called ``name`` bound to the current view.""" -# BBB deprecated -IAzaxView = IKSSView class ICommandSet(Interface): 'Methods of this class implement a command set' From gotcha at codespeak.net Sun Apr 25 21:17:24 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Sun, 25 Apr 2010 21:17:24 +0200 (CEST) Subject: [KSS-checkins] r74055 - kukit/kss.core/trunk/kss/core Message-ID: <20100425191724.CBF07282B90@codespeak.net> Author: gotcha Date: Sun Apr 25 21:17:20 2010 New Revision: 74055 Modified: kukit/kss.core/trunk/kss/core/__init__.py Log: remove BBB Modified: kukit/kss.core/trunk/kss/core/__init__.py ============================================================================== --- kukit/kss.core/trunk/kss/core/__init__.py (original) +++ kukit/kss.core/trunk/kss/core/__init__.py Sun Apr 25 21:17:20 2010 @@ -15,12 +15,12 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. -__all__ = ('force_unicode', 'KSSUnicodeError', +__all__ = ('force_unicode', 'KSSUnicodeError', 'KSSExplicitError', 'kssaction', 'KSSView', 'CommandSet', 'ICommandSet', #BBB - 'AzaxBaseView', 'KssExplicitError', - ) + 'AzaxBaseView', 'KssExplicitError', + ) import mimetypes @@ -28,15 +28,10 @@ mimetypes.types_map['.kukit'] = 'text/xml' from kss.core.kssview import KSSView, CommandSet -from kss.core.actionwrapper import KSSExplicitError, kssaction +from kss.core.actionwrapper import KSSExplicitError, kssaction from kss.core.unicode_quirks import force_unicode, KSSUnicodeError from kss.core.interfaces import ICommandSet -# BBB -from kss.core.kssview import AzaxBaseView -from kss.core.actionwrapper import KssExplicitError -import sys, kssview -sys.modules['kss.core.azaxview'] = kssview try: import Products.Five @@ -46,4 +41,3 @@ # Allow API to build commands from restricted code from AccessControl import allow_module allow_module('kss.core.ttwapi') - From gotcha at codespeak.net Sun Apr 25 22:04:35 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Sun, 25 Apr 2010 22:04:35 +0200 (CEST) Subject: [KSS-checkins] r74056 - kukit/kss.core/trunk/kss/core Message-ID: <20100425200435.2A9CC282B90@codespeak.net> Author: gotcha Date: Sun Apr 25 22:04:33 2010 New Revision: 74056 Modified: kukit/kss.core/trunk/kss/core/siteview.txt Log: avoid deprecation warning 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 Sun Apr 25 22:04:33 2010 @@ -78,7 +78,7 @@ folder or a CMF site: >>> from zope.app.folder import Folder - >>> from zope.app.component.interfaces import ISite + >>> from zope.location.interfaces import ISite >>> from zope.interface import alsoProvides >>> from zope.component.globalregistry import base >>> from zope.component.persistentregistry import PersistentComponents From gotcha at codespeak.net Sun Apr 25 22:24:27 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Sun, 25 Apr 2010 22:24:27 +0200 (CEST) Subject: [KSS-checkins] r74057 - in kukit/kss.core/trunk: . kss/core kss/core/tests Message-ID: <20100425202427.9C049282B90@codespeak.net> Author: gotcha Date: Sun Apr 25 22:24:26 2010 New Revision: 74057 Modified: kukit/kss.core/trunk/CHANGES.txt kukit/kss.core/trunk/kss/core/interfaces.py kukit/kss.core/trunk/kss/core/kssview.py kukit/kss.core/trunk/kss/core/kssview.txt kukit/kss.core/trunk/kss/core/tests/test_kssview.py Log: Add BeforeRenderKSSCommandsEvent notification. Modified: kukit/kss.core/trunk/CHANGES.txt ============================================================================== --- kukit/kss.core/trunk/CHANGES.txt (original) +++ kukit/kss.core/trunk/CHANGES.txt Sun Apr 25 22:24:26 2010 @@ -4,8 +4,8 @@ 1.6.0.a3 (unreleased) --------------------- -- Nothing changed yet. - + - Add BeforeRenderKSSCommandsEvent notification. + [gotcha] 1.6.0.a2 (2010-03-09) --------------------- Modified: kukit/kss.core/trunk/kss/core/interfaces.py ============================================================================== --- kukit/kss.core/trunk/kss/core/interfaces.py (original) +++ kukit/kss.core/trunk/kss/core/interfaces.py Sun Apr 25 22:24:26 2010 @@ -120,3 +120,7 @@ def getCommandSet(self, name): 'Returns the command set for a given name' + + +class IBeforeRenderKSSCommandsEvent(Interface): + 'Event notified just before rendering of KSS commands' 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 Sun Apr 25 22:24:26 2010 @@ -32,8 +32,11 @@ except ImportError: from zope.publisher.browser import BrowserView +from zope.event import notify + from kss.core.commands import KSSCommands from kss.core.interfaces import IKSSView, ICommandSet +from kss.core.interfaces import IBeforeRenderKSSCommandsEvent from kss.core.pluginregistry.commandset import getRegisteredCommandSet from zope import component, interface, event @@ -156,6 +159,7 @@ def render(self): """Views can use this to return their command set.""" + notify(BeforeRenderKSSCommandsEvent(self)) return self.commands.render(self.request) def cancelRedirect(self): @@ -172,6 +176,13 @@ return commandset.provides(self) +class BeforeRenderKSSCommandsEvent(object): + interface.implements(IBeforeRenderKSSCommandsEvent) + + def __init__(self, view): + self.view = view + + class CommandSet: interface.implements(ICommandSet) Modified: kukit/kss.core/trunk/kss/core/kssview.txt ============================================================================== --- kukit/kss.core/trunk/kss/core/kssview.txt (original) +++ kukit/kss.core/trunk/kss/core/kssview.txt Sun Apr 25 22:24:26 2010 @@ -65,3 +65,17 @@ >>> view.setTitle(u"some title")[0]['params']['html'] u'' + +Before rendering commands, an event (IBeforeRenderKSSCommandsEvent) is +triggered. This allow, among others, to defer adding commands until the last +moment : it is similar to the two phase update/render protocol. +Let's check that a registered handler is called. + + >>> from kss.core.interfaces import IBeforeRenderKSSCommandsEvent + >>> @component.adapter(IBeforeRenderKSSCommandsEvent) + ... def logBeforeRenderKSSCommandsEvent(event): + ... print "log: BeforeRenderKSSCommandsEvent notified" + >>> component.provideHandler(logBeforeRenderKSSCommandsEvent) + >>> view.setTitle(u"some title")[0]['params']['html'] + log: BeforeRenderKSSCommandsEvent notified + u'' Modified: kukit/kss.core/trunk/kss/core/tests/test_kssview.py ============================================================================== --- kukit/kss.core/trunk/kss/core/tests/test_kssview.py (original) +++ kukit/kss.core/trunk/kss/core/tests/test_kssview.py Sun Apr 25 22:24:26 2010 @@ -43,6 +43,7 @@ provides=IKSSCoreCommands) registerPlugin(CommandSet, ICommandSet, 'core', IKSSCoreCommands) + def tearDownAjaxView(test=None): cleanup.cleanUp() From gotcha at codespeak.net Tue Apr 27 23:07:17 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:07:17 +0200 (CEST) Subject: [KSS-checkins] r74126 - kukit/kukit.js/tag/1.6.0a2 Message-ID: <20100427210717.7E124282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:07:15 2010 New Revision: 74126 Modified: kukit/kukit.js/tag/1.6.0a2/version.txt Log: version had not been fixed Modified: kukit/kukit.js/tag/1.6.0a2/version.txt ============================================================================== --- kukit/kukit.js/tag/1.6.0a2/version.txt (original) +++ kukit/kukit.js/tag/1.6.0a2/version.txt Tue Apr 27 23:07:15 2010 @@ -1 +1 @@ -1.5dev unreleased +1.6a2 From gotcha at codespeak.net Tue Apr 27 23:17:09 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:17:09 +0200 (CEST) Subject: [KSS-checkins] r74127 - in kukit/kss.concatresource/trunk: docs kss/concatresource Message-ID: <20100427211709.A583D282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:17:08 2010 New Revision: 74127 Added: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt - copied unchanged from r74126, kukit/kss.concatresource/trunk/docs/HISTORY.txt Removed: kukit/kss.concatresource/trunk/docs/HISTORY.txt Log: move HISTORY to ease tagging with zest.releaser Deleted: /kukit/kss.concatresource/trunk/docs/HISTORY.txt ============================================================================== --- /kukit/kss.concatresource/trunk/docs/HISTORY.txt Tue Apr 27 23:17:08 2010 +++ (empty file) @@ -1,56 +0,0 @@ -Changelog for kss.concatresource - - (name of developer listed in brackets) - -kss.concatresource - 1.6.0b1 Unreleased - - -kss.concatresource - 1.6.0a2 Released 2010-02-18 - - - Made GenericResource declare that it implements IResource. - [optilude] - -... - -kss.concatresource - 1.5dev Unreleased - - - ... - - - 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] - -kss.concatresource - 1.4-rc1 Released 2008-03-25 - - - Prepare for release - [ree] - -kss.concatresource - 1.4-alpha1 Released 2008-03-09 - - - Prepare for release - [ree] - -kss.concatresource - 1.2 Released 2007-08-17 - - - Change ;;; rendering in devel mode - for better indentation - [gotcha] - -kss.concatresource - 1.2-rc2 Released 2007-07-27 - - - Prepare for release - [ree] - -kss.concatresource - 1.2-rc1 Released 2007-07-08 - - - implement new packing directives for handling the - ;;; marker in the javascript - [ree] - - - Initial package structure. - [ree] - From gotcha at codespeak.net Tue Apr 27 23:23:08 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:23:08 +0200 (CEST) Subject: [KSS-checkins] r74128 - kukit/kss.concatresource/trunk/kss/concatresource Message-ID: <20100427212308.20BCE282B9E@codespeak.net> Author: gotcha Date: Tue Apr 27 23:23:06 2010 New Revision: 74128 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/version.txt Log: cleanup of history help zest.releaser Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:23:06 2010 @@ -1,21 +1,18 @@ Changelog for kss.concatresource +================================ - (name of developer listed in brackets) -kss.concatresource - 1.6.0b1 Unreleased +1.6.0b1 (Unreleased) +-------------------- + - Nothing changed -kss.concatresource - 1.6.0a2 Released 2010-02-18 +1.6.0a2 (2010-02-18) +-------------------- - Made GenericResource declare that it implements IResource. [optilude] -... - -kss.concatresource - 1.5dev Unreleased - - - ... - - Adjust import of handler from zope.app.component.metaconfigure to be compatible with recent refactoring in the Zope toolkit. [davisagli] @@ -24,28 +21,30 @@ "application/x-javascript" content type only [ree] -kss.concatresource - 1.4-rc1 Released 2008-03-25 +1.4-rc1 (2008-03-25) +-------------------- - - Prepare for release - [ree] + - Nothing changed -kss.concatresource - 1.4-alpha1 Released 2008-03-09 +1.4-alpha1 (2008-03-09) +----------------------- - - Prepare for release - [ree] + - Nothing changed -kss.concatresource - 1.2 Released 2007-08-17 +1.2 (2007-08-17) +---------------- - Change ;;; rendering in devel mode for better indentation [gotcha] -kss.concatresource - 1.2-rc2 Released 2007-07-27 +1.2-rc2 (2007-07-27) +-------------------- - - Prepare for release - [ree] + - Nothing changed -kss.concatresource - 1.2-rc1 Released 2007-07-08 +1.2-rc1 (2007-07-08) +-------------------- - implement new packing directives for handling the ;;; marker in the javascript @@ -53,4 +52,3 @@ - Initial package structure. [ree] - Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:23:06 2010 @@ -1 +1 @@ -1.6.0b1 dev/unreleased \ No newline at end of file +1.6.0a3-dev From gotcha at codespeak.net Tue Apr 27 23:23:45 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:23:45 +0200 (CEST) Subject: [KSS-checkins] r74129 - kukit/kss.concatresource/trunk/kss/concatresource Message-ID: <20100427212345.DEC60282B9E@codespeak.net> Author: gotcha Date: Tue Apr 27 23:23:44 2010 New Revision: 74129 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/version.txt Log: Preparing release 1.6.0.a3 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:23:44 2010 @@ -2,8 +2,8 @@ ================================ -1.6.0b1 (Unreleased) --------------------- +1.6.0.a3 (2010-04-27) +--------------------- - Nothing changed Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:23:44 2010 @@ -1 +1 @@ -1.6.0a3-dev +1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:23:59 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:23:59 +0200 (CEST) Subject: [KSS-checkins] r74130 - kukit/kss.concatresource/tag/1.6.0.a3 Message-ID: <20100427212359.3D999282B9E@codespeak.net> Author: gotcha Date: Tue Apr 27 23:23:57 2010 New Revision: 74130 Added: kukit/kss.concatresource/tag/1.6.0.a3/ - copied from r74129, kukit/kss.concatresource/trunk/kss/concatresource/ Log: Tagging 1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:24:17 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:24:17 +0200 (CEST) Subject: [KSS-checkins] r74131 - kukit/kss.concatresource/trunk/kss/concatresource Message-ID: <20100427212417.6511B282B9E@codespeak.net> Author: gotcha Date: Tue Apr 27 23:24:16 2010 New Revision: 74131 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/version.txt Log: Back to development: 1.6.0.a4 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:24:16 2010 @@ -2,6 +2,12 @@ ================================ +1.6.0.a4 (unreleased) +--------------------- + +- Nothing changed yet. + + 1.6.0.a3 (2010-04-27) --------------------- Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:24:16 2010 @@ -1 +1 @@ -1.6.0.a3 +1.6.0.a4dev From gotcha at codespeak.net Tue Apr 27 23:28:36 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:28:36 +0200 (CEST) Subject: [KSS-checkins] r74132 - kukit/kss.concatresource/tag/1.6.0.a3 Message-ID: <20100427212836.2F2B5282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:28:34 2010 New Revision: 74132 Removed: kukit/kss.concatresource/tag/1.6.0.a3/ Log: bad tag From gotcha at codespeak.net Tue Apr 27 23:30:54 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:30:54 +0200 (CEST) Subject: [KSS-checkins] r74133 - kukit/kss.concatresource/trunk/kss/concatresource Message-ID: <20100427213054.A0B5A282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:30:53 2010 New Revision: 74133 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Log: Preparing release errorinconcatresourcesetupcommand:Distributioncontainsnomodulesorpackagesfornamespacepackage'kss' Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:30:53 2010 @@ -2,8 +2,8 @@ ================================ -1.6.0.a4 (unreleased) ---------------------- +errorinconcatresourcesetupcommand:Distributioncontainsnomodulesorpackagesfornamespacepackage'kss' (2010-04-27) +-------------------------------------------------------------------------------------------------------------- - Nothing changed yet. From gotcha at codespeak.net Tue Apr 27 23:34:56 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:34:56 +0200 (CEST) Subject: [KSS-checkins] r74134 - kukit/kss.concatresource/trunk/kss/concatresource Message-ID: <20100427213456.5B0B8282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:34:54 2010 New Revision: 74134 Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Log: more cleanup Modified: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:34:54 2010 @@ -1,60 +1,53 @@ Changelog for kss.concatresource ================================ - -errorinconcatresourcesetupcommand:Distributioncontainsnomodulesorpackagesfornamespacepackage'kss' (2010-04-27) --------------------------------------------------------------------------------------------------------------- - -- Nothing changed yet. - - -1.6.0.a3 (2010-04-27) +1.6.0.a3 (unreleased) --------------------- - - Nothing changed +- Nothing changed yet. 1.6.0a2 (2010-02-18) -------------------- - - Made GenericResource declare that it implements IResource. - [optilude] +- Made GenericResource declare that it implements IResource. + [optilude] - - 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] +- 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] 1.4-rc1 (2008-03-25) -------------------- - - Nothing changed +- Nothing changed 1.4-alpha1 (2008-03-09) ----------------------- - - Nothing changed +- Nothing changed 1.2 (2007-08-17) ---------------- - - Change ;;; rendering in devel mode - for better indentation - [gotcha] +- Change ;;; rendering in devel mode + for better indentation + [gotcha] 1.2-rc2 (2007-07-27) -------------------- - - Nothing changed +- Nothing changed 1.2-rc1 (2007-07-08) -------------------- - - implement new packing directives for handling the - ;;; marker in the javascript - [ree] +- implement new packing directives for handling the + ;;; marker in the javascript + [ree] - - Initial package structure. - [ree] +- Initial package structure. + [ree] From gotcha at codespeak.net Tue Apr 27 23:35:44 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:35:44 +0200 (CEST) Subject: [KSS-checkins] r74135 - in kukit/kss.concatresource/trunk: docs kss/concatresource Message-ID: <20100427213544.C1539282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:35:43 2010 New Revision: 74135 Added: kukit/kss.concatresource/trunk/docs/HISTORY.txt - copied unchanged from r74134, kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Removed: kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Log: move back Deleted: /kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt ============================================================================== --- /kukit/kss.concatresource/trunk/kss/concatresource/HISTORY.txt Tue Apr 27 23:35:43 2010 +++ (empty file) @@ -1,53 +0,0 @@ -Changelog for kss.concatresource -================================ - -1.6.0.a3 (unreleased) ---------------------- - -- Nothing changed yet. - -1.6.0a2 (2010-02-18) --------------------- - -- Made GenericResource declare that it implements IResource. - [optilude] - -- 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] - -1.4-rc1 (2008-03-25) --------------------- - -- Nothing changed - -1.4-alpha1 (2008-03-09) ------------------------ - -- Nothing changed - -1.2 (2007-08-17) ----------------- - -- Change ;;; rendering in devel mode - for better indentation - [gotcha] - -1.2-rc2 (2007-07-27) --------------------- - -- Nothing changed - -1.2-rc1 (2007-07-08) --------------------- - -- implement new packing directives for handling the - ;;; marker in the javascript - [ree] - -- Initial package structure. - [ree] From gotcha at codespeak.net Tue Apr 27 23:36:58 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:36:58 +0200 (CEST) Subject: [KSS-checkins] r74136 - in kukit/kss.concatresource/trunk: . kss/concatresource Message-ID: <20100427213658.C1D68282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:36:57 2010 New Revision: 74136 Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt kukit/kss.concatresource/trunk/setup.py Log: prepare again for tagging Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:36:57 2010 @@ -1 +1 @@ -1.6.0.a4dev +1.6.0.a3dev Modified: kukit/kss.concatresource/trunk/setup.py ============================================================================== --- kukit/kss.concatresource/trunk/setup.py (original) +++ kukit/kss.concatresource/trunk/setup.py Tue Apr 27 23:36:57 2010 @@ -1,13 +1,12 @@ from setuptools import setup, find_packages -version = '1.6.0b1' +version = '1.6.0.a3dev' setup(name='concatresource', version=version, description="concatresource creates concatenated and packed resources", long_description="""\ """, - # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Framework :: Zope2", "Framework :: Zope3", From gotcha at codespeak.net Tue Apr 27 23:40:46 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:40:46 +0200 (CEST) Subject: [KSS-checkins] r74137 - in kukit/kss.concatresource/trunk: . kss Message-ID: <20100427214046.D07F8282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:40:45 2010 New Revision: 74137 Added: kukit/kss.concatresource/trunk/kss/__init__.py Modified: kukit/kss.concatresource/trunk/setup.py Log: fix egg to allow release with zest.releaser Added: kukit/kss.concatresource/trunk/kss/__init__.py ============================================================================== Modified: kukit/kss.concatresource/trunk/setup.py ============================================================================== --- kukit/kss.concatresource/trunk/setup.py (original) +++ kukit/kss.concatresource/trunk/setup.py Tue Apr 27 23:40:45 2010 @@ -2,7 +2,7 @@ version = '1.6.0.a3dev' -setup(name='concatresource', +setup(name='kss.concatresource', version=version, description="concatresource creates concatenated and packed resources", long_description="""\ From gotcha at codespeak.net Tue Apr 27 23:44:07 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:44:07 +0200 (CEST) Subject: [KSS-checkins] r74138 - in kukit/kss.concatresource/trunk: . docs kss/concatresource Message-ID: <20100427214407.431E6282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:44:05 2010 New Revision: 74138 Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/version.txt kukit/kss.concatresource/trunk/setup.py Log: Preparing release 1.6.0.a3 Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/docs/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/docs/HISTORY.txt Tue Apr 27 23:44:05 2010 @@ -1,10 +1,10 @@ Changelog for kss.concatresource ================================ -1.6.0.a3 (unreleased) +1.6.0.a3 (2010-04-27) --------------------- -- Nothing changed yet. +- Nothing changed. 1.6.0a2 (2010-02-18) -------------------- @@ -17,24 +17,23 @@ [davisagli] - Change concatresource to accept resources with - "application/x-javascript" content type only + "application/x-javascript" content type only. [ree] 1.4-rc1 (2008-03-25) -------------------- -- Nothing changed +- Nothing changed. 1.4-alpha1 (2008-03-09) ----------------------- -- Nothing changed +- Nothing changed. 1.2 (2007-08-17) ---------------- -- Change ;;; rendering in devel mode - for better indentation +- Change ;;; rendering in devel mode for better indentation. [gotcha] 1.2-rc2 (2007-07-27) @@ -46,7 +45,7 @@ -------------------- - implement new packing directives for handling the - ;;; marker in the javascript + ;;; marker in the javascript. [ree] - Initial package structure. Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:44:05 2010 @@ -1 +1 @@ -1.6.0.a3dev +1.6.0.a3 Modified: kukit/kss.concatresource/trunk/setup.py ============================================================================== --- kukit/kss.concatresource/trunk/setup.py (original) +++ kukit/kss.concatresource/trunk/setup.py Tue Apr 27 23:44:05 2010 @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '1.6.0.a3dev' +version = '1.6.0.a3' setup(name='kss.concatresource', version=version, From gotcha at codespeak.net Tue Apr 27 23:44:35 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:44:35 +0200 (CEST) Subject: [KSS-checkins] r74139 - kukit/kss.concatresource/tag/1.6.0.a3 Message-ID: <20100427214435.A635A282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:44:34 2010 New Revision: 74139 Added: kukit/kss.concatresource/tag/1.6.0.a3/ - copied from r74138, kukit/kss.concatresource/trunk/ Log: Tagging 1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:45:12 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:45:12 +0200 (CEST) Subject: [KSS-checkins] r74140 - in kukit/kss.concatresource/trunk: docs kss/concatresource Message-ID: <20100427214512.33A36282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:45:10 2010 New Revision: 74140 Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt kukit/kss.concatresource/trunk/kss/concatresource/version.txt Log: Back to development: 1.6.0.a4 Modified: kukit/kss.concatresource/trunk/docs/HISTORY.txt ============================================================================== --- kukit/kss.concatresource/trunk/docs/HISTORY.txt (original) +++ kukit/kss.concatresource/trunk/docs/HISTORY.txt Tue Apr 27 23:45:10 2010 @@ -1,6 +1,12 @@ Changelog for kss.concatresource ================================ +1.6.0.a4 (unreleased) +--------------------- + +- Nothing changed yet. + + 1.6.0.a3 (2010-04-27) --------------------- Modified: kukit/kss.concatresource/trunk/kss/concatresource/version.txt ============================================================================== --- kukit/kss.concatresource/trunk/kss/concatresource/version.txt (original) +++ kukit/kss.concatresource/trunk/kss/concatresource/version.txt Tue Apr 27 23:45:10 2010 @@ -1 +1 @@ -1.6.0.a3 +1.6.0.a4dev From gotcha at codespeak.net Tue Apr 27 23:47:35 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:47:35 +0200 (CEST) Subject: [KSS-checkins] r74141 - kukit/kss.concatresource/trunk Message-ID: <20100427214735.4F935282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:47:33 2010 New Revision: 74141 Modified: kukit/kss.concatresource/trunk/ (props changed) kukit/kss.concatresource/trunk/setup.py Log: Back to development: 1.6.0.a4 Modified: kukit/kss.concatresource/trunk/setup.py ============================================================================== --- kukit/kss.concatresource/trunk/setup.py (original) +++ kukit/kss.concatresource/trunk/setup.py Tue Apr 27 23:47:33 2010 @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '1.6.0.a3' +version = '1.6.0.a4dev' setup(name='kss.concatresource', version=version, From gotcha at codespeak.net Tue Apr 27 23:51:53 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:51:53 +0200 (CEST) Subject: [KSS-checkins] r74142 - kukit/kukit.js/trunk Message-ID: <20100427215153.EBD37282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:51:52 2010 New Revision: 74142 Modified: kukit/kukit.js/trunk/version.txt Log: prepare for zest.releaser Modified: kukit/kukit.js/trunk/version.txt ============================================================================== --- kukit/kukit.js/trunk/version.txt (original) +++ kukit/kukit.js/trunk/version.txt Tue Apr 27 23:51:52 2010 @@ -1 +1 @@ -1.5dev unreleased +1.6.0.a2dev From gotcha at codespeak.net Tue Apr 27 23:54:14 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:54:14 +0200 (CEST) Subject: [KSS-checkins] r74143 - kukit/kukit.js/trunk Message-ID: <20100427215414.09367282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:54:13 2010 New Revision: 74143 Modified: kukit/kukit.js/trunk/CHANGES.txt Log: prepare for zest.releaser Modified: kukit/kukit.js/trunk/CHANGES.txt ============================================================================== --- kukit/kukit.js/trunk/CHANGES.txt (original) +++ kukit/kukit.js/trunk/CHANGES.txt Tue Apr 27 23:54:13 2010 @@ -1,10 +1,15 @@ Changelog for kukit.js ====================== +1.6.0a3 (unreleased) +-------------------- + + - nothing changed. + 1.6.0a2 (09-03-2010) -------------------- - - add SetActionServerTimeout client action + - add SetActionServerTimeout client action. [gotcha, jfroche] 1.6.0a1 (19-11-2009) From gotcha at codespeak.net Tue Apr 27 23:54:33 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:54:33 +0200 (CEST) Subject: [KSS-checkins] r74144 - kukit/kukit.js/trunk Message-ID: <20100427215433.D534A282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:54:32 2010 New Revision: 74144 Modified: kukit/kukit.js/trunk/version.txt Log: prepare for zest.releaser Modified: kukit/kukit.js/trunk/version.txt ============================================================================== --- kukit/kukit.js/trunk/version.txt (original) +++ kukit/kukit.js/trunk/version.txt Tue Apr 27 23:54:32 2010 @@ -1 +1 @@ -1.6.0.a2dev +1.6.0.a3dev From gotcha at codespeak.net Tue Apr 27 23:55:50 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:55:50 +0200 (CEST) Subject: [KSS-checkins] r74145 - kukit/kukit.js/trunk Message-ID: <20100427215550.0F6DF282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:55:48 2010 New Revision: 74145 Modified: kukit/kukit.js/trunk/CHANGES.txt kukit/kukit.js/trunk/version.txt Log: Preparing release 1.6.0.a3 Modified: kukit/kukit.js/trunk/CHANGES.txt ============================================================================== --- kukit/kukit.js/trunk/CHANGES.txt (original) +++ kukit/kukit.js/trunk/CHANGES.txt Tue Apr 27 23:55:48 2010 @@ -1,8 +1,8 @@ Changelog for kukit.js ====================== -1.6.0a3 (unreleased) --------------------- +1.6.0.a3 (2010-04-27) +--------------------- - nothing changed. Modified: kukit/kukit.js/trunk/version.txt ============================================================================== --- kukit/kukit.js/trunk/version.txt (original) +++ kukit/kukit.js/trunk/version.txt Tue Apr 27 23:55:48 2010 @@ -1 +1 @@ -1.6.0.a3dev +1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:55:59 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:55:59 +0200 (CEST) Subject: [KSS-checkins] r74146 - kukit/kukit.js/tag/1.6.0.a3 Message-ID: <20100427215559.E6F1C282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:55:58 2010 New Revision: 74146 Added: kukit/kukit.js/tag/1.6.0.a3/ - copied from r74145, kukit/kukit.js/trunk/ Log: Tagging 1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:56:12 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:56:12 +0200 (CEST) Subject: [KSS-checkins] r74147 - kukit/kukit.js/trunk Message-ID: <20100427215612.AE23C282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:56:11 2010 New Revision: 74147 Modified: kukit/kukit.js/trunk/CHANGES.txt kukit/kukit.js/trunk/version.txt Log: Back to development: 1.6.0.a4 Modified: kukit/kukit.js/trunk/CHANGES.txt ============================================================================== --- kukit/kukit.js/trunk/CHANGES.txt (original) +++ kukit/kukit.js/trunk/CHANGES.txt Tue Apr 27 23:56:11 2010 @@ -1,6 +1,12 @@ Changelog for kukit.js ====================== +1.6.0.a4 (unreleased) +--------------------- + +- Nothing changed yet. + + 1.6.0.a3 (2010-04-27) --------------------- Modified: kukit/kukit.js/trunk/version.txt ============================================================================== --- kukit/kukit.js/trunk/version.txt (original) +++ kukit/kukit.js/trunk/version.txt Tue Apr 27 23:56:11 2010 @@ -1 +1 @@ -1.6.0.a3 +1.6.0.a4dev From gotcha at codespeak.net Tue Apr 27 23:57:42 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:57:42 +0200 (CEST) Subject: [KSS-checkins] r74148 - in kukit/kss.core/trunk: . kss/core kss/core/pluginregistry Message-ID: <20100427215742.C0F9E282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:57:41 2010 New Revision: 74148 Modified: kukit/kss.core/trunk/CHANGES.txt kukit/kss.core/trunk/kss/core/ (props changed) kukit/kss.core/trunk/kss/core/pluginregistry/ (props changed) kukit/kss.core/trunk/setup.py Log: Preparing release 1.6.0.a3 Modified: kukit/kss.core/trunk/CHANGES.txt ============================================================================== --- kukit/kss.core/trunk/CHANGES.txt (original) +++ kukit/kss.core/trunk/CHANGES.txt Tue Apr 27 23:57:41 2010 @@ -1,7 +1,7 @@ Changelog for kss.core ====================== -1.6.0.a3 (unreleased) +1.6.0.a3 (2010-04-27) --------------------- - Add BeforeRenderKSSCommandsEvent notification. Modified: kukit/kss.core/trunk/setup.py ============================================================================== --- kukit/kss.core/trunk/setup.py (original) +++ kukit/kss.core/trunk/setup.py Tue Apr 27 23:57:41 2010 @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '1.6.0.a3dev' +version = '1.6.0.a3' def read(*rnames): From gotcha at codespeak.net Tue Apr 27 23:57:56 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:57:56 +0200 (CEST) Subject: [KSS-checkins] r74149 - kukit/kss.core/tag/1.6.0.a3 Message-ID: <20100427215756.6D4D3282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:57:55 2010 New Revision: 74149 Added: kukit/kss.core/tag/1.6.0.a3/ - copied from r74148, kukit/kss.core/trunk/ Log: Tagging 1.6.0.a3 From gotcha at codespeak.net Tue Apr 27 23:59:05 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Tue, 27 Apr 2010 23:59:05 +0200 (CEST) Subject: [KSS-checkins] r74150 - kukit/kss.core/trunk Message-ID: <20100427215905.3BC83282B9D@codespeak.net> Author: gotcha Date: Tue Apr 27 23:59:03 2010 New Revision: 74150 Modified: kukit/kss.core/trunk/CHANGES.txt kukit/kss.core/trunk/setup.py Log: Back to development: 1.6.0.a4 Modified: kukit/kss.core/trunk/CHANGES.txt ============================================================================== --- kukit/kss.core/trunk/CHANGES.txt (original) +++ kukit/kss.core/trunk/CHANGES.txt Tue Apr 27 23:59:03 2010 @@ -1,6 +1,12 @@ Changelog for kss.core ====================== +1.6.0.a4 (unreleased) +--------------------- + +- Nothing changed yet. + + 1.6.0.a3 (2010-04-27) --------------------- Modified: kukit/kss.core/trunk/setup.py ============================================================================== --- kukit/kss.core/trunk/setup.py (original) +++ kukit/kss.core/trunk/setup.py Tue Apr 27 23:59:03 2010 @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '1.6.0.a3' +version = '1.6.0.a4dev' def read(*rnames): From gotcha at codespeak.net Wed Apr 28 00:00:17 2010 From: gotcha at codespeak.net (gotcha at codespeak.net) Date: Wed, 28 Apr 2010 00:00:17 +0200 (CEST) Subject: [KSS-checkins] r74151 - in kukit/kss.core/trunk/kss/core: . pluginregistry Message-ID: <20100427220017.1894E282B9D@codespeak.net> Author: gotcha Date: Wed Apr 28 00:00:15 2010 New Revision: 74151 Modified: kukit/kss.core/trunk/kss/core/ (props changed) kukit/kss.core/trunk/kss/core/pluginregistry/ (props changed) Log: Back to development: 1.6.0.a4