From 8e4b36ed9dbce606d1189d563abe1dcda9ef5754 Mon Sep 17 00:00:00 2001
From: Romain Courteaud <romain@nexedi.com>
Date: Tue, 13 Jun 2006 11:08:08 +0000
Subject: [PATCH] Remove wrong factory type information.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7705 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/Variation.py | 46 ------------------------------
 1 file changed, 46 deletions(-)

diff --git a/product/ERP5/Document/Variation.py b/product/ERP5/Document/Variation.py
index a99cc3b59a..62ee7fe612 100644
--- a/product/ERP5/Document/Variation.py
+++ b/product/ERP5/Document/Variation.py
@@ -56,49 +56,3 @@ class Variation(XMLObject, Variation):
                       , PropertySheet.Variation
                       , PropertySheet.VariationRange
                       )
-
-    # Factory Type Information
-    factory_type_information = \
-      {    'id'             : portal_type
-         , 'meta_type'      : meta_type
-         , 'description'    : """\
-An Organisation object holds the information about
-an organisation (ex. a division in a company, a company,
-a service in a public administration)."""
-         , 'icon'           : 'organisation_icon.gif'
-         , 'product'        : 'ERP5'
-         , 'factory'        : 'addOrganisation'
-         , 'immediate_view' : 'organisation_edit'
-         , 'actions'        :
-        ( { 'id'            : 'view'
-          , 'name'          : 'View'
-          , 'category'      : 'object_view'
-          , 'action'        : 'organisation_edit'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        , { 'id'            : 'print'
-          , 'name'          : 'Print'
-          , 'category'      : 'object_print'
-          , 'action'        : 'organisation_print'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        , { 'id'            : 'metadata'
-          , 'name'          : 'Metadata'
-          , 'category'      : 'object_edit'
-          , 'action'        : 'metadata_edit'
-          , 'permissions'   : (
-              Permissions.View, )
-          }
-        , { 'id'            : 'translate'
-          , 'name'          : 'Translate'
-          , 'category'      : 'object_action'
-          , 'action'        : 'translation_template_view'
-          , 'permissions'   : (
-              Permissions.TranslateContent, )
-          }
-        )
-      }
-
-
-- 
2.30.9