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

Stephen Richter cvs-admin at zope.org
Mon Feb 25 14:17:49 UTC 2013


Log message for revision 129791:
  Moved to GitHub.

Changed:
  D   zope.app.publication/trunk/CHANGES.txt
  D   zope.app.publication/trunk/COPYRIGHT.txt
  D   zope.app.publication/trunk/LICENSE.txt
  D   zope.app.publication/trunk/MANIFEST.in
  A   zope.app.publication/trunk/MOVED_TO_GITHUB
  D   zope.app.publication/trunk/README.txt
  D   zope.app.publication/trunk/bootstrap.py
  D   zope.app.publication/trunk/buildout.cfg
  D   zope.app.publication/trunk/setup.py
  D   zope.app.publication/trunk/src/
  D   zope.app.publication/trunk/tox.ini

-=-
Deleted: zope.app.publication/trunk/CHANGES.txt
===================================================================
--- zope.app.publication/trunk/CHANGES.txt	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/CHANGES.txt	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,211 +0,0 @@
-=======
-CHANGES
-=======
-
-3.14.1 (unreleased)
--------------------
-
-- Relax ZODB dependency to allow 3.10dev builds from SVN.
-
-- Introduce ZopePublication.callErrorView as a possible hook point.
-
-
-3.14.0 (2012-03-09)
--------------------
-
-- Replace ZODB.POSException.ConflictError with
-  transaction.interfaces.TransientError. The latter should be a more generic
-  signal to retry a transaction/request.
-  This requires ZODB3 >= 3.10.0 and transaction >= 1.1.0.
-
-- Get rid of ZODB dependency.
-
-
-3.13.2 (2011-08-04)
--------------------
-
-- Add missing test dependency on zope.testing.
-
-- Remove test dependency on zope.app.exception.
-
-
-3.13.1 (2011-03-14)
--------------------
-
-- Test fix: HTTP request should not have leading whitespace.
-
-
-3.13.0 (2011-01-25)
--------------------
-
-- Reenabled a test which makes sure ``405 MethodNotAllowed`` is returned
-  when PUT is not supported. This requires at least version 3.10 of
-  `zope.app.http`.
-
-
-3.12.0 (2010-09-14)
--------------------
-
-- Use the standard libraries doctest module.
-
-- Include the ``notfound.txt`` test again but reduce its scope to functionality
-  relevant to this distribution.
-
-- Notify with IStartRequestEvent at the start of the request publication
-  cycle.
-
-3.11.1 (2010-04-19)
--------------------
-
-- Fix up tests to work with newer zope.app.wsgi release (3.9.0).
-
-3.11.0 (2010-04-13)
--------------------
-
-- Don't depend on zope.app.testing and zope.app.zcmlfiles anymore in
-  the tests.
-
-3.10.2 (2010-01-08)
--------------------
-
-- Lift the test dependency on zope.app.zptpage.
-
-
-3.10.1 (2010-01-08)
--------------------
-
-- make zope.testing an optional (test) dependency
-
-- Fix tests using a newer zope.publisher that requires zope.login.
-
-3.10.0 (2009-12-15)
--------------------
-
-- Moved EndRequestEvent and IEndRequestEvent to zope.publisher.
-
-- Moved BeforeTraverseEvent and IBeforeTraverseEvent to zope.traversing.
-
-- Removed dependency on zope.i18n.
-
-- Import hooks functionality from zope.component after it was moved there from
-  zope.site.
-
-- Import ISite from zope.component after it was moved there from
-  zope.location.
-
-3.9.0 (2009-09-29)
-------------------
-
-- An abort within handleExceptions could have failed without logging what
-  caused the error. It now logs the original problem.
-
-- Moved registration of and tests for two publication-specific event handlers
-  here from zope.site in order to invert the package dependency.
-
-- Declared the missing dependency on zope.location.
-
-3.8.1 (2009-06-21)
-------------------
-
-- Bug fix: The publication traverseName method used ProxyFactory
-  rather than the publication proxy method.
-
-3.8.0 (2009-06-20)
-------------------
-
-- Added a proxy method that can be overridden in subclasses to control
-  how/if security proxies are created.
-
-- Replaced zope.deprecation dependency with backward-compatible imports
-
-3.7.0 (2009-05-23)
-------------------
-
-- Moved the publicationtraverse module to zope.traversing, removing the
-  zope.app.publisher -> zope.app.publication dependency (which was a
-  cycle).
-
-- Moved IHTTPException to zope.publisher, removing the dependency
-  on zope.app.http.
-
-- Moved the DefaultViewName API from zope.app.publisher.browser to
-  zope.publisher.defaultview, making it accessible to other packages
-  that need it.
-
-- Look up the application controller through a utility registration
-  rather than a direct reference.
-
-3.6.0 (2009-05-18)
-------------------
-
-- Use ``zope:adapter`` ZCML directive instead of ``zope:view``.
-  This avoid dependency on ``zope.app.component``.
-
-- Update imports from ``zope.app.security`` to ``zope.authentication`` and
-  ``zope.principalregistry``.
-
-- Use ``zope.browser.interfaces.ISystemError`` to avoid dependency on
-  ``zope.app.exception``.
-
-- Refactored tests so they can run successfully with ZODB 3.8 and 3.9.
-
-3.5.3 (2009-03-13)
-------------------
-
-- Adapt to the removal of IXMLPresentation from zope.app.publisher which
-  was removed to adapt to removal of deprecated interfaces from zope.component.
-
-3.5.2 (2009-03-10)
-------------------
-
-- Use ISkinnable.providedBy(request) instead of IBrowserRequest as condition
-  for calling setDefaultSkin. This at the same time removes dependency to
-  the browser part of zope.publisher.
-
-- Remove deprecated code.
-
-- Use built-in set class instead of the deprecated sets.Set and thus
-  don't cause deprecation warning in Python 2.6.
-
-3.5.1 (2009-01-31)
-------------------
-
-- Import ISite from zope.location.interfaces instead of deprecated place
-  in zope.app.component.interfaces.
-
-3.5.0 (2008-10-09)
-------------------
-
-- Now ``zope.app.publication.zopepublication.ZopePublication`` annotates the
-  request with the connection to the main ZODB when ``getApplication`` is
-  called.
-
-- Removed support for non-existent Zope versions.
-
-
-3.4.3 (2007-11-01)
-------------------
-
-- Removed unused imports.
-
-- Resolve ``ZopeSecurityPolicy`` deprecation warning.
-
-
-3.4.2 (2007-09-26)
-------------------
-
-- Added missing files to egg distribution.
-
-
-3.4.1 (2007-09-26)
-------------------
-
-- Added missing files to egg distribution.
-
-
-3.4.0 (2007-09-25)
-------------------
-
-- Initial documented release.
-
-- Reflect changes form ``zope.app.error`` refactoring.

Deleted: zope.app.publication/trunk/COPYRIGHT.txt
===================================================================
--- zope.app.publication/trunk/COPYRIGHT.txt	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/COPYRIGHT.txt	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zope.app.publication/trunk/LICENSE.txt
===================================================================
--- zope.app.publication/trunk/LICENSE.txt	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/LICENSE.txt	2013-02-25 14:17:48 UTC (rev 129791)
@@ -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: zope.app.publication/trunk/MANIFEST.in
===================================================================
--- zope.app.publication/trunk/MANIFEST.in	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/MANIFEST.in	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,5 +0,0 @@
-include *.txt
-include bootstrap.py
-include buildout.cfg
-include MANIFEST.in
-recursive-include src *.zcml *.txt

Added: zope.app.publication/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.app.publication/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.app.publication/trunk/MOVED_TO_GITHUB	2013-02-25 14:17:48 UTC (rev 129791)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.app.publication
\ No newline at end of file

Deleted: zope.app.publication/trunk/README.txt
===================================================================
--- zope.app.publication/trunk/README.txt	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/README.txt	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1 +0,0 @@
-Publication and traversal components.
\ No newline at end of file

Deleted: zope.app.publication/trunk/bootstrap.py
===================================================================
--- zope.app.publication/trunk/bootstrap.py	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/bootstrap.py	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,50 +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()
-
-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.publication/trunk/buildout.cfg
===================================================================
--- zope.app.publication/trunk/buildout.cfg	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/buildout.cfg	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,12 +0,0 @@
-[buildout]
-develop = .
-parts = test py
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.publication [test]
-
-[py]
-recipe = zc.recipe.egg
-eggs = ${test:eggs}
-interpreter = py

Deleted: zope.app.publication/trunk/setup.py
===================================================================
--- zope.app.publication/trunk/setup.py	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/setup.py	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,87 +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.
-#
-##############################################################################
-# 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.14.1dev'
-
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-TEST_REQUIREMENTS =['zope.annotation',
-                    'zope.app.appsetup >= 3.14.0',
-                    'zope.app.http >= 3.10',
-                    'zope.app.wsgi <3.11, >= 3.12',
-                    'zope.applicationcontrol>=3.5.0',
-                    'zope.browserpage',
-                    'zope.login',
-                    'zope.password',
-                    'zope.principalregistry',
-                    'zope.security>=4.0.0a1',
-                    'zope.securitypolicy',
-                    'zope.site',
-                    'zope.testing',
-                    'zope.testrunner',
-                    'ZODB3>=3.10dev']
-
-setup(name='zope.app.publication',
-    version=version,
-    author='Zope Corporation and Contributors',
-    author_email='zope-dev at zope.org',
-    description='Zope publication',
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license='ZPL 2.1',
-    keywords = "zope publication",
-    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.publication',
-    packages=find_packages('src'),
-    package_dir = {'': 'src'},
-    namespace_packages=['zope', 'zope.app'],
-    extras_require = dict(test=TEST_REQUIREMENTS),
-    install_requires=['zope.interface',
-                      'zope.authentication',
-                      'zope.component',
-                      'zope.error',
-                      'zope.browser>=1.2',
-                      'zope.location',
-                      'zope.publisher>=4.0.0a2',
-                      'zope.traversing>=3.9.0',
-                      'zope.untrustedpython',
-                      'zope.i18n>=4.0.0a3',
-                      'transaction>=1.1.0',
-                      'setuptools',
-                      ],
-    tests_require = TEST_REQUIREMENTS,
-    include_package_data = True,
-    zip_safe = False,
-    )

Deleted: zope.app.publication/trunk/tox.ini
===================================================================
--- zope.app.publication/trunk/tox.ini	2013-02-25 13:29:20 UTC (rev 129790)
+++ zope.app.publication/trunk/tox.ini	2013-02-25 14:17:48 UTC (rev 129791)
@@ -1,23 +0,0 @@
-[tox]
-envlist = py26, py27
-
-[testenv]
-commands =
-    zope-testrunner --test-path src
-deps = 
-    six
-    zope.app.appsetup >= 3.14.0
-    zope.app.http >= 3.10
-    zope.app.wsgi  >= 3.12
-    zope.applicationcontrol>=3.5.0
-    zope.browserpage
-    zope.login
-    zope.password
-    zope.principalregistry
-    zope.security
-    zope.securitypolicy
-    zope.site
-    zope.testing
-    zope.testrunner
-    zope.untrustedpython
-    ZODB3>=3.10dev



More information about the checkins mailing list