[Checkins] SVN: zope.schema/trunk/ Prep for historical releases.

Tres Seaver tseaver at palladion.com
Tue Apr 4 16:21:25 EDT 2006


Log message for revision 66444:
  Prep for historical releases.

Changed:
  A   zope.schema/trunk/CHANGES.txt
  U   zope.schema/trunk/INSTALL.txt
  A   zope.schema/trunk/README.txt
  U   zope.schema/trunk/setup.py

-=-
Added: zope.schema/trunk/CHANGES.txt
===================================================================
--- zope.schema/trunk/CHANGES.txt	2006-04-04 20:17:17 UTC (rev 66443)
+++ zope.schema/trunk/CHANGES.txt	2006-04-04 20:21:25 UTC (rev 66444)
@@ -0,0 +1,32 @@
+zope.schema Package Changelog
+=============================
+
+zope.schema version 3.2.1 (2006/03/26)
+--------------------------------------
+
+- Corresponds to the verison of the zope.schema package shipped as part of
+  the Zope 3.2.1 release.
+
+zope.schema version 3.2.0 (2006/01/05)
+--------------------------------------
+
+- Corresponds to the verison of the zope.schema package shipped as part of
+  the Zope 3.2.0 release.
+
+zope.schema version 3.1.0 (2005/10/03)
+--------------------------------------
+
+- Corresponds to the verison of the zope.schema package shipped as part of
+  the Zope 3.1.0 release.
+
+zope.schema version 3.0.1 (2005/07/27)
+--------------------------------------
+
+- Corresponds to the verison of the zope.schema package shipped as part of
+  the Zope X3.0.1 release.
+
+zope.schema version 3.0.0 (2004/11/07)
+--------------------------------------
+
+- Corresponds to the verison of the zope.schema package shipped as part of
+  the Zope X3.0.0 release.


Property changes on: zope.schema/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.schema/trunk/INSTALL.txt
===================================================================
--- zope.schema/trunk/INSTALL.txt	2006-04-04 20:17:17 UTC (rev 66443)
+++ zope.schema/trunk/INSTALL.txt	2006-04-04 20:21:25 UTC (rev 66444)
@@ -52,7 +52,7 @@
 and have it install the "testing dependencies."  Today, the workaround
 is to install it manually:
 
-  $ /path/to/easy_install --find-links="...." zope-testing
+  $ /path/to/easy_install --find-links="...." zope.schema
 
 You can then run the tests (finally) from the checkout directory:
 
@@ -67,7 +67,7 @@
 
 You can also install it from a source distribution:
 
-  $ /path/to/easy_install --find-links="...." -eb src zope-schema
+  $ /path/to/easy_install --find-links="...." -eb src zope.schema
   $ cd src/zope.schema
   $ /path/to/your/python setup.py devel
 
@@ -78,6 +78,6 @@
 Install the package as a "binary egg" (which also installs its "hard"
 dependencies):
 
-  $ /path/to/easy_install --find-links="...." zope-schema
+  $ /path/to/easy_install --find-links="...." zope.schema
 
 

Added: zope.schema/trunk/README.txt
===================================================================
--- zope.schema/trunk/README.txt	2006-04-04 20:17:17 UTC (rev 66443)
+++ zope.schema/trunk/README.txt	2006-04-04 20:21:25 UTC (rev 66444)
@@ -0,0 +1,45 @@
+zope.schema Package Readme
+==========================
+
+Overview
+--------
+
+Schemas extend the notion of interfaces to detailed descriptions of Attributes
+(but not methods). Every schema is an interface and specifies the public
+fields of an object. A *field* roughly corresponds to an attribute of a
+python object. But a Field provides space for at least a title and a
+description. It can also constrain its value and provide a validation method.
+Besides you can optionally specify characteristics such as its value being
+read-only or not required.
+
+See 'src/zope/schema/README.txt' for more information.
+
+Changes
+-------
+
+See CHANGES.txt.
+
+Installation
+------------
+
+See INSTALL.txt.
+
+
+Developer Resources
+-------------------
+
+- Subversion browser:
+
+  http://svn.zope.org/zope.schema/
+
+- Read-only Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.schema/trunk
+
+- Writable Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.schema/trunk
+
+- Note that the 'src/zope/schema' package is acutally a 'svn:externals' link
+  to the corresponding package in the Zope3 trunk (or to a specific tag,
+  for released versions of the package).


Property changes on: zope.schema/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.schema/trunk/setup.py
===================================================================
--- zope.schema/trunk/setup.py	2006-04-04 20:17:17 UTC (rev 66443)
+++ zope.schema/trunk/setup.py	2006-04-04 20:21:25 UTC (rev 66444)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -30,7 +30,6 @@
       description='Zope3 Data Schemas',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
       
       packages=['zope', 'zope.schema'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},



More information about the Checkins mailing list