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

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


Log message for revision 130100:
  Moved to GitHub.

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

-=-
Deleted: zope.app.publisher/trunk/CHANGES.txt
===================================================================
--- zope.app.publisher/trunk/CHANGES.txt	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/CHANGES.txt	2013-03-12 13:35:14 UTC (rev 130100)
@@ -1,197 +0,0 @@
-=======
-CHANGES
-=======
-
-3.10.3 (unreleased)
-===================
-
-- Replaced an undeclared test dependency on zope.app.authentication with
-  zope.password.
-
-3.10.2 (2010-09-14)
-===================
-
-- Remove a testing dependency on zope.app.securitypolicy.
-
-3.10.1 (2010-01-08)
-===================
-
-- Fix tests using a newer zope.publisher that requires zope.login.
-
-3.10.0 (2009-08-31)
-===================
-
-- Fix test dependency on zope.container, now we depend on
-  zope.container >= 3.9.
-
-3.9.0 (2009-08-27)
-==================
-
-Refactor package, spliting it to several new packages:
-
-   * ``zope.browserresource`` - the resources mechanism was moved here, see its
-     CHANGES.txt for more information about changes during move.
-
-   * ``zope.ptresource`` - the page template resource was moved into another
-     package so zope.browserresource doesn't depend on any templating system.
-     See zope.ptresource's CHANGES.txt for more information.
-
-   * ``zope.browsermenu`` - the menu mechanism was moved here completely.
-   
-   * ``zope.browserpage`` - the browser:page directive and friends were
-     moved here. Also, these directives don't depend hardly on menu system
-     anymore, so they simply ignore the "menu" argument when zope.browsermenu
-     is not available.
-   
-Backward-compatibility imports are provided, so there should not be much impact
-for those who uses old imports.
-
-The CacheableBrowserLanguages and ModifiableBrowserLanguages adapters were
-moved into ``zope.publisher`` package, as well as browser:defaultSkin and
-browser:defaultView ZCML directives and ZCML class configuration for
-zope.publisher classes.
-
-ZCML registrations of IXMLRPCPublisher adapters for zope.container were moved
-into zope.container for now.
-
-
-3.8.4 (2009-07-23)
-==================
-
-- Added dependency on ``zope.app.pagetemplate``, it is used by
-  ``zope.app.publisher.browser.viewmeta``.
-
-3.8.3 (2009-06-18)
-==================
-
-- Bugfix: Fix ``IAbsoluteURL`` for ``IResource`` configuration. The latest
-  release was moving the url generation for resources to an adapter which was
-  a good idea. But the adapter was configured for
-  ``IDefaultBrowserLayer``. This means every existing project which dosen't
-  use ``IDefaultBrowserLayer`` will get a wrong ``IAbsoluteURL`` adapter and
-  is loosing the ``@@`` part in the resource url.
-
-
-3.8.2 (2009-06-16)
-==================
-
-- Remove test dependency on ``zope.app.pagetemplate``.
-
-- Calling a resource to get its URL now uses ``IAbsoluteURL``.
-
-3.8.1 (2009-05-25)
-==================
-
-- Updated to use ``zope.pagetemplate.engine`` module (requires versino
-  3.5.0 or later), instead of ``zope.app.pagetemplate`` precursor.
-
-- Replaced ``zope.deprecation`` dependency with BBB imports
-
-3.8.0 (2009-05-23)
-==================
-
-- There is no direct dependency on zope.app.component anymore (even in
-  the tests).
-
-- Moved the publicationtraverse module to zope.traversing, removing the
-  zope.app.publisher -> zope.app.publication dependency (which was a
-  cycle).
-
-- Moved the DefaultViewName API from zope.app.publisher.browser to
-  zope.publisher.defaultview, making it accessible to other packages
-  that need it.
-
-3.7.0 (2009-05-22)
-==================
-
-- Use zope.componentvocabulary instead of zope.app.component
-  (except for tests and IBasicViewInformation).
-
-- Use zope.browser for IAdding interface (instead of zope.app.container)
-
-- Update references to ``zope.app.component.tests.views`` to point to the new
-  locations in ``zope.component.testfiles.views``.
-
-3.6.2 (2009-03-18)
-==================
-
-- Register ``IModifiableUserPreferredLanguages`` adapter in the ZCML
-  configuration of ``zope.app.publisher.browser`` package. This was previously
-  done by ``zope.app.i18n``.
-
-3.6.1 (2009-03-12)
-==================
-
-- Remove deprecated code.
-
-- Adapt to removal of deprecated interfaces from zope.component.interfaces.
-  The IResource is now moved to zope.app.publisher.interfaces. The IView
-  and IDefaultViewName is now in zope.publisher.interfaces. The IPresentation
-  interface was removed completely.
-
-3.6.0 (2009-01-31)
-==================
-
-- Use zope.container instead of zope.app.container.
-
-- Use zope.site.folder instead of zope.app.folder.
-
-3.5.3 (2009-01-27)
-==================
-
-- Finally removed <browser:skin> and <browser:layer> that were marked as
-  deprecated in 2006/02.
-
-3.5.2 (2008-12-06)
-==================
-
-- Added possibility to specify custom item class in menuItem, subMenuItem
-  and addMenuItem directives using the ``item_class`` argument (LP #291865).
-
-- Menu items registered with <browser:page/> were not re-registered after the
-  first functional test layer ran. In any subsequent functional test layer the
-  items where not availabe (introduced in 3.5.0a3).
-
-- Added a hook to specify a different BaseURL for resources. This makes sense
-  if you want to put resources on a Content Delivery Network. All you need to
-  do is to register an named Adapter 'resource' that implements IAbsoluteURL.
-
-3.5.1 (2008-10-13)
-==================
-
-- Removed usage of deprecated LayerField from zope.app.component.back35.
-
-3.5.0 (2008-08-05)
-==================
-
-- Refactored code to provide more hooks when deriving code from this pacakge.
-
-  * A resource's URL creation is now in its own method.
-
-  * The resource class of factories can be overwritten.
-
-  * The cache timeout value can now be set as a class or instance attribute.
-
-3.5.0a4 (2007-12-28)
-====================
-
-- Backed out the changes for the controversial XML-RPC skin support.
-
-3.5.0a3 (2007-11-27)
-====================
-
-- make it possible to override menus: this was not possible because new
-  interfaces where created any time a menu with the same name was created.
-
-- Resolve ``ZopeSecurityPolicy`` deprecation warning.
-
-3.5.0a2 (2007-08-23)
-====================
-
-- <browser:defaultView> now accepts classes as well as interfaces.
-
-3.5.0a1 (2007-08-21)
-====================
-
-- Added a `layer` attribute to `xmlrpc:view`. This works just like layers for
-  `browser:view` etc. but uses the `IXMLRPCSkinType`.

Deleted: zope.app.publisher/trunk/COPYRIGHT.txt
===================================================================
--- zope.app.publisher/trunk/COPYRIGHT.txt	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/COPYRIGHT.txt	2013-03-12 13:35:14 UTC (rev 130100)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zope.app.publisher/trunk/LICENSE.txt
===================================================================
--- zope.app.publisher/trunk/LICENSE.txt	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/LICENSE.txt	2013-03-12 13:35:14 UTC (rev 130100)
@@ -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.publisher/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.app.publisher/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.app.publisher/trunk/MOVED_TO_GITHUB	2013-03-12 13:35:14 UTC (rev 130100)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.app.publisher
\ No newline at end of file

Deleted: zope.app.publisher/trunk/README.txt
===================================================================
--- zope.app.publisher/trunk/README.txt	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/README.txt	2013-03-12 13:35:14 UTC (rev 130100)
@@ -1,25 +0,0 @@
-========
-Overview
-========
-
-*This package is at present not reusable without depending on a large
-chunk of the Zope Toolkit and its assumptions. It is maintained by the*
-`Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.
-
-This package used to provide browser page, resource and menu classes
-for use with zope.publisher object publishing framework, as well as some
-other useful utilities and adapters, but most of things was factored out
-to separate packages, leaving here only backward-compatibility imports.
-
-However, some potentially useful things are still contained in this package:
-
- * "date" field converter for zope.publisher's BrowserRequest field converter
-   mechanism.
- 
- * "Browser Skins" vocabulary (a vocabulary for IBrowserSkinType utilities)
- 
- * ManagementViewSelector (a browser view that redirects to a first available
-   management view)
-
- * XML-RPC view and method publishing mechanism along with xmlrpc:view ZCML
-   directive.

Deleted: zope.app.publisher/trunk/bootstrap.py
===================================================================
--- zope.app.publisher/trunk/bootstrap.py	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/bootstrap.py	2013-03-12 13:35:14 UTC (rev 130100)
@@ -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.publisher/trunk/buildout.cfg
===================================================================
--- zope.app.publisher/trunk/buildout.cfg	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/buildout.cfg	2013-03-12 13:35:14 UTC (rev 130100)
@@ -1,22 +0,0 @@
-[buildout]
-develop = .
-parts = test coverage-test coverage-report pydev
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.publisher [test]
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.publisher [test]
-defaults = ['--coverage', '../../coverage']
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')
-
-[pydev]
-recipe = pb.recipes.pydev
-eggs = zope.app.publisher

Deleted: zope.app.publisher/trunk/setup.py
===================================================================
--- zope.app.publisher/trunk/setup.py	2013-03-12 13:34:46 UTC (rev 130099)
+++ zope.app.publisher/trunk/setup.py	2013-03-12 13:35:14 UTC (rev 130100)
@@ -1,77 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 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.
-##############################################################################
-"""zope.app.publisher setup
-"""
-from setuptools import setup, find_packages
-
-long_description = (open('README.txt').read() + '\n\n' +
-                    open('CHANGES.txt').read())
-
-setup(name='zope.app.publisher',
-      version = '3.10.3dev',
-      url='http://pypi.python.org/pypi/zope.app.publisher/',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      classifiers = ['Environment :: Web Environment',
-                     'Intended Audience :: Developers',
-                     'License :: OSI Approved :: Zope Public License',
-                     'Programming Language :: Python',
-                     'Operating System :: OS Independent',
-                     'Topic :: Internet :: WWW/HTTP',
-                     'Framework :: Zope3',
-                     ],
-      description='Implementations and means for configuration of Zope 3-'
-                  'style views and resources.',
-      long_description=long_description,
-      license='ZPL 2.1',
-
-      packages=find_packages('src'),
-      package_dir={'': 'src'},
-
-      namespace_packages=['zope', 'zope.app'],
-      include_package_data=True,
-      install_requires=['setuptools',
-                        'zope.browsermenu',
-                        'zope.browserpage',
-                        'zope.browserresource',
-                        'zope.component',
-                        'zope.configuration',
-                        'zope.datetime',
-                        'zope.interface',
-                        'zope.location',
-                        'zope.ptresource',
-                        'zope.publisher>=3.12',
-                        'zope.schema',
-                        'zope.security',
-                        'zope.componentvocabulary',
-                        ],
-      extras_require={
-          'test': ['zope.testing',
-                   'zope.app.testing',
-                   'zope.app.zcmlfiles',
-                   'zope.container>=3.9',
-                   'zope.securitypolicy',
-                   'zope.site',
-                   'zope.login',
-                   'zope.password',
-                   ],
-          },
-
-      zip_safe = False,
-      )



More information about the checkins mailing list