From 34c1cef2042439f7f991a81d3bc6e354e7d0c458 Mon Sep 17 00:00:00 2001
From: Nicolas Dumazet <nicolas.dumazet@nexedi.com>
Date: Tue, 8 Feb 2011 02:32:23 +0000
Subject: [PATCH] register DocumentationHelper class

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

diff --git a/product/ERP5Type/__init__.py b/product/ERP5Type/__init__.py
index 2e062b1ee9..32d27bab97 100644
--- a/product/ERP5Type/__init__.py
+++ b/product/ERP5Type/__init__.py
@@ -90,13 +90,17 @@ def initialize( context ):
   from Tool import (ClassTool, CacheTool, MemcachedTool, SessionTool,
                     TypesTool, WebServiceTool, PropertySheetTool)
   import Document
-  import Base, XMLObject
+  from Base import Base, DocumentationHelper
+  import XMLObject
   from ERP5Type import ERP5TypeInformation
   import CodingStyle
   # Define documents, classes, constructors and tools
   object_classes = ()
   content_constructors = ()
-  content_classes = Base.Base, XMLObject.XMLObject, ERP5TypeInformation
+  content_classes = ( Base,
+                      DocumentationHelper,
+                      XMLObject.XMLObject,
+                      ERP5TypeInformation )
   portal_tools = ( ClassTool.ClassTool,
                    CacheTool.CacheTool,
                    MemcachedTool.MemcachedTool,
-- 
2.30.9