source: waeup/branches/ulif-namespace/src/sirp/csvfile/meta.py @ 4915

Last change on this file since 4915 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

File size: 433 bytes
Line 
1"""Meta configuration for waeup.csvfile components.
2"""
3import martian
4import waeup.csvfile.csvfile
5from waeup.csvfile import CSVFile
6
7# This grokker fills the registry on startup, with any class that is
8# derived from `CSVFileWrapper`...
9class CSVFileWrapperGrokker(martian.ClassGrokker):
10    martian.component(CSVFile)
11    def execute(self, klass, **kw):
12        waeup.csvfile.csvfile.csvwrappers.append(klass)
13        return True
Note: See TracBrowser for help on using the repository browser.