Changeset 1320
- Timestamp:
- 10/10/08 10:38:34
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
quintagroup.transmogrifier/trunk/quintagroup/transmogrifier/import.cfg
r1319 r1320 3 3 reader 4 4 manifestimport 5 # substitution6 5 constructor 7 # xslt8 6 datacorrector 9 7 demarshaller … … 18 16 blueprint = quintagroup.transmogrifier.manifestimport 19 17 20 # standart import pipiline configuration doesn't need this section21 # this would go to more specific package22 [substitution]23 blueprint = collective.transmogrifier.substitution24 key = _type25 Blog = Weblog26 BlogFolder = Folder27 BlogEntry = WeblogEntry28 PloneFormMailer = FormFolder29 30 18 [constructor] 31 19 blueprint = collective.transmogrifier.sections.constructor 32 33 # this too34 [xslt]35 blueprint = quintagroup.transmogrifier.xslt36 from-key = _old_type37 to-key = _type38 20 39 21 [datacorrector] quintagroup.transmogrifier/trunk/quintagroup/transmogrifier/patches.py
r1314 r1320 71 71 continue 72 72 # directories have trailing '/' character and we need to remove it 73 name s.rstrip('/')73 name.rstrip('/') 74 74 names.append(name) 75 75
