Commit 55f3a377 authored by Amos Latteier's avatar Amos Latteier

Added API documentation for the ZTUtils.Batch class. I don't plan on adding...

Added API documentation for the ZTUtils.Batch class. I don't plan on adding docs for other ZTUtils classes yet, since I think that they aren't are totally usuable or stable yet. Of course, I could be wrong.
parent c555715b
"""
ZTUtils
Page Template Utilities
"""
class Batch:
"""
Batch - a section of a large sequence.
You can use batches to break up large sequences (such as search
results) over several pages.
Batches provide Page Templates with similar functions as those
built-in to <dtml-in>.
You can access elements of a batch just as you access elements of
a list. For example::
>>> b=Batch(range(100), 10)
>>> b[5]
4
>>> b[10]
IndexError: list index out of range
Batches have these public attributes:
size -- The desired size. Note that this can be different than the
actual length of the batch due to orphan settings.
start -- The first element number (counting from 1).
first -- The first element index (counting from 0, this is start -
1).
end -- The last element number (counting from 1).
orphan -- The desired minimum batch size. This controls how
sequences are split into batches. If a batch smaller than the
orphan size would occur, then no split is performed, and a batch
larger than the batch size results.
overlap -- The number of elements that overlap between batches.
length -- The actual length of the batch. Note that this can be
different than size due to orphan settings.
previous -- The previous batch or None if this is the first batch.
next -- The next batch or None if this is the last batch.
"""
def __init__(self, sequence, size, start=0, end=0,
orphan=0, overlap=0):
"""
Creates a new batch given a sequence and a desired batch
size.
sequence -- The full sequence.
size -- The desired batch size.
start -- The index of the start of the batch (counting from 0).
end -- The index of the end of the batch (counting from 0).
orphan -- The desired minimum batch size. This controls how
sequences are split into batches. If a batch smaller than the
orphan size would occur, then no split is performed, and a
batch larger than the batch size results.
overlap -- The number of elements that overlap between
batches.
"""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment