From f72398272ce2a137765ebc7e238c9ab54cc62e9a Mon Sep 17 00:00:00 2001
From: Jean-Paul Smets <jp@nexedi.com>
Date: Thu, 11 Dec 2003 09:20:47 +0000
Subject: [PATCH] added tools

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@50 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/__init__.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/product/ERP5/__init__.py b/product/ERP5/__init__.py
index aa04efacdb..f72757d764 100755
--- a/product/ERP5/__init__.py
+++ b/product/ERP5/__init__.py
@@ -47,7 +47,7 @@ updateGlobals( this_module, globals(),
                    constraint_module = Constraint)
 
 # Define object classes and tools
-from Tool import Category, CategoryTool, SimulationTool, RuleTool, IdTool
+from Tool import Category, CategoryTool, SimulationTool, RuleTool, IdTool, TemplateTool
 import ERP5Site
 object_classes = ( Category.Category,
                    Category.BaseCategory,
@@ -56,11 +56,15 @@ object_classes = ( Category.Category,
 portal_tools = ( CategoryTool.CategoryTool,
                  SimulationTool.SimulationTool,
                  RuleTool.RuleTool,
-                 IdTool.IdTool
+                 IdTool.IdTool,
+                 TemplateTool.TemplateTool
                 )
 content_classes = ()
 content_constructors = ()
 
+# Import Interaction Workflow
+from InteractionWorkflow import InteractionWorkflowDefinition
+
 # Finish installation
 def initialize( context ):
   import Document
-- 
2.30.9