Changeset 788
- Timestamp:
- 02/19/07 05:53:09
- Files:
-
- qPloneSkinDump/trunk/HISTORY.txt (modified) (1 diff)
- qPloneSkinDump/trunk/utils.py (modified) (3 diffs)
- qPloneSkinDump/trunk/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneSkinDump/trunk/HISTORY.txt
r787 r788 1 qPloneSkinDump 0.7.2 2 - Fixed id.extension - meta_type confusing bug. 3 1 4 qPloneSkinDump 0.7.1 2 5 - Fixed bug of dumping to new Skin Product objects with none ascii qPloneSkinDump/trunk/utils.py
r787 r788 17 17 'Page Template', 18 18 'Script (Python)' ] 19 _acceptable_meta_types = _write_custom_meta_type_list + ['Folder'] 19 20 ospJoin = os.path.join 20 21 … … 66 67 meta_type = o.meta_type 67 68 id = get_id(o) 69 if meta_type in _acceptable_meta_types: 70 # Adding to .objects all acceptable meta_types. 71 # Fixing bug of id-meta_type confusing. 72 obj_meta[id] = meta_type 68 73 if meta_type == 'Folder': 69 74 # very plone specific … … 80 85 #writeProps( o, skinpath ) # write object's properties 81 86 # extract content from object(depend on metatype) and write it to the file 82 if id.find('.') < 0 : obj_meta[id] = meta_type83 87 writeFileContent( o, skinpath, getData(o, meta_type) ) 84 88 deletelist.append( o.getId() ) qPloneSkinDump/trunk/version.txt
r787 r788 1 0.7. 11 0.7.2
