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

Stephen Richter cvs-admin at zope.org
Sat Mar 2 02:09:45 UTC 2013


Log message for revision 129985:
  Moved to GitHub.

Changed:
  A   five.globalrequest/trunk/MOVED_TO_GITHUB
  D   five.globalrequest/trunk/README.txt
  D   five.globalrequest/trunk/docs/
  D   five.globalrequest/trunk/five/
  D   five.globalrequest/trunk/setup.py

-=-
Added: five.globalrequest/trunk/MOVED_TO_GITHUB
===================================================================
--- five.globalrequest/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ five.globalrequest/trunk/MOVED_TO_GITHUB	2013-03-02 02:09:45 UTC (rev 129985)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/five.globalrequest
\ No newline at end of file

Deleted: five.globalrequest/trunk/README.txt
===================================================================
--- five.globalrequest/trunk/README.txt	2013-03-02 02:09:37 UTC (rev 129984)
+++ five.globalrequest/trunk/README.txt	2013-03-02 02:09:45 UTC (rev 129985)
@@ -1,24 +0,0 @@
-Overview
-========
-
-This package integrates `zope.globalrequest <http://pypi.python.org/pypi/zope.globalrequest>`_
-with Zope 2. It is compatible with Zope 2.12 and later. In Zope 2.10, you
-can install `ZPublisherEventsBackport <http://pypi.python.org/pypi/ZPublisherEventsBackport>`_
-to use it.
-
-The only thing you need to do to use this package is to load its configuration
-from your own ZCML file::
-
-    <include package="five.globalrequest" />
-
-You can now use ``zope.globalrequest`` as normal::
-
-    from zope.globalrequest import getRequest
-    request = getRequest()
-
-The request is set up when publication starts, when the ``IPubStart`` event
-is fired. It is cleared on one of the ``IPubEnd`` events: ``IPubSuccess`` or
-``IPubFailure``. If you have your own event handlers for either of these
-events, you should be aware that the event setup/clear could happen after/
-before your own event handler is executed, since the order of execution for
-event handlers is not controllable.

Deleted: five.globalrequest/trunk/setup.py
===================================================================
--- five.globalrequest/trunk/setup.py	2013-03-02 02:09:37 UTC (rev 129984)
+++ five.globalrequest/trunk/setup.py	2013-03-02 02:09:45 UTC (rev 129985)
@@ -1,32 +0,0 @@
-from setuptools import setup, find_packages
-import os
-
-version = '1.1dev'
-
-setup(name='five.globalrequest',
-      version=version,
-      description="Zope 2 integration for zope.globalrequest",
-      long_description=open("README.txt").read() + "\n" +
-                       open(os.path.join("docs", "HISTORY.txt")).read(),
-      # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[
-        "Framework :: Plone",
-        "Programming Language :: Python",
-        ],
-      keywords='zope global request',
-      author='Martin Aspeli',
-      author_email='optilude at gmail.com',
-      url='http://pypi.python.org/pypi/five.globalrequest',
-      license='ZPL',
-      packages=find_packages(exclude=['ez_setup']),
-      namespace_packages=['five'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          'setuptools',
-          'zope.globalrequest',
-          'Zope2',
-      ],
-      entry_points="""
-      """,
-      )



More information about the checkins mailing list