[Checkins] SVN: five.grok/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Fri Apr 12 01:25:24 UTC 2013


Log message for revision 130198:
  Moved to GitHub.

Changed:
  D   five.grok/trunk/COPYRIGHT.txt
  D   five.grok/trunk/LICENSE.txt
  D   five.grok/trunk/MANIFEST.in
  A   five.grok/trunk/MOVED_TO_GITHUB
  D   five.grok/trunk/README.txt
  D   five.grok/trunk/bootstrap.py
  D   five.grok/trunk/buildout.cfg
  D   five.grok/trunk/docs/
  D   five.grok/trunk/five.grok-configure.zcml
  D   five.grok/trunk/setup.py
  D   five.grok/trunk/src/

-=-
Deleted: five.grok/trunk/COPYRIGHT.txt
===================================================================
--- five.grok/trunk/COPYRIGHT.txt	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/COPYRIGHT.txt	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: five.grok/trunk/LICENSE.txt
===================================================================
--- five.grok/trunk/LICENSE.txt	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/LICENSE.txt	2013-04-12 01:25:22 UTC (rev 130198)
@@ -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: five.grok/trunk/MANIFEST.in
===================================================================
--- five.grok/trunk/MANIFEST.in	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/MANIFEST.in	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1,3 +0,0 @@
-recursive-include src *.css *.pt *.py *.txt *.zcml
-recursive-include docs *.txt
-include README.txt

Added: five.grok/trunk/MOVED_TO_GITHUB
===================================================================
--- five.grok/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ five.grok/trunk/MOVED_TO_GITHUB	2013-04-12 01:25:22 UTC (rev 130198)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/five.grok
\ No newline at end of file

Deleted: five.grok/trunk/README.txt
===================================================================
--- five.grok/trunk/README.txt	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/README.txt	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1,88 +0,0 @@
-five.grok
-=========
-
-.. contents::
-
-Introduction
-------------
-
-`five.grok` is a development layer for Zope 2, based on Grok framework
-concepts.
-
-The development techniques are similar to the ones used with Grok
-framework.
-
-It is based on `grokcore` namespace packages that were factored out of Grok
-framework.
-
-Implemented features
---------------------
-
-Coming from Grok, the following components are available to Zope 2
-developers:
-
-- Zope 3 Component (Adapter, Global utilities, Subscribers),
-
-- Permissions,
-
-- Views and Viewlets,
-
-- Skins and resources directories,
-
-- Page Templates (using the Zope 2 Page Templates),
-
-- Formlib forms (optional, you need to include the extra ``form``),
-
-- Local sites and local utilities,
-
-- Annotations,
-
-- Layout (optional, you need to include the extra ``layout``).
-
-All those components are available with exactly the same syntax than
-in grok. You just have to do::
-
-  from five import grok
-
-Instead of::
-
-  import grok
-
-Installation
-------------
-
-After adding the dependency to ``five.grok`` in your project, you have
-to load the following ZCML::
-
-  <include package="five.grok" />
-
-Note
-~~~~
-
-And for this release we recommend to pin down the following version in
-your buildout::
-
-  five.formlib = 1.0.4
-  five.localsitemanager = 2.0.5
-  grokcore.annotation = 1.3
-  grokcore.component = 2.5
-  grokcore.formlib = 1.9
-  grokcore.layout = 1.5.1
-  grokcore.security = 1.6.1
-  grokcore.site = 1.6.1
-  grokcore.view = 2.7
-  grokcore.viewlet = 1.10.1
-  martian = 0.14
-
-
-Zope 2.13 is required. If you wish to use a previous version of Zope
-2, look at five.grok 1.0 for Zope 2.10.x or five.grok 1.2 for Zope 2.12.x.
-
-
-More information
-----------------
-
-You can refer to the Grok website: http://grok.zope.org/, and the Grok
-documentation: http://grok.zope.org/documentation/.
-
-You can check the doctest included in sources as well.

Deleted: five.grok/trunk/bootstrap.py
===================================================================
--- five.grok/trunk/bootstrap.py	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/bootstrap.py	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1,55 +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()
-
-try:
-    import pkg_resources
-except ImportError:
-    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: five.grok/trunk/buildout.cfg
===================================================================
--- five.grok/trunk/buildout.cfg	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/buildout.cfg	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1,52 +0,0 @@
-[buildout]
-parts =
-    zope2
-    instance
-    test
-    code
-extensions = buildout.dumppickedversions
-develop = .
-extends = http://download.zope.org/Zope2/index/2.13.10/versions.cfg
-versions = versions
-
-[versions]
-five.formlib = 1.0.4
-five.localsitemanager = 2.0.5
-grokcore.annotation = 1.3
-grokcore.component = 2.5
-grokcore.formlib = 1.9
-grokcore.layout = 1.5.1
-grokcore.security = 1.6.1
-grokcore.site = 1.6.1
-grokcore.view = 2.7
-grokcore.viewlet = 1.10.1
-martian = 0.14
-plone.recipe.zope2instance =
-
-# This is needed in order to set up the mkzopeinstance script
-[zope2]
-recipe = zc.recipe.egg
-eggs = Zope2
-
-[code]
-recipe = collective.recipe.omelette
-eggs = ${instance:eggs}
-
-[instance]
-recipe = plone.recipe.zope2instance
-user = admin:admin
-http-address = 8080
-debug-mode = on
-verbose-security = on
-eggs =
-    five.grok
-zcml =
-    five.grok-meta
-    five.grok
-products =
-
-[test]
-recipe = zc.recipe.testrunner
-eggs =
-    five.grok [test]
-defaults = ['-m', 'five.grok', '--tests-pattern', '^f?tests$', '-v']

Deleted: five.grok/trunk/five.grok-configure.zcml
===================================================================
--- five.grok/trunk/five.grok-configure.zcml	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/five.grok-configure.zcml	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1 +0,0 @@
-<include package="five.grok" />

Deleted: five.grok/trunk/setup.py
===================================================================
--- five.grok/trunk/setup.py	2013-04-11 20:35:31 UTC (rev 130197)
+++ five.grok/trunk/setup.py	2013-04-12 01:25:22 UTC (rev 130198)
@@ -1,65 +0,0 @@
-from setuptools import setup, find_packages
-import os
-
-version = '1.4dev'
-
-form_requires = [
-    'grokcore.formlib >= 1.4',
-    'five.formlib',
-    'zope.formlib',
-    ]
-layout_requires = [
-    'grokcore.layout',
-    ]
-test_requires = form_requires + layout_requires + [
-    ]
-
-setup(name='five.grok',
-      version=version,
-      description="Grok-like layer for Zope 2",
-      long_description=open("README.txt").read() + "\n" +
-                       open(os.path.join("docs", "HISTORY.txt")).read(),
-      classifiers=[
-        "Environment :: Web Environment",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved :: Zope Public License",
-        "Programming Language :: Python",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        "Framework :: Zope2",
-        ],
-      keywords='zope2 grok',
-      author='Lennart Regebro, Godefroid Chapelle',
-      author_email='grok-dev at zope.org',
-      url='http://svn.zope.org/five.grok/',
-      license='ZPL',
-      packages=find_packages('src', exclude=['ez_setup']),
-      package_dir={'': 'src'},
-      namespace_packages=['five'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-        'setuptools',
-        'martian',
-        'Zope2>=2.13',
-        'five.localsitemanager > 2.0dev',
-        'grokcore.annotation',
-        'grokcore.component >= 2.5',
-        'grokcore.security >= 1.6.1',
-        'grokcore.site',
-        'grokcore.view >= 1.12.1',
-        'grokcore.viewlet >= 1.3',
-        'zope.annotation',
-        'zope.component',
-        'zope.container',
-        'zope.contentprovider',
-        'zope.interface',
-        'zope.location',
-        'zope.pagetemplate',
-        'zope.publisher',
-        'zope.traversing',
-        ],
-      extras_require={
-        'form': form_requires,
-        'layout': layout_requires,
-        'test': form_requires},
-      )



More information about the checkins mailing list