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

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


Log message for revision 130093:
  Moved to GitHub.

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

-=-
Deleted: zope.app.form/trunk/CHANGES.txt
===================================================================
--- zope.app.form/trunk/CHANGES.txt	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/CHANGES.txt	2013-03-12 13:34:18 UTC (rev 130093)
@@ -1,192 +0,0 @@
-=======
-CHANGES
-=======
-
-4.0.3 (unreleased)
-==================
-
-- ...
-
-4.0.2 (2010-01-22)
-==================
-
-- Seems like 4.0.1 was released already. Brown bag.
-
-4.0.1 (2010-01-08)
-==================
-
-- Import 'escape' for backwards compatibility as packages turn out to be
-  importing this too, even though it's actually from the Python standard
-  library.
-
-- Widget documentation is now on PyPI too.
-
-4.0 (2010-01-08)
-================
-
-- The widget implementations have been moved to zope.formlib. This
-  makes this package depend on zope.formlib. The dependency of zope.formlib
-  on this package has been broken.
-
-3.12.1 (2009-12-22)
-===================
-
-- Added missing zope.datetime dependency.
-
-3.12.0 (2009-12-22)
-===================
-
-- Use zope.browserpage in favor of zope.app.pagetemplate.
-
-3.11.1 (2009-12-22)
-===================
-
-- Prefer zope.testing.doctest over doctestunit and adjust test output to newer
-  zope.schema release.
-
-3.11.0 (2009-12-18)
-===================
-
-- Use zope.component.testing in favor of zope.app.testing where possible.
-
-- Define dummy standard_macros for test purposes. This reduces the test
-  dependencies by zope.app.basicskin and zope.browserresource.
-
-- Removed the zope.app.container and zope.app.publisher testing dependencies.
-
-- Refactored code to remove zope.app.component dependency.
-
-- Made the tests independent of zope.app.locales.
-
-- Reduce zope.app test dependencies by avoiding zope.app.securitypolicy and
-  zope.app.zcmlfiles.
-
-3.10.0 (2009-12-17)
-===================
-
-- Avoid the ``zope.app.basicskin`` dependency, by defining our own FormMacros.
-
-3.9.0 (2009-10-08)
-==================
-
-- Internationalized 'Invalid value' used with ConversionError
-- Added dependency on transaction and test dependency on zope.app.component.
-- Moved dependencies on ZODB3 and zope.location to the test extra.
-- Reduced the dependency on zope.app.publisher to a dependency on
-  zope.browsermenu plus a test dependency on zope.browserpage.
-
-3.8.1 (2009-07-23)
-==================
-
-- Fix unittest failure due to translation update.
-
-3.8.0 (2009-05-24)
-==================
-
-- Use standard properties instead of `zope.cachedescriptors`.
-
-- Require `zope.browser` 1.1 instead of `zope.app.container` for IAdding.
-
-3.7.3 (2009-05-11)
-==================
-
-- Fixed invalid markup.
-
-3.7.2 (2009-03-12)
-==================
-
-- Fixed bug where OrderedMultiSelectWidget did not respect the widgets
-  size attribute.
-
-- Fixed bug in SequenceWidget where it crashed while trying to iterate
-  a missing_value (None in most of cases) on _getRenderedValue.
-
-- Adapt to removal of deprecated interfaces from zope.component.interfaces.
-  The IView was moved to zope.publisher and we use our custom IWidgetFactory
-  interface instead of removed zope.component.interfaces.IViewFactory.
-
-- Fix tests to work on Python 2.6.
-
-3.7.1 (2009-01-31)
-==================
-
-- Adapt to the upcoming zope.schema release 3.5.1 which will also silence the
-  spurious `set` failures.
-
-3.7.0 (2008-12-11)
-==================
-
-- use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
-
-- Depending on zope.schema>=3.5a1 which uses the builtin ``set`` instead of the
-  ``sets`` module.
-
-
-3.6.4 (2008-11-26)
-==================
-
-- The URIDisplayWidget doesn't render an anchor for empty/None values.
-
-
-3.6.3 (2008-10-15)
-==================
-
-- Get rid of deprecated usage of LayerField from
-  zope.app.component.back35, replaced by
-  zope.configuration.fields.GlobalInterface.
-
-3.6.2 (2008-09-08)
-==================
-
-
-- Fixed restructured text in doc tests to unbreak the PyPI page.
-
-(3.6.1 skipped due to a typo)
-
-
-3.6.0 (2008-08-22)
-==================
-
-- Dropdown widgets display an item for the missing value even if the field is
-  required when no value is selected. See zope/app/form/browser/README.txt on
-  how to switch this off for BBB.
-
-- Source select widgets for required fields are now required as well. They
-  used not to be required on the assumption that some value would be selected
-  by the browser, which had always been wrong except for dropdown widgets.
-
-
-3.5.0 (2008-06-05)
-==================
-
-- Translate the title on SequenceWidget's "Add <title>" button.
-
-- No longer uses zapi.
-
-
-3.4.2 (2008-02-07)
-==================
-
-- Made display widgets for sources translate message IDs correctly.
-
-
-3.4.1 (2007-10-31)
-==================
-
-- Resolve ``ZopeSecurityPolicy`` deprecation warning.
-
-
-3.4.0 (2007-10-24)
-==================
-
-- ``zope.app.form`` now supports Python2.5
-
-- Initial release independent of the main Zope tree.
-
-
-Before 3.4
-==========
-
-This package was part of the Zope 3 distribution and did not have its own
-CHANGES.txt. For earlier changes please refer to either our subversion log or
-the CHANGES.txt of earlier Zope 3 releases.

Deleted: zope.app.form/trunk/COPYRIGHT.txt
===================================================================
--- zope.app.form/trunk/COPYRIGHT.txt	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/COPYRIGHT.txt	2013-03-12 13:34:18 UTC (rev 130093)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

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

Deleted: zope.app.form/trunk/README.txt
===================================================================
--- zope.app.form/trunk/README.txt	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/README.txt	2013-03-12 13:34:18 UTC (rev 130093)
@@ -1,7 +0,0 @@
-This package provides the old form framework for Zope 3. It also
-implements a few high-level ZCML directives for declaring forms. More
-advanced alternatives are implemented in ``zope.formlib`` and
-``z3c.form``. The widgets that were defined in here were moved to
-``zope.formlib``. Version 4.0 and newer are maintained for backwards
-compatibility reasons only.
-

Deleted: zope.app.form/trunk/bootstrap.py
===================================================================
--- zope.app.form/trunk/bootstrap.py	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/bootstrap.py	2013-03-12 13:34:18 UTC (rev 130093)
@@ -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: bootstrap.py 72703 2007-02-20 11:49:26Z jim $
-"""
-
-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.form/trunk/buildout.cfg
===================================================================
--- zope.app.form/trunk/buildout.cfg	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/buildout.cfg	2013-03-12 13:34:18 UTC (rev 130093)
@@ -1,7 +0,0 @@
-[buildout]
-develop = .
-parts = test
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.form [test]

Deleted: zope.app.form/trunk/setup.py
===================================================================
--- zope.app.form/trunk/setup.py	2013-03-12 13:34:06 UTC (rev 130092)
+++ zope.app.form/trunk/setup.py	2013-03-12 13:34:18 UTC (rev 130093)
@@ -1,89 +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.
-##############################################################################
-"""Setup for zope.app.form package
-
-$Id: setup.py 81002 2007-10-24 01:19:47Z srichter $
-"""
-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.form',
-      version = '4.0.3dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='The Original Zope 3 Form Framework',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed documentation:\n'
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 form widget zcml",
-      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.form',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require={'test': [
-            'ZODB3',
-            'zc.sourcefactory',
-            'zope.container',
-            'zope.principalregistry',
-            'zope.site',
-            'zope.traversing',
-            'zope.app.appsetup',
-            'zope.app.publication',
-            'zope.app.testing',
-            ]},
-      install_requires=[
-          "setuptools",
-          "transaction",
-          "zope.formlib >= 4.0",
-          "zope.browser>=1.1",
-          "zope.browserpage>=3.10.1",
-          "zope.browsermenu",
-          "zope.component",
-          "zope.configuration",
-          "zope.datetime",
-          "zope.exceptions",
-          "zope.i18n",
-          "zope.interface",
-          "zope.proxy",
-          "zope.publisher",
-          "zope.schema>=3.5.1dev",
-          "zope.security",
-          ],
-      include_package_data = True,
-      zip_safe = False,
-      )
-



More information about the checkins mailing list