[Checkins] SVN: five.localsitemanager/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Sat Mar 2 02:09:54 UTC 2013


Log message for revision 129986:
  Moved to GitHub.

Changed:
  D   five.localsitemanager/trunk/CHANGES.txt
  D   five.localsitemanager/trunk/COPYRIGHT.txt
  D   five.localsitemanager/trunk/INSTALL.txt
  D   five.localsitemanager/trunk/LICENSE.txt
  D   five.localsitemanager/trunk/MANIFEST.in
  A   five.localsitemanager/trunk/MOVED_TO_GITHUB
  D   five.localsitemanager/trunk/README.txt
  D   five.localsitemanager/trunk/bootstrap.py
  D   five.localsitemanager/trunk/buildout.cfg
  D   five.localsitemanager/trunk/setup.py
  D   five.localsitemanager/trunk/src/

-=-
Deleted: five.localsitemanager/trunk/CHANGES.txt
===================================================================
--- five.localsitemanager/trunk/CHANGES.txt	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/CHANGES.txt	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,174 +0,0 @@
-Changelog
-=========
-
-2.0.6 - unreleased
-------------------
-
-* Removed zope.site dependency. Using Zope 2.12 it is an indirect dependency
-  and using Zope 2.13 or later it is no longer required.
-  [yuppie]
-
-2.0.5 - 2011-02-06
-------------------
-
-* Made the tests compatible with Zope 2.13.2.
-
-2.0.4 - 2010-06-13
-------------------
-
-* Deal with deprecation warnings for Zope 2.13.
-
-* Provide a more meaningful error message if the current site is not set
-  correctly or the Acquisition chain of the site is messed up.
-  [hannosch]
-
-2.0.3 - 2010-01-02
-------------------
-
-* Made 'update_sitemanager_bases_handler' fail silently instead of raising an
-  error. This allows to import broken sites, in particular old CMF sites.
-  [yuppie]
-
-2.0.2 - 2009-11-15
-------------------
-
-* Fix regression in five.localsitemanager 2.0.1 where unregistering a utility
-  based on its provided interface broke if no utility was registered for that
-  interface.
-  [davisagli]
-
-2.0.1 - 2009-10-19
-------------------
-
-* Adapt unregistering of components work to work with latest zope.component.
-  [hannosch]
-
-* Fix unregistering of components which have a physical path.
-  [thefunny42]
-
-2.0 - 2009-09-27
-----------------
-
-* Cleaned up package documentation and fixed spelling errors in the tests.
-  [hannosch]
-
-* Made sure that the __of__ method is only called on objects providing the
-  IAcquirer interface.
-  [hannosch]
-
-* Updated forked registerUtility method to match the zope.component 3.7.1
-  code base. This fixes the two bugs with the implicit unregistration of
-  utilities for existing interface / name pairs.
-  [hannosch]
-
-* Simplified some code, aq_parent now respects __parent__ pointers.
-  [hannosch]
-
-2.0a1 - 2009-05-27
-------------------
-
-* Updated to use IObjectMovedEvent from zope.lifecycleevent instead of
-  zope.container. We require zope.lifecycleevent >= 3.5.2 now.
-  [hannosch]
-
-* Removed package dependencies that did collide with the KGS of Zope 2.12.
-  [yuppie]
-
-* Adjusted code to use the new zope.site and zope.container packages and use
-  the ISite interface from zope.location.
-  [hannosch]
-
-* Specify all package dependencies including Acquisition and Zope2. You need
-  to use either the eggified Zope 2.12 or create fake-eggs for these.
-  [hannosch]
-
-* 'make_site' no longer stores the path of the site manager in its name. This
-  way the name can't become out-dated. PersistentComponents' __repr__ method
-  now returns the current path instead of the name of the site manager.
-  [yuppie]
-
-* Requiring zope.component >= 3.5.0.
-  [icemac]
-
-1.0 - 2008-11-18
-----------------
-
-* Utilities registered with an absolute path were returned with the
-  RequestContainer in the aq_chain. As the result of the first utility
-  look-up is stored in the adapter look-up cache, subsequent utility
-  look-ups return the utlitiy with the RequestContainer of the first
-  look-up.
-
-  Solution: For utilities registered with an absolute path the
-  RequestContainer is now also removed at look-up.
-  [icemac]
-
-
-1.0c1 - 2008-08-27
-------------------
-
-* Added buildout for project, so testing can be done using ``bin/test``.
-  [icemac]
-
-* Added ability to register utilities with an absolute path. These
-  utilities are returned wrapped into their original context. This
-  change is backward compatible to existing registries.
-
-  But registering utilities having an acquisition context will behave
-  different because these utilities will be returned in their original
-  context. To restore the previous behavior, register utilities
-  unwrapped (aq_base).
-
-  For storing path information the component must implement
-  getPhysicalPath and have an absolute path.
-
-  When a component registered as utility is moved and registered again
-  the path stored in registry gets updated.
-  [icemac]
-
-
-0.4 - 2008-07-23
-----------------
-
-* Rewrite PersistentComponents.registeredUtilities to not use
-  internal methods. This makes it compatible with both zope.component <3.5.0dev
-  and >3.5.0dev.
-  [wichert]
-
-
-0.3 - 2007-12-24
-----------------
-
-* Fixed potential aq problem when assigning various values to the utilities
-  registry of the component registry.
-  [hannosch]
-
-
-0.2 - 2007-06-30
-----------------
-
-* Refactored and fixed aq wrapping: Nested site managers now return utilities
-  wrapped in the right context. RequestContainers are removed and wrapped
-  utilities are cached. This requires a special LookupClass called
-  'FiveVerifyingAdapterLookup' in all 'utilities' registries used below a
-  five.localsitemanager site.
-  [yuppie, hannosch]
-
-
-0.1.2 - 2007-06-23
-------------------
-
-* Corrected the zip-safe flag to be False.
-
-
-0.1.1 - 2007-03-05
-------------------
-
-* Fixed aq wrapping when looking up a utility that is actually the component
-  registry's parent (the ISite).
-
-
-0.1 (2007-02-27)
-----------------
-
-* Initial version

Deleted: five.localsitemanager/trunk/COPYRIGHT.txt
===================================================================
--- five.localsitemanager/trunk/COPYRIGHT.txt	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/COPYRIGHT.txt	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: five.localsitemanager/trunk/INSTALL.txt
===================================================================
--- five.localsitemanager/trunk/INSTALL.txt	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/INSTALL.txt	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,33 +0,0 @@
-Installation
-============
-
-Prerequisites
--------------
-
-* Zope 2.12.x or newer
-
-Installation
-------------
-
-Add ``five.localsitemanager`` to either your buildout's global eggs list or to
-the appropriate instance specific parts.
-
-Configuration
--------------
-
-Place a ``five.localsitemanager-configure.zcml`` file into your instance's
-``etc/package-includes`` directory with the following contents::
-
-  <include package="five.localsitemanager" />
-
-Also setup a ``five.localsitemanager-overrides.zcml`` file into your instance's
-``etc/package-includes`` directory with the following contents::
-
-  <include package="five.localsitemanager" file="overrides.zcml" />
-
-Running the Tests
------------------
-
-Use the following command to run this package's tests:
-
-  $ bin/test -s five.localsitemanager

Deleted: five.localsitemanager/trunk/LICENSE.txt
===================================================================
--- five.localsitemanager/trunk/LICENSE.txt	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/LICENSE.txt	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,44 +0,0 @@
-Zope Public License (ZPL) Version 2.1
-
-A copyright notice accompanies this license document that identifies the
-copyright holders.
-
-This license has been certified as open source. It has also been designated as
-GPL compatible by the Free Software Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions in source code must retain the accompanying copyright
-notice, this list of conditions, and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying copyright
-notice, this list of conditions, and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to endorse or promote
-products derived from this software without prior written permission from the
-copyright holders.
-
-4. The right to distribute this software or to use it for any purpose does not
-give you the right to use Servicemarks (sm) or Trademarks (tm) of the
-copyright
-holders. Use of them is covered by separate agreement with the copyright
-holders.
-
-5. If any files are modified, you must cause the modified files to carry
-prominent notices stating that you changed the files and the date of any
-change.
-
-Disclaimer
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
-OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Deleted: five.localsitemanager/trunk/MANIFEST.in
===================================================================
--- five.localsitemanager/trunk/MANIFEST.in	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/MANIFEST.in	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,3 +0,0 @@
-recursive-include src *
-include *
-global-exclude *.pyc

Added: five.localsitemanager/trunk/MOVED_TO_GITHUB
===================================================================
--- five.localsitemanager/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ five.localsitemanager/trunk/MOVED_TO_GITHUB	2013-03-02 02:09:53 UTC (rev 129986)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/five.localsitemanager
\ No newline at end of file

Deleted: five.localsitemanager/trunk/README.txt
===================================================================
--- five.localsitemanager/trunk/README.txt	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/README.txt	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,17 +0,0 @@
-Introduction
-============
-
-Overview
---------
-
-five.localsitemanager attempts to provide a local site manager implementation
-that is as close to the zope.interface / zope.component implementation as
-possible. Some reservations that do not conflict with the original API have
-been made to ease the path with CMF.
-
-Developer Resources
--------------------
-
-- Subversion browser:
-
-  http://svn.zope.org/five.localsitemanager

Deleted: five.localsitemanager/trunk/bootstrap.py
===================================================================
--- five.localsitemanager/trunk/bootstrap.py	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/bootstrap.py	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,60 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-try:
-    import pkg_resources
-except ImportError:
-    ez = {}
-    exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                         ).read() in ez
-    ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    import pkg_resources
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    def quote (c):
-        return c
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-ws  = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, quote (sys.executable),
-    '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout',
-    dict(os.environ,
-         PYTHONPATH=
-         ws.find(pkg_resources.Requirement.parse('setuptools')).location
-         ),
-    ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout')
-import zc.buildout.buildout
-zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
-shutil.rmtree(tmpeggs)

Deleted: five.localsitemanager/trunk/buildout.cfg
===================================================================
--- five.localsitemanager/trunk/buildout.cfg	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/buildout.cfg	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,10 +0,0 @@
-[buildout]
-extends = http://download.zope.org/Zope2/index/2.13.3/versions.cfg
-parts = test
-develop = .
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = 
-    five.localsitemanager
-defaults = ['-c', '--module', 'five.localsitemanager']

Deleted: five.localsitemanager/trunk/setup.py
===================================================================
--- five.localsitemanager/trunk/setup.py	2013-03-02 02:09:45 UTC (rev 129985)
+++ five.localsitemanager/trunk/setup.py	2013-03-02 02:09:53 UTC (rev 129986)
@@ -1,41 +0,0 @@
-from setuptools import setup
-
-version = '2.0.6dev'
-
-setup(name='five.localsitemanager',
-      version=version,
-      url='http://pypi.python.org/pypi/five.localsitemanager',
-      license='ZPL 2.1',
-      description='Local site manager implementation for Zope 2',
-      author='Zope Foundation and Contributors',
-      author_email='zope-cmf at zope.org',
-      long_description=open("README.txt").read() + "\n" + 
-                       open("INSTALL.txt").read() + "\n" +
-                       open("CHANGES.txt").read(),
-      classifiers=[
-          'Environment :: Web Environment',
-          'Framework :: Zope2',
-          'License :: OSI Approved :: Zope Public License',
-          'Operating System :: OS Independent',
-          'Programming Language :: Python',
-          'Topic :: Internet :: WWW/HTTP :: Site Management',
-      ],
-      keywords='zope zope2 five sitemanager',
-      packages=['five', 'five.localsitemanager'],
-      package_dir = {'': 'src'},
-      namespace_packages=['five',],
-      include_package_data = True,
-      install_requires=[
-          'Acquisition',
-          'ZODB3',
-          'setuptools',
-          'zope.component',
-          'zope.event',
-          'zope.interface',
-          'zope.location',
-          'zope.lifecycleevent',
-          'zope.testing',
-          'Zope2 >= 2.12.0',
-          ],
-      zip_safe = False,
-      )



More information about the checkins mailing list