aboutsummaryrefslogtreecommitdiff
path: root/devel/py-AddOns
Commit message (Collapse)AuthorAgeFilesLines
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276999
* - Update to 0.7Martin Wilke2009-08-132-4/+4
| | | | | | | | PR: 137660 Submitted by: Wen Heping <wenheping@gmail.com> (maintainer) Notes: svn path=/head/; revision=239448
* py-AddOn classes are like dynamic mixins, but with their own private attributeMartin Wilke2009-07-013-0/+41
and method namespaces. A concern implemented using add-ons can be added at runtime to any object that either has a writable __dict__ attribute, or is weak-referenceable. AddOn classes are also like adapters, but rather than creating a new instance each time you ask for one, an existing instance is returned if possible. In this way, add-ons can keep track of ongoing state. For example, a Persistence add-on might keep track of whether its subject has been saved to disk. WWW: http://www.python.org/pypi/AddOns PR: ports/135947 Submitted by: Wen Heping <wenheping at gmail.com> Notes: svn path=/head/; revision=236852