diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialOrganisationProperties.py b/bt5/erp5_credential/PropertySheetTemplateItem/CredentialOrganisationProperties.py deleted file mode 100644 index e58ee73f47477d889ccc10ae525fda0ad07f7637..0000000000000000000000000000000000000000 --- a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialOrganisationProperties.py +++ /dev/null @@ -1,87 +0,0 @@ -############################################################################## -# -# Copyright (c) 2002-2010 Nexedi SA and Contributors. All Rights Reserved. -# Fabien Morin <fabien@nexedi.com> -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsibility of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# guarantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -############################################################################## - -class CredentialOrganisationProperties: - """ - Used to store properties related to organisation - """ - - _properties = ( - # Acquisition - { 'id' : 'organisation_default_address', - 'storage_id' : 'organisation_default_address', - 'description' : 'The organisation address of the person', - 'type' : 'content', - 'portal_type' : ('Address'), - 'acquired_property_id' : ( 'text', 'street_address', 'city', - 'zip_code', 'region', 'region_title', - 'prefecture'), - 'acquisition_base_category' : ('region', ), - 'acquisition_portal_type' : ('Category',), - 'acquisition_copy_value' : 0, - 'acquisition_mask_value' : 1, - 'acquisition_sync_value' : 0, - 'acquisition_accessor_id' : 'getDefaultAddressValue', - 'acquisition_depends' : None, - 'mode' : 'w' }, - { 'id' : 'organisation_default_telephone', - 'storage_id' : 'organisation_default_telephone', - 'description' : 'The organisation phone of the person', - 'type' : 'content', - 'portal_type' : ('Telephone'), - 'acquired_property_id' : ( 'text', 'telephone_number' ), - 'acquisition_base_category' : ('region', ), - 'acquisition_portal_type' : ('Category',), - 'acquisition_copy_value' : 0, - 'acquisition_mask_value' : 1, - 'acquisition_sync_value' : 0, - 'acquisition_accessor_id' : 'getDefaultTelephoneValue', - 'acquisition_depends' : None, - 'mode' : 'w' }, - { 'id' : 'organisation_title', - 'description' : '', - 'type' : 'string', - 'translatable' : 1, - 'translation_domain' : 'erp5_content', - 'default' : '', - 'acquisition_base_category': (), - 'acquisition_portal_type': (), - 'acquisition_copy_value': 0, - 'acquisition_mask_value': 1, - 'acquisition_accessor_id': 'getTitle', - 'acquisition_depends': None, - 'mode' : 'w' }, - { 'id' : 'organisation_description', - 'description' : '', - 'default' : '', - 'type' : 'text', - 'mode' : 'w' }, - ) - - - _categories = ('question', ) diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialPreference.py b/bt5/erp5_credential/PropertySheetTemplateItem/CredentialPreference.py deleted file mode 100644 index 60f758a85c8308916432c2f60a49a84d4c4d0f71..0000000000000000000000000000000000000000 --- a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialPreference.py +++ /dev/null @@ -1,77 +0,0 @@ -############################################################################# -# -# Copyright (c) 2010 Nexedi SARL and Contributors. All Rights Reserved. -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -############################################################################## - - -class CredentialPreference: - """ - This property sheet defines configurable preference for credential managment. - """ - - _properties = ( - { 'id' : 'preferred_credential_request_automatic_approval', - 'description' : 'Automaticaly accept credential request', - 'type' : 'boolean', - 'preference' : 1, - 'default' : False, - 'write_permission': 'Manage properties', - 'mode' : '' }, - { 'id' : 'preferred_credential_recovery_automatic_approval', - 'description' : 'Automaticaly accept credential recovery', - 'type' : 'boolean', - 'preference' : 1, - 'default' : False, - 'write_permission': 'Manage properties', - 'mode' : '' }, - { 'id' : 'preferred_person_credential_update_automatic_approval', - 'description' : 'Automaticaly accept credential update of a person', - 'type' : 'boolean', - 'preference' : 1, - 'default' : False, - 'write_permission': 'Manage properties', - 'mode' : '' }, - { 'id' : 'preferred_organisation_credential_update_automatic_approval', - 'description' : 'Automaticaly accept credential update of an organisation', - 'type' : 'boolean', - 'preference' : 1, - 'default' : False, - 'write_permission': 'Manage properties', - 'mode' : '' }, - { 'id' : 'preferred_credential_assignment_duration', - 'description' : 'Validation duration for assignments created from a credential (Days)', - 'type' : 'int', - 'preference' : 1, - 'default' : 3650, - 'write_permission': 'Manage properties', - 'mode' : '' }, - { 'id' : 'preferred_login_and_password_notifier', - 'description' : 'Which notifier use to send password and login.("Mail Message", "SMS",...)', - 'type' : 'text', - 'preference' : 1, - 'default' : 'Mail Message', - 'write_permission': 'Manage properties', - 'mode' : '' }, - ) diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialQuestion.py b/bt5/erp5_credential/PropertySheetTemplateItem/CredentialQuestion.py deleted file mode 100644 index b16939a5cd8ce93953d3d875f3d99c59ca6aa588..0000000000000000000000000000000000000000 --- a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialQuestion.py +++ /dev/null @@ -1,49 +0,0 @@ -############################################################################## -# -# Copyright (c) 2002-2010 Nexedi SA and Contributors. All Rights Reserved. -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsibility of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# guarantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -############################################################################## - -class CredentialQuestion: - """ - CredentialQuestion properties for all ERP5 objects - - move to subobject - """ - - _properties = ( - { 'id' : 'answer', - 'description' : 'The answer to the credential question. This will '\ - 'be used to check the user identity when he forgets his password', - 'type' : 'string', - 'mode' : 'w' }, - { 'id' : 'question_free_text', - 'description' : 'The question entered by hand the user want to be '\ - 'asked when he will forgets his password', - 'type' : 'string', - 'mode' : 'w' }, - ) - - - _categories = ('question', ) diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialRequest.py b/bt5/erp5_credential/PropertySheetTemplateItem/CredentialRequest.py deleted file mode 100644 index f12cbe699afb6dd1828039c00e58b04b8c23073f..0000000000000000000000000000000000000000 --- a/bt5/erp5_credential/PropertySheetTemplateItem/CredentialRequest.py +++ /dev/null @@ -1,39 +0,0 @@ -############################################################################## -# -# Copyright (c) 2002-2010 Nexedi SA and Contributors. All Rights Reserved. -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsibility of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# guarantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -############################################################################## - -class CredentialRequest: - """ - CredentialRequest property sheet - """ - _properties = ( - { 'id' : 'birthday', - 'description' : 'Date of birth', - 'type' : 'date', - 'mode' : 'w', - }, - ) - diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/DefaultCredentialQuestion.py b/bt5/erp5_credential/PropertySheetTemplateItem/DefaultCredentialQuestion.py deleted file mode 100644 index 99f7ce01c01e9c11ea74b1c10165ccee35340894..0000000000000000000000000000000000000000 --- a/bt5/erp5_credential/PropertySheetTemplateItem/DefaultCredentialQuestion.py +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################## -# -# Copyright (c) 2002-2010 Nexedi SA and Contributors. All Rights Reserved. -# -# WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsibility of assessing all potential -# consequences resulting from its eventual inadequacies and bugs -# End users who are looking for a ready-to-use solution with commercial -# guarantees and support are strongly adviced to contract a Free Software -# Service Company -# -# This program is Free Software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -############################################################################## - -class DefaultCredentialQuestion: - """ - Properties which allow to define a Default Credential Question for a - person. - """ - - _properties = ( - { 'id' : 'credential_question', - 'storage_id' : 'default_credential_question', - 'description' : '', - 'type' : 'content', - 'portal_type' : ('Credential Question',), - 'acquired_property_id': ('answer','question_free_text', - 'question', 'question_title'), - 'mode' : 'w' }, - ) - - - _categories = ('question', ) diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties.xml new file mode 100644 index 0000000000000000000000000000000000000000..a05fc1ad3e8ec83352709ca8f74275f4af442b65 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties.xml @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Sheet" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>CredentialOrganisationProperties</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Sheet</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_address_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_address_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..c16e6d8727700a22186141f461a743a676a1cf2d --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_address_property.xml @@ -0,0 +1,129 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Acquired Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>acquisition_depends</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>acquisition_sync_value</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>acquisition_accessor_id</string> </key> + <value> <string>getDefaultAddressValue</string> </value> + </item> + <item> + <key> <string>acquisition_base_category</string> </key> + <value> + <tuple> + <string>region</string> + </tuple> + </value> + </item> + <item> + <key> <string>acquisition_copy_value</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>acquisition_depends</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>acquisition_mask_value</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>acquisition_portal_type</string> </key> + <value> <string>python: (\'Category\',)</string> </value> + </item> + <item> + <key> <string>acquisition_sync_value</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/content</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_acquired_property_id</string> </key> + <value> + <tuple> + <string>text</string> + <string>street_address</string> + <string>city</string> + <string>zip_code</string> + <string>region</string> + <string>region_title</string> + <string>prefecture</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_portal_type</string> </key> + <value> <string>python: \'Address\'</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>The organisation address of the person</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>organisation_default_address_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Acquired Property</string> </value> + </item> + <item> + <key> <string>storage_id</string> </key> + <value> <string>organisation_default_address</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_telephone_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_telephone_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..b3c6e4737a91e1bb880dd9b31f60bfd2dc8ac891 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_default_telephone_property.xml @@ -0,0 +1,124 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Acquired Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>acquisition_depends</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>acquisition_sync_value</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>int</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>acquisition_accessor_id</string> </key> + <value> <string>getDefaultTelephoneValue</string> </value> + </item> + <item> + <key> <string>acquisition_base_category</string> </key> + <value> + <tuple> + <string>region</string> + </tuple> + </value> + </item> + <item> + <key> <string>acquisition_copy_value</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>acquisition_depends</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>acquisition_mask_value</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>acquisition_portal_type</string> </key> + <value> <string>python: (\'Category\',)</string> </value> + </item> + <item> + <key> <string>acquisition_sync_value</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/content</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_acquired_property_id</string> </key> + <value> + <tuple> + <string>text</string> + <string>telephone_number</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_portal_type</string> </key> + <value> <string>python: \'Telephone\'</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>The organisation phone of the person</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>organisation_default_telephone_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Acquired Property</string> </value> + </item> + <item> + <key> <string>storage_id</string> </key> + <value> <string>organisation_default_telephone</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_description_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_description_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..64f9582e61260dd2acc0a796cb4395509dbdb0cb --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_description_property.xml @@ -0,0 +1,59 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/text</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>organisation_description_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: \'\'</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_title_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_title_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..49ba7a56fe71d96bf042a4497485471f24ecb8be --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/organisation_title_property.xml @@ -0,0 +1,105 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Acquired Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>acquisition_depends</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>acquisition_accessor_id</string> </key> + <value> <string>getTitle</string> </value> + </item> + <item> + <key> <string>acquisition_base_category</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>acquisition_copy_value</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>acquisition_depends</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>acquisition_mask_value</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>acquisition_portal_type</string> </key> + <value> <string>python: ()</string> </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/string</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>organisation_title_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Acquired Property</string> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: \'\'</string> </value> + </item> + <item> + <key> <string>translatable</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>translation_domain</string> </key> + <value> <string>erp5_content</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/question_category.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/question_category.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a4153fef95a8890ba17420db9640906ec13058a --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialOrganisationProperties/question_category.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>question_category</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6de297f8d4fc608010a7b6dbd32c894dd041ca3 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference.xml @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Sheet" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>CredentialPreference</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Sheet</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_assignment_duration_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_assignment_duration_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..f81dc2189caeda5031a3b1a1d9c580f43f839a8d --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_assignment_duration_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/int</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Validation duration for assignments created from a credential (Days)</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_credential_assignment_duration_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: 3650</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_recovery_automatic_approval_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_recovery_automatic_approval_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..009744fc33e7c734ff54b77fb830f638f613ad52 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_recovery_automatic_approval_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/boolean</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Automaticaly accept credential recovery</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_credential_recovery_automatic_approval_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: False</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_request_automatic_approval_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_request_automatic_approval_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..428ccc83d018b33d96525bc2bfe055eb349dfb6d --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_credential_request_automatic_approval_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/boolean</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Automaticaly accept credential request</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_credential_request_automatic_approval_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: False</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_login_and_password_notifier_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_login_and_password_notifier_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..180dfa6ba8f2fca4e0280cfb0db579bf2f11b6ee --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_login_and_password_notifier_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/text</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Which notifier use to send password and login.("Mail Message", "SMS",...)</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_login_and_password_notifier_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: \'Mail Message\'</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_organisation_credential_update_automatic_approval_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_organisation_credential_update_automatic_approval_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..ff0a1f846b690965543015ee698879d831897b95 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_organisation_credential_update_automatic_approval_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/boolean</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Automaticaly accept credential update of an organisation</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_organisation_credential_update_automatic_approval_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: False</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_person_credential_update_automatic_approval_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_person_credential_update_automatic_approval_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..571f43f2edae3375928b62601ad2e5106c4e7bd0 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialPreference/preferred_person_credential_update_automatic_approval_property.xml @@ -0,0 +1,65 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/boolean</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Automaticaly accept credential update of a person</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>preferred_person_credential_update_automatic_approval_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + <item> + <key> <string>preference</string> </key> + <value> <int>1</int> </value> + </item> + <item> + <key> <string>property_default</string> </key> + <value> <string>python: False</string> </value> + </item> + <item> + <key> <string>write_permission</string> </key> + <value> <string>Manage properties</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion.xml new file mode 100644 index 0000000000000000000000000000000000000000..184c1383d63df1f770ee473644171c814da7f0e8 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion.xml @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Sheet" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>CredentialQuestion</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Sheet</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/answer_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/answer_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..a14e5de3f0b358f6e502c0b34764b05dbd7e1976 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/answer_property.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/string</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>The answer to the credential question. This will be used to check the user identity when he forgets his password</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>answer_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_category.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_category.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a4153fef95a8890ba17420db9640906ec13058a --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_category.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>question_category</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_free_text_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_free_text_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..34926663044d86545b67b7b849076828a07fd5b9 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialQuestion/question_free_text_property.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/string</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>The question entered by hand the user want to be asked when he will forgets his password</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>question_free_text_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest.xml new file mode 100644 index 0000000000000000000000000000000000000000..635f8309c9c41f2c3d52c8c212df3395ae7b0a23 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest.xml @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Sheet" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>CredentialRequest</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Sheet</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest/birthday_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest/birthday_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..f87677a9cffd8fa6c8488ad5e7fd605f18b8403a --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/CredentialRequest/birthday_property.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Standard Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/date</string> + </tuple> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Date of birth</string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>birthday_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Standard Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion.xml new file mode 100644 index 0000000000000000000000000000000000000000..8870c889947f07c668e65f63537e64daca4a97ad --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion.xml @@ -0,0 +1,60 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Property Sheet" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_count</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>_mt_index</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + <item> + <key> <string>_tree</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>DefaultCredentialQuestion</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Property Sheet</string> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Length" module="BTrees.Length"/> + </pickle> + <pickle> <int>0</int> </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="OOBTree" module="BTrees.OOBTree"/> + </pickle> + <pickle> + <none/> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/credential_question_property.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/credential_question_property.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a4b62514631ce9973632e0d9f4d6a76805618e7 --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/credential_question_property.xml @@ -0,0 +1,74 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Acquired Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_local_properties</string> </key> + <value> + <tuple> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>mode</string> </value> + </item> + <item> + <key> <string>type</string> </key> + <value> <string>string</string> </value> + </item> + </dictionary> + </tuple> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>elementary_type/content</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_acquired_property_id</string> </key> + <value> + <tuple> + <string>answer</string> + <string>question_free_text</string> + <string>question</string> + <string>question_title</string> + </tuple> + </value> + </item> + <item> + <key> <string>content_portal_type</string> </key> + <value> <string>python: (\'Credential Question\',)</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>credential_question_property</string> </value> + </item> + <item> + <key> <string>mode</string> </key> + <value> <string>w</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Acquired Property</string> </value> + </item> + <item> + <key> <string>storage_id</string> </key> + <value> <string>default_credential_question</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/question_category.xml b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/question_category.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a4153fef95a8890ba17420db9640906ec13058a --- /dev/null +++ b/bt5/erp5_credential/PropertySheetTemplateItem/portal_property_sheets/DefaultCredentialQuestion/question_category.xml @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Category Property" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>id</string> </key> + <value> <string>question_category</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Category Property</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_credential/bt/revision b/bt5/erp5_credential/bt/revision index 95738485793d46fac341b01b1f8f9468b4df0dd1..98c1572f67e72c2c54c6e949b21406e146df0b5b 100644 --- a/bt5/erp5_credential/bt/revision +++ b/bt5/erp5_credential/bt/revision @@ -1 +1 @@ -326 \ No newline at end of file +327 \ No newline at end of file