From 03d734f70770fb47809ed5bb56d8a71634c37e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20G=C3=B3rny?= <bartek@gorny.edu.pl> Date: Mon, 22 Jan 2007 16:03:29 +0000 Subject: [PATCH] fixed naming convention and other things git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@12210 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/PropertySheet/DocumentPreference.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/product/ERP5/PropertySheet/DocumentPreference.py b/product/ERP5/PropertySheet/DocumentPreference.py index 95440535f7..87b871206a 100644 --- a/product/ERP5/PropertySheet/DocumentPreference.py +++ b/product/ERP5/PropertySheet/DocumentPreference.py @@ -32,17 +32,27 @@ class DocumentPreference: """ _properties = ( + { 'id' : 'preferred_ooodoc_server_address', + 'description' : 'address of a server for converting docs (ip or domain)', + 'type' : 'string', + 'preference' :1, + 'mode' : '' }, + { 'id' : 'preferred_ooodoc_server_port_number', + 'description' : 'port number of a server for converting docs (ip or domain)', + 'type' : 'int', + 'preference' :1, + 'mode' : '' }, { 'id' : 'preferred_document_base_category', 'description' : 'list of categories to choose from while classifying', 'type' : 'lines', 'preference' : 1, 'mode' : '' }, - { 'id' : 'preferred_document_reference_regexp', + { 'id' : 'preferred_document_reference_regular_expression', 'description' : 'a regular expression to find and verify doc references', 'type' : 'string', 'preference' : 1, 'mode' : '' }, - { 'id' : 'preferred_document_filename_regexp', + { 'id' : 'preferred_document_file_name_regular_expression', 'description' : 'a regular expression to parse file names', 'type' : 'string', 'preference' : 1, @@ -59,6 +69,7 @@ class DocumentPreference: 'preference' : 1, 'mode' : '' }, # XXX-JPS. This is not a real property - it is somehow a hack. + # BG: I was advised by somebody from Nexedi (I think it was Jerome) { 'id' : 'document_ingestion_email_notification_selection', 'description' : 'List of possible values for preferred_document_ingestion_email_notification', 'type' : 'lines', -- 2.30.9