Changeset 1027
- Timestamp:
- 12/12/07 08:37:13
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
qPloneSkinDump/branches/plone_3.0/skin_template/utils.py
r1024 r1027 116 116 # Get temp folder-object 117 117 if temp_id not in portal_objects: 118 portal.invokeFactory(' Folder', id=temp_id)118 portal.invokeFactory('Large Plone Folder', id=temp_id) 119 119 print >> import_out, "! Created '%%s' backup directory with same-ids " \ 120 120 "objects from portal root." %% temp_id qPloneSkinDump/branches/plone_3.0/skins/qploneskindump/qploneskindump_config.cpt
r999 r1027 334 334 <fieldset id="fieldset-resources" 335 335 tal:define="isFirst python:not request.get('dump_registries', None); 336 checked_css python:test(isFirst, 'checked', test(request.has_key('DumpCSSRegistry'), 'checked', nothing));337 checked_js python:test(isFirst, 'checked', test(request.has_key('DumpJSRegistry'), 'checked', nothing));">336 checked_css python:test(isFirst, 'checked', test(request.has_key('DumpCSSRegistry'), 'checked', None)); 337 checked_js python:test(isFirst, 'checked', test(request.has_key('DumpJSRegistry'), 'checked', None));"> 338 338 <legend id="fieldsetlegend-resources" class="DoesExportResources"> 339 339 <label for="DoesExportResources" … … 356 356 type="checkbox" 357 357 name="DumpCSSRegistry" 358 id="DumpCSSRegistry" 358 359 value="0" 359 360 tal:attributes="checked checked_css" 360 361 /> 361 <label class="DumpCSSRegistry_title" 362 <label class="DumpCSSRegistry_title" for="DumpCSSRegistry" 362 363 i18n:translate="label_DumpCSSRegistry">Dump portal_css registry.</label> 363 364 </div> … … 368 369 type="checkbox" 369 370 name="DumpJSRegistry" 371 id="DumpJSRegistry" 370 372 value="0" 371 373 tal:attributes="checked checked_js" 372 374 /> 373 <label class="DumpJSRegistry_title" 375 <label class="DumpJSRegistry_title" for="DumpJSRegistry" 374 376 i18n:translate="label_DumpJSRegistry">Dump portal_javascripts registry.</label> 375 377 </div>
