[Checkins] SVN: z3c.batching/tags/1.0.1/ tag for release

Nikolay Kim fafhrd at datacom.kz
Tue Sep 9 06:34:37 EDT 2008


Log message for revision 90992:
  tag for release

Changed:
  A   z3c.batching/tags/1.0.1/
  D   z3c.batching/tags/1.0.1/CHANGES.txt
  A   z3c.batching/tags/1.0.1/CHANGES.txt
  D   z3c.batching/tags/1.0.1/setup.py
  A   z3c.batching/tags/1.0.1/setup.py
  D   z3c.batching/tags/1.0.1/src/z3c/batching/README.txt
  A   z3c.batching/tags/1.0.1/src/z3c/batching/README.txt

-=-
Copied: z3c.batching/tags/1.0.1 (from rev 90990, z3c.batching/trunk)


Property changes on: z3c.batching/tags/1.0.1
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: z3c.batching/tags/1.0.1/CHANGES.txt
===================================================================
--- z3c.batching/trunk/CHANGES.txt	2008-09-09 09:39:10 UTC (rev 90990)
+++ z3c.batching/tags/1.0.1/CHANGES.txt	2008-09-09 10:34:36 UTC (rev 90992)
@@ -1,8 +0,0 @@
-=======
-CHANGES
-=======
-
-1.0.0 (2008-02-18)
-------------------
-
-- Initial release.

Copied: z3c.batching/tags/1.0.1/CHANGES.txt (from rev 90991, z3c.batching/trunk/CHANGES.txt)
===================================================================
--- z3c.batching/tags/1.0.1/CHANGES.txt	                        (rev 0)
+++ z3c.batching/tags/1.0.1/CHANGES.txt	2008-09-09 10:34:36 UTC (rev 90992)
@@ -0,0 +1,14 @@
+=======
+CHANGES
+=======
+
+1.0.1 (2008-09-09)
+------------------
+
+- Fixed bug with batches slicing.
+
+
+1.0.0 (2008-02-18)
+------------------
+
+- Initial release.

Deleted: z3c.batching/tags/1.0.1/setup.py
===================================================================
--- z3c.batching/trunk/setup.py	2008-09-09 09:39:10 UTC (rev 90990)
+++ z3c.batching/tags/1.0.1/setup.py	2008-09-09 10:34:36 UTC (rev 90992)
@@ -1,61 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Corporation 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 for z3c.batching package
-
-$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.batching',
-      version = '1.1.0dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description='Batching',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed Dcoumentation\n' +
-          '======================\n'
-          + '\n\n' +
-          read('src', 'z3c', 'batching', 'README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 batching",
-      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://cheeseshop.python.org/pypi/z3c.batching',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['z3c'],
-      install_requires = ['setuptools',
-                          'zope.interface',
-                          'zope.schema',
-                          ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: z3c.batching/tags/1.0.1/setup.py (from rev 90991, z3c.batching/trunk/setup.py)
===================================================================
--- z3c.batching/tags/1.0.1/setup.py	                        (rev 0)
+++ z3c.batching/tags/1.0.1/setup.py	2008-09-09 10:34:36 UTC (rev 90992)
@@ -0,0 +1,61 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation 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 for z3c.batching package
+
+$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.batching',
+      version = '1.0.1',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Batching',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '======================\n'
+          + '\n\n' +
+          read('src', 'z3c', 'batching', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 batching",
+      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://cheeseshop.python.org/pypi/z3c.batching',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['z3c'],
+      install_requires = ['setuptools',
+                          'zope.interface',
+                          'zope.schema',
+                          ],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: z3c.batching/tags/1.0.1/src/z3c/batching/README.txt
===================================================================
--- z3c.batching/trunk/src/z3c/batching/README.txt	2008-09-09 09:39:10 UTC (rev 90990)
+++ z3c.batching/tags/1.0.1/src/z3c/batching/README.txt	2008-09-09 10:34:36 UTC (rev 90992)
@@ -1,231 +0,0 @@
-===============
-Simple Batching
-===============
-
-This module implements a simple batching mechanism that allows you to split a
-large sequence into smaller batches. Let's start by creating a simple list,
-which will be our full sequence:
-
-Batch on empty root
-
-  >>> from z3c.batching.batch import Batch
-  >>> batch = Batch([], size=3)
-  >>> len(batch)
-  0
-  >>> batch.firstElement
-  Traceback (most recent call last):
-  ...
-  IndexError: ...
-
-  >>> batch.lastElement
-  Traceback (most recent call last):
-  ...
-  IndexError: ...
-
-  >>> batch[0]
-  Traceback (most recent call last):
-  ...
-  IndexError: ...
-
-  >>> batch.next is None
-  True
-
-  >>> batch.previous is None
-  True
-
-
-  >>> sequence = ['one', 'two', 'three', 'four', 'five', 'six', 'seven',
-  ...             'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen']
-
-We can now create a batch for this sequence. Let's make our batch size 3:
-
-  >>> batch = Batch(sequence, size=3)
-
-The first argument to the batch is always the full sequence. If no start
-element is specified, the batch starts at the first element:
-
-  >>> list(batch)
-  ['one', 'two', 'three']
-
-The start index is commonly specified in the constructor though:
-
-  >>> batch = Batch(sequence, start=6, size=3)
-  >>> list(batch)
-  ['seven', 'eight', 'nine']
-
-Note that the start is an index and starts at zero. If the start index is
-greater than the largest index of the sequence, an index error is raised:
-
-  >>> Batch(sequence, start=15, size=3)
-  Traceback (most recent call last):
-  ...
-  IndexError: start index key out of range
-
-A batch implements the finite sequence interface and thus supports some
-standard methods. For example, you can ask the batch for its length:
-
-  >>> len(batch)
-  3
-
-Note that the length returns the true size of the batch, not the size we asked
-for:
-
-  >>> len(Batch(sequence, start=12, size=3))
-  1
-
-You can also get an element by index, which is relative to the batch:
-
-  >>> batch[0]
-  'seven'
-  >>> batch[1]
-  'eight'
-  >>> batch[2]
-  'nine'
-
-Slicing 
-
-  >>> batch[:1]
-  ['seven']
-
-  >>> batch[1:2]
-  ['eight']
-
-  >>> batch[1:]	
-  ['eight', 'nine']
-
-  >>> batch[:]
-  ['seven', 'eight', 'nine']
-
-  >>> batch[10:]
-  []
-  
-
-If you ask for index that is out of range, an index error is raised:
-
-  >>> batch[3]
-  Traceback (most recent call last):
-  ...
-  IndexError: batch index out of range
-
-You can also iterate through the batch:
-
-  >>> iterator = iter(batch)
-  >>> iterator.next()
-  'seven'
-  >>> iterator.next()
-  'eight'
-  >>> iterator.next()
-  'nine'
-
-Batch also implement some of IReadSequence interface
-
-  >>> 'eight' in batch
-  True
-
-  >>> 'ten' in batch
-  False
-
-  >>> batch == Batch(sequence, start=6, size=3)
-  True
-
-  >>> batch != Batch(sequence, start=6, size=3)
-  False
-
-  >>> batch != Batch(sequence, start=3, size=3)
-  True
-
-Besides all of those common API methods, there are several properties that were
-designed to make your life simpler. The start and size are specified:
-
-  >>> batch.start
-  6
-  >>> batch.size
-  3
-
-The end index of the batch is immediately computed:
-
-  >>> batch.end
-  8
-
-The UI often requires that the number of the btach and the total number of
-batches is computed:
-
-  >>> batch.number
-  3
-  >>> batch.total
-  5
-
-You can also ask for the next batch:
-
-  >>> batch.next
-  <Batch start=9, size=3>
-
-If the current batch is the last one, the next batch is None:
-
-  >>> Batch(sequence, start=12, size=3).next is None
-  True
-
-The previous batch shows the previous batch:
-
-  >>> batch.previous
-  <Batch start=3, size=3>
-
-If the current batch is the first one, the previous batch is None:
-
-  >>> Batch(sequence, start=0, size=3).previous is None
-  True
-
-The final two properties deal with the elements within the batch. They ask for
-the first and last element of the batch:
-
-  >>> batch.firstElement
-  'seven'
-
-  >>> batch.lastElement
-  'nine'
-
-
-Total batches
-
-  >>> batch = Batch(sequence[:-1], size=3)
-  >>> batch.total
-  4
-
-We can get access to all batches
-
-  >>> len(batch.batches)
-  4
-
-  >>> batch.batches[0]
-  <Batch start=0, size=3>
-
-  >>> batch.batches[3]
-  <Batch start=9, size=3>
-
-  >>> batch.batches[4]
-  Traceback (most recent call last):
-  ...
-  IndexError: ...
-
-  >>> batch.batches[-1]
-  <Batch start=9, size=3>
-
-  >>> batch.batches[-2]
-  <Batch start=6, size=3>
-
-Slicing
-
-  >>> batch.batches[:1]
-  [<Batch start=0, size=3>]
-	
-  >>> batch.batches[:]
-  [<Batch start=0, size=3>, <Batch start=3, size=3>, <Batch start=6, size=3>]
-	
-  >>> batch.batches[1:2]
-  [<Batch start=3, size=3>]
-	
-  >>> batch.batches[1:]
-  [<Batch start=3, size=3>, <Batch start=6, size=3>]
-
-  >>> batch.batches[10:]
-  []

Copied: z3c.batching/tags/1.0.1/src/z3c/batching/README.txt (from rev 90991, z3c.batching/trunk/src/z3c/batching/README.txt)
===================================================================
--- z3c.batching/tags/1.0.1/src/z3c/batching/README.txt	                        (rev 0)
+++ z3c.batching/tags/1.0.1/src/z3c/batching/README.txt	2008-09-09 10:34:36 UTC (rev 90992)
@@ -0,0 +1,231 @@
+===============
+Simple Batching
+===============
+
+This module implements a simple batching mechanism that allows you to split a
+large sequence into smaller batches. Let's start by creating a simple list,
+which will be our full sequence:
+
+Batch on empty root
+
+  >>> from z3c.batching.batch import Batch
+  >>> batch = Batch([], size=3)
+  >>> len(batch)
+  0
+  >>> batch.firstElement
+  Traceback (most recent call last):
+  ...
+  IndexError: ...
+
+  >>> batch.lastElement
+  Traceback (most recent call last):
+  ...
+  IndexError: ...
+
+  >>> batch[0]
+  Traceback (most recent call last):
+  ...
+  IndexError: ...
+
+  >>> batch.next is None
+  True
+
+  >>> batch.previous is None
+  True
+
+
+  >>> sequence = ['one', 'two', 'three', 'four', 'five', 'six', 'seven',
+  ...             'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen']
+
+We can now create a batch for this sequence. Let's make our batch size 3:
+
+  >>> batch = Batch(sequence, size=3)
+
+The first argument to the batch is always the full sequence. If no start
+element is specified, the batch starts at the first element:
+
+  >>> list(batch)
+  ['one', 'two', 'three']
+
+The start index is commonly specified in the constructor though:
+
+  >>> batch = Batch(sequence, start=6, size=3)
+  >>> list(batch)
+  ['seven', 'eight', 'nine']
+
+Note that the start is an index and starts at zero. If the start index is
+greater than the largest index of the sequence, an index error is raised:
+
+  >>> Batch(sequence, start=15, size=3)
+  Traceback (most recent call last):
+  ...
+  IndexError: start index key out of range
+
+A batch implements the finite sequence interface and thus supports some
+standard methods. For example, you can ask the batch for its length:
+
+  >>> len(batch)
+  3
+
+Note that the length returns the true size of the batch, not the size we asked
+for:
+
+  >>> len(Batch(sequence, start=12, size=3))
+  1
+
+You can also get an element by index, which is relative to the batch:
+
+  >>> batch[0]
+  'seven'
+  >>> batch[1]
+  'eight'
+  >>> batch[2]
+  'nine'
+
+Slicing 
+
+  >>> batch[:1]
+  ['seven']
+
+  >>> batch[1:2]
+  ['eight']
+
+  >>> batch[1:]	
+  ['eight', 'nine']
+
+  >>> batch[:]
+  ['seven', 'eight', 'nine']
+
+  >>> batch[10:]
+  []
+  
+
+If you ask for index that is out of range, an index error is raised:
+
+  >>> batch[3]
+  Traceback (most recent call last):
+  ...
+  IndexError: batch index out of range
+
+You can also iterate through the batch:
+
+  >>> iterator = iter(batch)
+  >>> iterator.next()
+  'seven'
+  >>> iterator.next()
+  'eight'
+  >>> iterator.next()
+  'nine'
+
+Batch also implement some of IReadSequence interface
+
+  >>> 'eight' in batch
+  True
+
+  >>> 'ten' in batch
+  False
+
+  >>> batch == Batch(sequence, start=6, size=3)
+  True
+
+  >>> batch != Batch(sequence, start=6, size=3)
+  False
+
+  >>> batch != Batch(sequence, start=3, size=3)
+  True
+
+Besides all of those common API methods, there are several properties that were
+designed to make your life simpler. The start and size are specified:
+
+  >>> batch.start
+  6
+  >>> batch.size
+  3
+
+The end index of the batch is immediately computed:
+
+  >>> batch.end
+  8
+
+The UI often requires that the number of the btach and the total number of
+batches is computed:
+
+  >>> batch.number
+  3
+  >>> batch.total
+  5
+
+You can also ask for the next batch:
+
+  >>> batch.next
+  <Batch start=9, size=3>
+
+If the current batch is the last one, the next batch is None:
+
+  >>> Batch(sequence, start=12, size=3).next is None
+  True
+
+The previous batch shows the previous batch:
+
+  >>> batch.previous
+  <Batch start=3, size=3>
+
+If the current batch is the first one, the previous batch is None:
+
+  >>> Batch(sequence, start=0, size=3).previous is None
+  True
+
+The final two properties deal with the elements within the batch. They ask for
+the first and last element of the batch:
+
+  >>> batch.firstElement
+  'seven'
+
+  >>> batch.lastElement
+  'nine'
+
+
+Total batches
+
+  >>> batch = Batch(sequence[:-1], size=3)
+  >>> batch.total
+  4
+
+We can get access to all batches
+
+  >>> len(batch.batches)
+  4
+
+  >>> batch.batches[0]
+  <Batch start=0, size=3>
+
+  >>> batch.batches[3]
+  <Batch start=9, size=3>
+
+  >>> batch.batches[4]
+  Traceback (most recent call last):
+  ...
+  IndexError: ...
+
+  >>> batch.batches[-1]
+  <Batch start=9, size=3>
+
+  >>> batch.batches[-2]
+  <Batch start=6, size=3>
+
+Slicing
+
+  >>> batch.batches[:1]
+  [<Batch start=0, size=3>]
+	
+  >>> batch.batches[:]
+  [<Batch start=0, size=3>, <Batch start=3, size=3>, <Batch start=6, size=3>, <Batch start=9, size=3>]
+	
+  >>> batch.batches[1:2]
+  [<Batch start=3, size=3>]
+	
+  >>> batch.batches[1:]
+  [<Batch start=3, size=3>, <Batch start=6, size=3>, <Batch start=9, size=3>]
+
+  >>> batch.batches[10:]
+  []



More information about the Checkins mailing list