A Python sript to get the base_properties.props
The FSDump Utility does not export the base_properties.props file to the filesystem. Use this script to create it.
To get a skin to your filesytem yo can use:
http://zope.org/Members/tseaver/FSDump/
and a little python script to read out the base_properties
just cut and paste the output into base_properties.props
For the skin itself use:
http://www.mxm.dk/products/public/MinimalPloneSkin/
as the skeleton
http://zope.org/Members/tseaver/FSDump/
and a little python script to read out the base_properties
bpIds = container.base_properties.propertyItems()
for myId in bpIds:
print "%s:string=%s" % myId
return printed
just cut and paste the output into base_properties.props
For the skin itself use:
http://www.mxm.dk/products/public/MinimalPloneSkin/
as the skeleton
