[Checkins] SVN: z3c.formui/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Sun Feb 24 03:24:10 UTC 2013


Log message for revision 129724:
  Moved to GitHub.

Changed:
  D   z3c.formui/trunk/AUTHOR.txt
  D   z3c.formui/trunk/CHANGES.txt
  D   z3c.formui/trunk/COPYRIGHT.txt
  D   z3c.formui/trunk/LICENSE.txt
  A   z3c.formui/trunk/MOVED_TO_GITHUB
  D   z3c.formui/trunk/README.txt
  D   z3c.formui/trunk/bootstrap.py
  D   z3c.formui/trunk/buildout.cfg
  D   z3c.formui/trunk/setup.py
  D   z3c.formui/trunk/src/

-=-
Deleted: z3c.formui/trunk/AUTHOR.txt
===================================================================
--- z3c.formui/trunk/AUTHOR.txt	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/AUTHOR.txt	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,2 +0,0 @@
-Stephan Richter (stephan.richter <at> gmail.com)
-Roger Ineichen (roger <at> projekt01.ch)

Deleted: z3c.formui/trunk/CHANGES.txt
===================================================================
--- z3c.formui/trunk/CHANGES.txt	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/CHANGES.txt	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,166 +0,0 @@
-=======
-CHANGES
-=======
-
-2.3.1 (unreleased)
-------------------
-
-- ...
-
-2.3.0 (2012-03-15)
-------------------
-
-- Feature: Mark a widget row with the "required" class when the widget is
-  required. Similarly, when the widget has an error attached, add the "error"
-  class to the widget row. That allows you to change the styles of the label
-  and the widget if it is reuqired.
-
-2.2.1 (2012-01-09)
-------------------
-
-- No longer using deprecated ``zope.testing.doctest`` but built-in
-  ``doctest`` instead.
-
-- Fixed tests so they do not break for `z3c.form` 2.5.0.
-
-
-2.2.0 (2009-12-28)
-------------------
-
-- Fixed tests so they do not break for `z3c.form` 2.2.0.
-
-- Using ``requiredInfo`` property (introduced in `z3c.form` 2.0.0) to
-  render the information about required fields. This property returns
-  an i18n message id making the information translateable.
-
-- Added support for groups containing groups: They get displayed now.
-
-2.1.0 (2009-09-01)
-------------------
-
-- Feature: Don't show required info hint if there's no required fields.
-
-- Bug: Don't render add forms when redirecting as well.
-
-- Bug: Fix redirection tests with newer zope.publisher that restricts
-  untrusted redirects to different domains.
-
-2.0.0 (2009-06-14)
-------------------
-
-- Feature: Added support for context-specific template lookup, introduced in
-  `z3c.template` 1.2.0 - templates can now be registered using (view, request,
-  context) discriminator.
-
-- Feature: Added support for `z3c.pt` templates using `z3c.ptcompat`
-  compatibility package.
-
-- Feature: Added layout support for `IAdding` component based add forms.
-
-- Feature: Added CSS for multi-widget which was added in `z3c.form` 2.0.0.
-
-- Bug: Changed usage of ``template/macros/*`` to ``macro:*``, because the
-  first one doesn't work when we override a form template and use the form
-  macro, registered with this package.
-
-- Bug: Don't do rendering in form's `__call__` method when request is a
-  redirection.
-
-- Bug: Reformatted long-description to render properly on pypi.
-
-
-1.4.2 (2008-08-26)
-------------------
-
-- Bug: Corrected typos and unwanted unicode characters.
-
-
-1.4.1 (2008-01-23)
-------------------
-
-- Bug: Fixed up meta-data and the release.
-
-
-1.4.0 (2008-01-21)
-------------------
-
-- Feature: Added subform content and layout template. This allows you to
-  configure real sub forms which do not render the form tag.
-
-- Feature: Improve layout implementation, support built-in layout templates.
-
-- Feature: Use ``IContentTemplate`` instead of ``IPageTemplate`` in layout
-  base classes. This will help to prevent running into recursion errors if
-  there is a missing layout template.
-
-- Feature: Added form module which offers built-in layout support.
-
-- Bug: Added missing display ``IContentTemplate``, otherwise we can run into a
-  recursion in some cases.
-
-- Bug: Renamed table macro argument from ``form-required-info`` to
-  ``required-info``. The macro ``form-required-info`` did not exist.
-
-- Bug: Added unit tests for layout support.
-
-- Bug: Added tests for layout macros.
-
-- Bug: Added tests for layout templates.
-
-
-1.3.0 (2007-08-24)
-------------------
-
-- Refactoring: Update CSS classes to reflect latest changes to the widget
-  classes in ``z3c.form``.
-
-- Bug: Error view snippets may have a empty ``widget`` attribute values, so we
-  cannot rely on accessing the label of the widget. This is the case, if the
-  error view sniipet was created from an invariants validation error.
-
-- Bug: The table-form template did not properly render the error at the
-  widget, because the ``render()`` method was not called. Thanks to Markus
-  Leist for the report.
-
-
-1.2.0 (2007-07-18)
-------------------
-
-- Feature: The row div element now also has an id of the form
-  "<widget-id>-row".
-
-
-1.1.1 (2007-07-04)
-------------------
-
-- Refactoring: Split up registrations for simpler management of UI
-  components. This also makes it easier to see for developers how to create a
-  new template for forms.
-
-
-1.1.0 (2007-06-29)
-------------------
-
-- Feature: Registered all defined macros for each form template. Also, added
-  more slots to the templates providing more hooks for customization.
-
-- Feature: Added a macro/slot for the "required info", which explains how
-  required fields are marked.
-
-- Feature: Added support for form labels.
-
-- Feature: Added support for groups to templates.
-
-
-1.0.1 (2007-06-22)
-------------------
-
-- Bug: Make sure we use the id for the "for" attribute of the "label"
-  element and not the name. This has worked until recently, because the
-  name and id were the same, but they are different now.
-
-
-1.0.0 (2007-05-24)
-------------------
-
-- Initial Release

Deleted: z3c.formui/trunk/COPYRIGHT.txt
===================================================================
--- z3c.formui/trunk/COPYRIGHT.txt	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/COPYRIGHT.txt	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: z3c.formui/trunk/LICENSE.txt
===================================================================
--- z3c.formui/trunk/LICENSE.txt	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/LICENSE.txt	2013-02-24 03:24:09 UTC (rev 129724)
@@ -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: z3c.formui/trunk/MOVED_TO_GITHUB
===================================================================
--- z3c.formui/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ z3c.formui/trunk/MOVED_TO_GITHUB	2013-02-24 03:24:09 UTC (rev 129724)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/z3c.formui
\ No newline at end of file

Deleted: z3c.formui/trunk/README.txt
===================================================================
--- z3c.formui/trunk/README.txt	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/README.txt	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,5 +0,0 @@
-This package provides a set of default layouts for the ``z3c.form``
-framework. In particular it provides a DIV-based and a TABLE-based layout. The
-developer can use either layout by inheriting from a different base layer.
-
-The package also has some support for layout/pagelet templates.

Deleted: z3c.formui/trunk/bootstrap.py
===================================================================
--- z3c.formui/trunk/bootstrap.py	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/bootstrap.py	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,52 +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.
-#
-##############################################################################
-"""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: z3c.formui/trunk/buildout.cfg
===================================================================
--- z3c.formui/trunk/buildout.cfg	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/buildout.cfg	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,28 +0,0 @@
-[buildout]
-develop = .
-parts = test coverage-test coverage-report
-versions = versions
-
-[versions]
-lxml = 2.3
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = z3c.formui [test]
-environment = test-environment
-
-[test-environment]
-CHAMELEON_DEBUG = False
-CHAMELEON_CACHE = False
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = z3c.formui [test]
-defaults = ['--coverage', '../../coverage']
-environment = test-environment
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')

Deleted: z3c.formui/trunk/setup.py
===================================================================
--- z3c.formui/trunk/setup.py	2013-02-24 02:31:39 UTC (rev 129723)
+++ z3c.formui/trunk/setup.py	2013-02-24 03:24:09 UTC (rev 129724)
@@ -1,72 +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.
-#
-##############################################################################
-"""Setup
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-
-setup(
-    name='z3c.formui',
-    version='2.3.1dev',
-    author="Stephan Richter, Roger Ineichen and the Zope Community",
-    author_email="zope-dev at zope.org",
-    description="A set of initial UI components for z3c.form.",
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        '.. contents::'
-        + '\n\n' +
-        read('src', 'z3c', 'formui', 'README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license="ZPL 2.1",
-    keywords="zope3 form widget",
-    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/z3c.formui',
-    packages=find_packages('src'),
-    include_package_data=True,
-    package_dir={'': 'src'},
-    namespace_packages=['z3c'],
-    extras_require=dict(
-        test=['z3c.form [test]',
-              'z3c.form [latest]'],
-        ),
-    install_requires=[
-        'setuptools',
-        'z3c.form >= 2.2.0',
-        'z3c.macro',
-        'z3c.template',
-        'zope.component',
-        'zope.publisher',
-        'zope.viewlet',
-        ],
-    zip_safe=False,
-    )



More information about the checkins mailing list