[Checkins] SVN: zope.app.security/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Tue Mar 12 13:35:30 UTC 2013


Log message for revision 130103:
  Moved to GitHub.

Changed:
  D   zope.app.security/trunk/CHANGES.txt
  D   zope.app.security/trunk/COPYRIGHT.txt
  D   zope.app.security/trunk/LICENSE.txt
  A   zope.app.security/trunk/MOVED_TO_GITHUB
  D   zope.app.security/trunk/README.txt
  D   zope.app.security/trunk/bootstrap.py
  D   zope.app.security/trunk/buildout.cfg
  D   zope.app.security/trunk/setup.py
  D   zope.app.security/trunk/src/

-=-
Deleted: zope.app.security/trunk/CHANGES.txt
===================================================================
--- zope.app.security/trunk/CHANGES.txt	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/CHANGES.txt	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1,164 +0,0 @@
-=======
-CHANGES
-=======
-
-3.7.6 (unreleased)
-------------------
-
-- Removed use of 'zope.testing.doctestunit' in favor of stdlib's doctest.
-
-
-3.7.5 (2010-01-08)
-------------------
-
-- Move 'zope.ManageApplication' permission to zope.app.applicationcontrol
-
-- Fix tests using a newer zope.publisher that requires zope.login.
-
-3.7.3 (2009-11-29)
-------------------
-
-- provide a clean zope setup and move zope.app.testing to a test dependency
-
-- removed unused dependencies like ZODB3 etc. from install_requires
-
-3.7.2 (2009-09-10)
-------------------
-
-- Added data attribute to '_protections.zcml' for PersistentList
-  and PersistentDict to accomodate UserList and UserDict behavior
-  when they are proxied.
-
-3.7.1 (2009-08-15)
-------------------
-
-- Changed globalmodules.zcml to avoid making declarations for
-  deprecated standard modules, to avoid deprecation warnings.
-
-  Note that globalmodules.zcml should be avoided.  It's better to make
-  declarations for only what you actually need to use.
-
-3.7.0 (2009-03-14)
-------------------
-
-- All interfaces, as well as some authentication-related helper classes and
-  functions (checkPrincipal, PrincipalSource, PrincipalTerms, etc.) were moved
-  into the new ``zope.authentication`` package. Backward-compatibility imports
-  are provided.
-
-- The "global principal registry" along with its zcml directives was moved into
-  new "zope.principalregistry" package. Backward-compatibility imports are
-  provided.
-
-- The IPrincipal -> zope.publisher.interfaces.logginginfo.ILoggingInfo
-  adapter was moved to ``zope.publisher``. Backward-compatibility import
-  is provided.
-
-- The PermissionsVocabulary and PermissionIdsVocabulary has been moved
-  to the ``zope.security`` package. Backward-compatibility imports are
-  provided.
-
-- The registration of the "zope.Public" permission as well as some other
-  common permissions, like "zope.View" have been moved to ``zope.security``.
-  Its configure.zcml is now included by this package.
-
-- The "protect" function is now a no-op and is not needed anymore, because
-  zope.security now knows about i18n messages and __name__ and __parent__
-  attributes and won't protect them by default.
-
-- The addCheckerPublic was moved from zope.app.security.tests to
-  zope.security.testing. Backward-compatibility import is provided.
-
-- The ``LocalPermission`` class is now moved to new ``zope.app.localpermission``
-  package. This package now only has backward-compatibility imports and
-  zcml includes.
-
-- Cleanup dependencies after refactorings. Also, don't depend on
-  zope.app.testing for tests anymore.
-  
-- Update package's description to point about refactorings done.
-
-3.6.2 (2009-03-10)
-------------------
-
-- The `Allow`, `Deny` and `Unset` permission settings was preferred to
-  be imported from ``zope.securitypolicy.interfaces`` for a long time
-  and now they are completely moved there from ``zope.app.security.settings``
-  as well as the ``PermissionSetting`` class. The only thing left for
-  backward compatibility is the import of Allow/Unset/Deny constants if
-  ``zope.securitypolicy`` is installed to allow unpickling of security
-  settings.
-
-3.6.1 (2009-03-09)
-------------------
-
-- Depend on new ``zope.password`` package instead of ``zope.app.authentication``
-  to get password managers for the authentication utility, thus remove
-  dependency on ``zope.app.authentication``.
-
-- Use template for AuthUtilitySearchView instead of ugly HTML
-  constructing in the python code.
-
-- Bug: The `sha` and `md5` modules has been deprecated in Python 2.6.
-  Whenever the ZCML of this package was included when using Python 2.6,
-  a deprecation warning had been raised stating that `md5` and `sha` have
-  been deprecated. Provided a simple condition to check whether Python 2.6
-  or later is installed by checking for the presense of `json` module
-  thas was added only in Python 2.6 and thus optionally load the security
-  declaration for `md5` and `sha`.
-
-- Remove deprecated code, thus removing explicit dependency on
-  zope.deprecation and zope.deferredimport.
-
-- Cleanup code a bit, replace old __used_for__ statements by ``adapts``
-  calls.
-
-3.6.0 (2009-01-31)
-------------------
-
-- Changed mailing list address to zope-dev at zope.org, because
-  zope3-dev is retired now. Changed "cheeseshop" to "pypi" in
-  the package homepage.
-
-- Moved the `protectclass` module to `zope.security` leaving only a
-  compatibility module here that imports from the new location.
-
-- Moved the <module> directive implementation to `zope.security`.
-
-- Use `zope.container` instead of `zope.app.container`;.
-
-3.5.3 (2008-12-11)
-------------------
-
-- use zope.browser.interfaces.ITerms instead of
-  `zope.app.form.browser.interfaces`.
-
-3.5.2 (2008-07-31)
-------------------
-
-- Bug: It turned out that checking for regex was not much better of an
-  idea, since it causes deprecation warnings in Python 2.4. Thus let's
-  look for a library that was added in Python 2.5.
-
-3.5.1 (2008-06-24)
-------------------
-
-- Bug: The `gopherlib` module has been deprecated in Python 2.5. Whenever the
-  ZCML of this package was included when using Python 2.5, a deprecation
-  warning had been raised stating that `gopherlib` has been
-  deprecated. Provided a simple condition to check whether Python 2.5 or later
-  is installed by checking for the deleted `regex` module and thus optionally
-  load the security declaration for `gopherlib`.
-
-3.5.0 (2008-02-05)
-------------------
-
-- Feature:
-  `zope.app.security.principalregistry.PrincipalRegistry.getPrincipal` returns
-  `zope.security.management.system_user` when its id is used for the search
-  key.
-
-3.4.0 (2007-10-27)
-------------------
-
-- Initial release independent of the main Zope tree.

Deleted: zope.app.security/trunk/COPYRIGHT.txt
===================================================================
--- zope.app.security/trunk/COPYRIGHT.txt	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/COPYRIGHT.txt	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zope.app.security/trunk/LICENSE.txt
===================================================================
--- zope.app.security/trunk/LICENSE.txt	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/LICENSE.txt	2013-03-12 13:35:29 UTC (rev 130103)
@@ -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.

Added: zope.app.security/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.app.security/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.app.security/trunk/MOVED_TO_GITHUB	2013-03-12 13:35:29 UTC (rev 130103)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.app.security
\ No newline at end of file

Deleted: zope.app.security/trunk/README.txt
===================================================================
--- zope.app.security/trunk/README.txt	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/README.txt	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1,18 +0,0 @@
-This package provides ZMI browser views for Zope security components.
-
-It used to provide a large part of security functionality for Zope 3, but it was
-factored out from this package to several little packages to reduce dependencies
-and improve reusability.
-
-The functionality was splitted into these new packages:
-
- * zope.authentication - the IAuthentication interface and related utilities.
- * zope.principalregistry - the global principal registry and its zcml directives.
- * zope.app.localpermission - the LocalPermission class that implements
-   persistent permissions.
-
-The rest of functionality that were provided by this package is merged into
-``zope.security`` and ``zope.publisher``.
-
-Backward-compatibility imports are provided to ensure that older applications
-work. See CHANGES.txt for more info.

Deleted: zope.app.security/trunk/bootstrap.py
===================================================================
--- zope.app.security/trunk/bootstrap.py	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/bootstrap.py	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1,52 +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.
-
-$Id$
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-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
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-if sys.platform == 'win32':
-    cmd = '"%s"' % cmd # work around spawn lamosity on windows
-
-ws = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, sys.executable,
-    '-c', cmd, '-mqNxd', 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: zope.app.security/trunk/buildout.cfg
===================================================================
--- zope.app.security/trunk/buildout.cfg	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/buildout.cfg	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1,22 +0,0 @@
-[buildout]
-parts = test checker coverage-test coverage-report
-develop = .
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.security [test]
-
-[checker]
-recipe = lovely.recipe:importchecker
-path = src/zope/app/security
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.security [test]
-defaults = ['--coverage', '../../coverage']
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')

Deleted: zope.app.security/trunk/setup.py
===================================================================
--- zope.app.security/trunk/setup.py	2013-03-12 13:35:24 UTC (rev 130102)
+++ zope.app.security/trunk/setup.py	2013-03-12 13:35:29 UTC (rev 130103)
@@ -1,83 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 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.
-#
-##############################################################################
-# This package is developed by the Zope Toolkit project, documented here:
-# http://docs.zope.org/zopetoolkit
-# When developing and releasing this package, please follow the documented
-# Zope Toolkit policies as described by this documentation.
-##############################################################################
-
-version = '3.7.6dev'
-
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(name='zope.app.security',
-      version = version,
-      author='Zope Foundation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='ZMI Views For Zope3 Security Components',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed Documentation\n' +
-          '======================\n'
-          + '\n\n' +
-          read('src', 'zope', 'app', 'security', 'browser',
-               'authutilitysearchview.txt')
-          + '\n\n' +
-          read('src', 'zope', 'app', 'security', 'browser', 'loginlogout.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope security authentication principal ftp http",
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://pypi.python.org/pypi/zope.app.security',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require=dict(
-          test=[
-              'zope.app.testing',
-          ]),
-      install_requires = [
-          'setuptools',
-          'zope.app.localpermission',
-          'zope.app.pagetemplate',
-          'zope.app.publisher',
-          'zope.authentication',
-          'zope.i18n',
-          'zope.i18nmessageid',
-          'zope.interface',
-          'zope.principalregistry',
-          'zope.publisher >= 3.12',
-          'zope.security',
-          'zope.securitypolicy',
-          'zope.login',
-      ],
-      include_package_data = True,
-      zip_safe = False,
-      )



More information about the checkins mailing list