[Checkins] SVN: zc.objectlog/trunk/ preparation to make a release.

Satchidanand Haridas satchit at zope.com
Fri Feb 15 11:01:04 EST 2008


Log message for revision 83867:
  preparation to make a release.
  
  

Changed:
  A   zc.objectlog/trunk/CHANGES.txt
  A   zc.objectlog/trunk/README.txt
  U   zc.objectlog/trunk/setup.py

-=-
Added: zc.objectlog/trunk/CHANGES.txt
===================================================================
--- zc.objectlog/trunk/CHANGES.txt	                        (rev 0)
+++ zc.objectlog/trunk/CHANGES.txt	2008-02-15 16:01:04 UTC (rev 83867)
@@ -0,0 +1,4 @@
+0.1 (2006-02-15)
+----------------
+
+* Initial release (removed `dev` status)

Added: zc.objectlog/trunk/README.txt
===================================================================
--- zc.objectlog/trunk/README.txt	                        (rev 0)
+++ zc.objectlog/trunk/README.txt	2008-02-15 16:01:04 UTC (rev 83867)
@@ -0,0 +1,21 @@
+The objectlog package provides a customizable log for a single object.  The
+system was designed to provide information for a visual log of important
+object changes and to provide analyzable information for metrics.
+
+- It provides automatic recording for each log entry of a timestamp and the
+  principals in the request when the log was made.
+
+- Given a schema of data to collect about the object, it automatically
+  calculates and stores changesets from the last log entry, primarily to
+  provide a quick and easy answer to the question "what changed?" and
+  secondarily to reduce database size.
+
+- It accepts optional summary and detail values that allow the system or users
+  to annotate the entries with human-readable messages.
+
+- It allows each log entry to be annotated with zero or more marker interfaces
+  so that log entries may be classified with an interface.
+
+For more information about using zc.objectlog, see:
+
+    src/zc/objectlog/log.txt

Modified: zc.objectlog/trunk/setup.py
===================================================================
--- zc.objectlog/trunk/setup.py	2008-02-15 15:50:41 UTC (rev 83866)
+++ zc.objectlog/trunk/setup.py	2008-02-15 16:01:04 UTC (rev 83867)
@@ -1,8 +1,16 @@
 from setuptools import setup, find_packages
 
+long_description = open("src/zc/objectlog/log.txt").read()
+
 setup(
     name="zc.objectlog",
     version="0.1dev",
+    license="ZPL 2.1",
+    author="Zope Corporation",
+    author_email="zope-dev at zope.org",
+    description=open('README.txt').read(),
+    long_description=long_description,
+    keywords="zope zope3 logging"
     packages=find_packages('src'),
     package_dir={'':'src'},
     namespace_packages=['zc'],



More information about the Checkins mailing list