Commit fbcd15f4 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Add factory_type_information for convenience. Fix the comment for...

Add factory_type_information for convenience. Fix the comment for TemplateTool. Use application/x-erp5-business-template instead of application/erp5-business-template.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1112 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f04226bd
......@@ -55,47 +55,19 @@ class LocalConfiguration(Implicit):
class TemplateTool (BaseTool):
"""
The RulesTool implements portal object
transformation policies.
TemplateTool manages Business Templates.
An object transformation template is defined by
a domain and a transformation pattent:
TemplateTool provides some methods to deal with Business Templates:
The domain is defined as:
- download
- the meta_type it applies to
- publish
- the portal_type it applies to
- install
- the conditions of application (category membership, value range,
security, function, etc.)
- update
The transformation template is defined as:
- a tree of portal_types starting on the object itself
- default values for each node of the tree, incl. the root itself
When a transformation is triggered, it will check the existence of
each node and eventually update values
Transformations are very similar to XSLT in the XML world.
Examples of applications:
- generate accounting movements from a stock movement
- generate a birthday event from a person
ERP5 main application : generate submovements from movements
according to templates. Allows to parametrize modules
such as payroll.
Try to mimic: XSL semantics
Status : OK
NEW NAME : Rules Tool
- save
"""
id = 'portal_templates'
meta_type = 'ERP5 Template Tool'
......@@ -108,6 +80,39 @@ class TemplateTool (BaseTool):
security.declareProtected( Permissions.ManagePortal, 'manage_overview' )
manage_overview = DTMLFile( 'explainRuleTool', _dtmldir )
# Factory Type Information
factory_type_information = \
{ 'id' : portal_type
, 'meta_type' : meta_type
, 'description' : """\
TemplateTool manages Business Templates."""
, 'icon' : 'folder_icon.gif'
, 'product' : 'ERP5Type'
, 'factory' : 'addFolder'
, 'immediate_view' : 'folder_contents'
, 'allow_discussion' : 1
, 'allowed_content_types': ('BusinessTemplate',
)
, 'filter_content_types' : 1
, 'global_allow' : 1
, 'actions' :
( { 'id' : 'view'
, 'name' : 'View'
, 'category' : 'object_view'
, 'action' : 'folder_contents'
, 'permissions' : (
Permissions.View, )
}
, { 'id' : 'search'
, 'name' : 'Search'
, 'category' : 'object_search'
, 'action' : 'BusinessTemplate_search'
, 'permissions' : (
Permissions.View, )
}
)
}
# Import a business template
def importURL(self, url):
"""
......@@ -150,7 +155,7 @@ class TemplateTool (BaseTool):
business_template.build()
export_string = self.manage_exportObject(id=business_template.getId(), download=1)
bt = Resource(url, username=username, password=password)
bt.put(file=export_string, content_type='application/erp5-business-template')
bt.put(file=export_string, content_type='application/x-erp5-business-template')
business_template.setPublicationUrl(url)
def update(self, business_template):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment