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 | """ |
---|
3 | import martian |
---|
4 | import waeup.csvfile.csvfile |
---|
5 | from waeup.csvfile import CSVFile |
---|
6 | |
---|
7 | # This grokker fills the registry on startup, with any class that is |
---|
8 | # derived from `CSVFileWrapper`... |
---|
9 | class 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.