From ca4d4b2f81b65581e244b31a82914617a1d2d530 Mon Sep 17 00:00:00 2001 From: Jean-Paul Smets <jp@nexedi.com> Date: Sun, 31 Dec 2006 17:21:34 +0000 Subject: [PATCH] Moved from ERP5OOo. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@11824 20353a03-c40f-0410-a6d1-a30d3c3de9de --- .../ERP5/PropertySheet/ExternalDocument.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 product/ERP5/PropertySheet/ExternalDocument.py diff --git a/product/ERP5/PropertySheet/ExternalDocument.py b/product/ERP5/PropertySheet/ExternalDocument.py new file mode 100644 index 0000000000..2d009f9ad0 --- /dev/null +++ b/product/ERP5/PropertySheet/ExternalDocument.py @@ -0,0 +1,20 @@ + +class ExternalDocument: + """ + """ + _properties = ( + { 'id' : 'external_processing_status_message', + 'description' : 'message about status', + 'type' : 'string', + 'mode' : 'w' }, + { 'id' : 'option_recursively', + 'description' : 'do we want recursive spidering (meaningless in some classes)', + 'type' : 'int', + 'mode' : 'w'}, + { 'id' : 'recursion_depth', + 'description' : 'how deep should recursive spidering be (0 - no recursion) (meaningless in some classes)', + 'type' : 'int', + 'default' : 5, + 'mode' : 'w'}, + ) + -- 2.30.9