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

Stephen Richter cvs-admin at zope.org
Fri Mar 1 15:43:51 UTC 2013


Log message for revision 129966:
  Moved to GitHub.

Changed:
  D   z3c.evalexception/trunk/COPYRIGHT.txt
  D   z3c.evalexception/trunk/LICENSE.txt
  A   z3c.evalexception/trunk/MOVED_TO_GITHUB
  D   z3c.evalexception/trunk/README.txt
  D   z3c.evalexception/trunk/buildout.cfg
  D   z3c.evalexception/trunk/setup.py
  D   z3c.evalexception/trunk/test.ini
  D   z3c.evalexception/trunk/z3c/

-=-
Deleted: z3c.evalexception/trunk/COPYRIGHT.txt
===================================================================
--- z3c.evalexception/trunk/COPYRIGHT.txt	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/COPYRIGHT.txt	2013-03-01 15:43:51 UTC (rev 129966)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: z3c.evalexception/trunk/LICENSE.txt
===================================================================
--- z3c.evalexception/trunk/LICENSE.txt	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/LICENSE.txt	2013-03-01 15:43:51 UTC (rev 129966)
@@ -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.evalexception/trunk/MOVED_TO_GITHUB
===================================================================
--- z3c.evalexception/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ z3c.evalexception/trunk/MOVED_TO_GITHUB	2013-03-01 15:43:51 UTC (rev 129966)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/z3c.evalexception
\ No newline at end of file

Deleted: z3c.evalexception/trunk/README.txt
===================================================================
--- z3c.evalexception/trunk/README.txt	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/README.txt	2013-03-01 15:43:51 UTC (rev 129966)
@@ -1,58 +0,0 @@
-``z3c.evalexception`` provides two WSGI middlewares for debugging web
-applications running on the ``zope.publisher`` object publishing
-framework (e.g. Zope 3).  Both middlewares will intercept an exception
-thrown by the application and provide means for debugging.
-
-Interactive AJAX debugger
-=========================
-
-``z3c.evalexception.ZopeEvalException`` lets you interactively debug
-exceptions from a browser.  It is a small wrapper around the
-``EvalException`` middleware from ``paste.evalexception``.  You can
-easily refer to it in a PasteDeploy-style configuration file using the
-``ajax`` entry-point::
-
-  [filter-app:main]
-  use = egg:z3c.evalexception#ajax
-  next = zope
-
-  [app:zope]
-  use = egg:YourApp
-
-  [server:main]
-  use = egg:Paste#http
-  host = 127.0.0.1
-  port = 8080
-
-Post-mortem pdb
-===============
-
-``z3c.evalexception.PostMortemDebug`` invokes pdb's post-mortem mode
-when the application has thrown an exception.  You can refer to it in
-a PasteDeploy-style configuration file using the ``pdb`` entry-point::
-
-  [filter-app:main]
-  use = egg:z3c.evalexception#pdb
-  next = zope
-
-  [app:zope]
-  use = egg:YourApp
-
-  [server:main]
-  use = egg:Paste#http
-  host = 127.0.0.1
-  port = 8080
-
-Changes
-=======
-
-2.0 (2007-08-23)
-----------------
-
-Added the ``PostMortemDebug`` (pdb) middelware.
-
-1.0 (2007-06-02)
-----------------
-
-Initial release, featuring the Zope 3-compatible interactive AJAX
-debugger from Paste.

Deleted: z3c.evalexception/trunk/buildout.cfg
===================================================================
--- z3c.evalexception/trunk/buildout.cfg	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/buildout.cfg	2013-03-01 15:43:51 UTC (rev 129966)
@@ -1,10 +0,0 @@
-[buildout]
-parts = app
-develop = .
-
-[app]
-recipe = zc.recipe.egg
-eggs = z3c.evalexception
-       Paste
-       PasteScript
-       PasteDeploy

Deleted: z3c.evalexception/trunk/setup.py
===================================================================
--- z3c.evalexception/trunk/setup.py	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/setup.py	2013-03-01 15:43:51 UTC (rev 129966)
@@ -1,32 +0,0 @@
-from setuptools import setup, find_packages
-
-setup(name='z3c.evalexception',
-      version = '2.0',
-      license='ZPL 2.1',
-      description="Debugging middlewares for zope.publisher-based web "
-      "applications",
-      author='Philipp von Weitershausen',
-      author_email='philipp at weitershausen.de',
-      long_description=open('README.txt').read(),
-      classifiers = ['Development Status :: 5 - Production/Stable',
-                     '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',
-                     'Framework :: Paste',
-                     ],
-
-      packages=find_packages(),
-      namespace_packages=['z3c'],
-      install_requires=['setuptools', 'Paste', 'zope.security'],
-      zip_safe=True,
-      entry_points="""
-      [paste.filter_app_factory]
-      main = z3c.evalexception:zope_eval_exception
-      ajax = z3c.evalexception:zope_eval_exception
-      pdb = z3c.evalexception:post_mortem_debug
-      """
-      )

Deleted: z3c.evalexception/trunk/test.ini
===================================================================
--- z3c.evalexception/trunk/test.ini	2013-03-01 15:43:46 UTC (rev 129965)
+++ z3c.evalexception/trunk/test.ini	2013-03-01 15:43:51 UTC (rev 129966)
@@ -1,21 +0,0 @@
-[composite:main]
-use = egg:Paste#urlmap
-/ = test
-/ajax = ajax
-/pdb = pdb
-
-[filter-app:ajax]
-use = egg:z3c.evalexception#ajax
-next = test
-
-[filter-app:pdb]
-use = egg:z3c.evalexception#pdb
-next = test
-
-[app:test]
-paste.app_factory = z3c.evalexception:test_application_factory
-
-[server:main]
-use = egg:Paste#http
-host = 127.0.0.1
-port = 8080



More information about the checkins mailing list