diff --git a/bt5/erp5_palo/ActionTemplateItem/portal_types/PALO%20ETL%20Connection/view.xml b/bt5/erp5_palo/ActionTemplateItem/portal_types/PALO%20ETL%20Connection/view.xml new file mode 100644 index 0000000000000000000000000000000000000000..4d2ba1aeeb111534fd47c6d0a985cf4365307aa1 --- /dev/null +++ b/bt5/erp5_palo/ActionTemplateItem/portal_types/PALO%20ETL%20Connection/view.xml @@ -0,0 +1,85 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ActionInformation" module="Products.CMFCore.ActionInformation"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>categories</string> </key> + <value> + <tuple> + <string>action_type/object_view</string> + </tuple> + </value> + </item> + <item> + <key> <string>category</string> </key> + <value> <string>object_view</string> </value> + </item> + <item> + <key> <string>condition</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>icon</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>view</string> </value> + </item> + <item> + <key> <string>permissions</string> </key> + <value> + <tuple> + <string>View</string> + </tuple> + </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Action Information</string> </value> + </item> + <item> + <key> <string>priority</string> </key> + <value> <float>1.0</float> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>View</string> </value> + </item> + <item> + <key> <string>visible</string> </key> + <value> <int>1</int> </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="Expression" module="Products.CMFCore.Expression"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>text</string> </key> + <value> <string>string:${object_url}/PALOETLConnection_view</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.py b/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.py new file mode 100644 index 0000000000000000000000000000000000000000..79b4a3f3d1b1546e58707b66446b025e1b033a22 --- /dev/null +++ b/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.py @@ -0,0 +1,121 @@ +############################################################################## +# +# Copyright (c) 2015 Nexedi SA 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. +# +############################################################################## + +import suds +import urllib2 +import ssl +import lxml.etree + +from AccessControl import ClassSecurityInfo + +from Products.ERP5Type.XMLObject import XMLObject +from Products.ERP5Type import Permissions + +from suds.transport.https import HttpAuthenticated + +class HTTPAuthenticatedUnverifiedSSL(HttpAuthenticated): + def u2handlers(self): + handlers = [ urllib2.HTTPSHandler(context=ssl._create_unverified_context()) ] + handlers.extend(HttpAuthenticated.u2handlers(self)) + return handlers + +class PALOETLConnection(XMLObject): + """Connects to PALO ETL Server. + + A typical session to load the OLAP database should be: + + Upload your project file. This can be done only once. + >>> palo.uploadProject(project_id, xml) + + Execute an ETL job and print status at the end: + + >>> execution_id = palo.addExecution(project_id, job_id) + >>> palo.runExecution(execution_id) + >>> while True: + ... status = palo.getExecutionStatus(execution_id) + ... if status != 'Running': + ... break + ... time.sleep(1) # You better spawn another activity here. + >>> print palo.getExecutionLog(execution_id) + + """ + meta_type = 'ERP5 PALO ETL Connection' + portal_type = 'PALO ETL Connection' + + security = ClassSecurityInfo() + security.declareObjectProtected(Permissions.AccessContentsInformation) + + def _getSudsClient(self): + # maybe client can be cached as a _v_ attribute. For now, we do not care about performance. + if "ignore ssl certificate check": + client = suds.client.Client(self.getUrlString(), transport=HTTPAuthenticatedUnverifiedSSL()) + else: + client = suds.client.Client(self.getUrlString()) + if "fix service location": + # XXX The axis2 generated webservice only supports http on port 8080. + # It seems to be using an old and buggy version of axis2. + # Easiest workaround is to force the port (in WSDL terminology) location. + # for a WSDL url like "https://[ip]:port/etlserver/services/ETL-Server?wsdl" it will be https://[ip]:port/etlserver/services/ETL-Server.ETL-ServerHttpSoap11Endpoint/ + assert self.getUrlString().endswith('?wsdl') + port_url = '%s.ETL-ServerHttpSoap11Endpoint/' % (self.getUrlString()[:-5]) + client.wsdl.services[0].setlocation(port_url) + return client + + def uploadProject(self, project_xml): + # Read the name attribute from xml + root = lxml.etree.fromstring(project_xml.encode('utf8')) + project_id = root.get('name') + ret, = self._getSudsClient().service.addComponents(project_id, project_xml) + if not ret.valid: + raise RuntimeError(ret.errorMessage) + return ret + + def addExecution(self, project_id, job_id='default'): + ret = self._getSudsClient().service.addExecution('%s.jobs.%s' % (project_id, job_id)) + if ret.errors: + raise RuntimeError(ret.errorMessage) + return ret.id + + def runExecution(self, execution_id): + ret = self._getSudsClient().service.runExecution(execution_id) + if ret.errors: + raise RuntimeError(ret.errorMessage) + return ret.id + + def getExecutionStatus(self, execution_id, waitForTermination=False): + ret = self._getSudsClient().service.getExecutionStatus(id=execution_id, waitForTermination=waitForTermination) + if ret.errors: + raise RuntimeError(ret.errorMessage) + return ret.status + + def getExecutionLog(self, execution_id, log_type='?', timestamp=0): + ret = self._getSudsClient().service.getExecutionLog( + execution_id, type=log_type, timestamp=timestamp) + if not ret.valid: + raise RuntimeError(ret.errorMessage) + return ret.result + diff --git a/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.xml b/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d367d814d0f4f7c5db5b20001f9bd78a757452a --- /dev/null +++ b/bt5/erp5_palo/DocumentTemplateItem/portal_components/document.erp5.PALOETLConnection.xml @@ -0,0 +1,123 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Document Component" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_recorded_property_dict</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>default_reference</string> </key> + <value> <string>PALOETLConnection</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>document.erp5.PALOETLConnection</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Document Component</string> </value> + </item> + <item> + <key> <string>sid</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>text_content_error_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>text_content_warning_message</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>version</string> </key> + <value> <string>erp5</string> </value> + </item> + <item> + <key> <string>workflow_history</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="3" aka="AAAAAAAAAAM="> + <pickle> + <global name="PersistentMapping" module="Persistence.mapping"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>data</string> </key> + <value> + <dictionary> + <item> + <key> <string>component_validation_workflow</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> + </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="4" aka="AAAAAAAAAAQ="> + <pickle> + <global name="WorkflowHistoryList" module="Products.ERP5Type.patches.WorkflowTool"/> + </pickle> + <pickle> + <tuple> + <none/> + <list> + <dictionary> + <item> + <key> <string>action</string> </key> + <value> <string>validate</string> </value> + </item> + <item> + <key> <string>validation_state</string> </key> + <value> <string>validated</string> </value> + </item> + </dictionary> + </list> + </tuple> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml b/bt5/erp5_palo/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml new file mode 100644 index 0000000000000000000000000000000000000000..b0cb9955a221d91cabd1a8e3c8a4ed483bad210a --- /dev/null +++ b/bt5/erp5_palo/PortalTypeAllowedContentTypeTemplateItem/allowed_content_types.xml @@ -0,0 +1,5 @@ +<allowed_content_type_list> + <portal_type id="Interface Tool"> + <item>PALO ETL Connection</item> + </portal_type> +</allowed_content_type_list> \ No newline at end of file diff --git a/bt5/erp5_palo/PortalTypePropertySheetTemplateItem/property_sheet_list.xml b/bt5/erp5_palo/PortalTypePropertySheetTemplateItem/property_sheet_list.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f0a3f2e5955a3f73d4b27d0c96ee8f86c54fd2a --- /dev/null +++ b/bt5/erp5_palo/PortalTypePropertySheetTemplateItem/property_sheet_list.xml @@ -0,0 +1,6 @@ +<property_sheet_list> + <portal_type id="PALO ETL Connection"> + <item>Reference</item> + <item>Url</item> + </portal_type> +</property_sheet_list> \ No newline at end of file diff --git a/bt5/erp5_palo/PortalTypeTemplateItem/portal_types/PALO%20ETL%20Connection.xml b/bt5/erp5_palo/PortalTypeTemplateItem/portal_types/PALO%20ETL%20Connection.xml new file mode 100644 index 0000000000000000000000000000000000000000..f5bc1c5623e080ba51d78d8caa1736c8a82b3843 --- /dev/null +++ b/bt5/erp5_palo/PortalTypeTemplateItem/portal_types/PALO%20ETL%20Connection.xml @@ -0,0 +1,58 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Base Type" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>content_icon</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>PALO ETL Connection</string> </value> + </item> + <item> + <key> <string>init_script</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>permission</string> </key> + <value> <string>Add portal content</string> </value> + </item> + <item> + <key> <string>portal_type</string> </key> + <value> <string>Base Type</string> </value> + </item> + <item> + <key> <string>type_class</string> </key> + <value> <string>PALOETLConnection</string> </value> + </item> + <item> + <key> <string>type_interface</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>type_mixin</string> </key> + <value> + <tuple/> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml b/bt5/erp5_palo/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml new file mode 100644 index 0000000000000000000000000000000000000000..a2d77a6d4ebd1af20ed7eff839e383ba9e4ba7fa --- /dev/null +++ b/bt5/erp5_palo/PortalTypeWorkflowChainTemplateItem/workflow_chain_type.xml @@ -0,0 +1,10 @@ +<workflow_chain> + <chain> + <type>PALO ETL Connection</type> + <workflow>edit_workflow</workflow> + </chain> + <chain> + <type>Person</type> + <workflow>palo_password_interaction_workflow</workflow> + </chain> +</workflow_chain> \ No newline at end of file diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo.xml new file mode 100644 index 0000000000000000000000000000000000000000..b3b579b726fca626a6f707c51a85df1e6e48da62 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo.xml @@ -0,0 +1,26 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Folder" module="OFS.Folder"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>erp5_palo</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/ERP5Site_authenticatePaloUser.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/ERP5Site_authenticatePaloUser.xml new file mode 100644 index 0000000000000000000000000000000000000000..df4c0eae7ea500b8b33d7912a8dd015994899dc3 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/ERP5Site_authenticatePaloUser.xml @@ -0,0 +1,104 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_body</string> </key> + <value> <string encoding="cdata"><![CDATA[ + +from DateTime import DateTime\n +from Products.ERP5Security.ERP5UserManager import getUserByLogin\n +\n +person_list = getUserByLogin(context, login)\n +if not person_list:\n + return False, []\n +\n +person = person_list[0]\n +if person.getPassword(format=\'palo_md5\') != password:\n + return False, []\n +\n +now = DateTime()\n +group_set = set()\n +for assignment in person.contentValues(portal_type=\'Assignment\'):\n + if assignment.getValidationState() == \'open\' and (\n + assignment.getStartDate() is None or\n + assignment.getStartDate() <= now <= assignment.getStopDate()):\n +\n + # XXX below is sample implementation, as it must match the groups defined in PALO\n + if assignment.isMemberOf("function/palo"):\n + group_set.add(assignment.getGroupReference())\n +\n + if assignment.isMemberOf("function/palo_admin"):\n + group_set.add("admin")\n +\n +return True, list(group_set)\n + + +]]></string> </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>login, password</string> </value> + </item> + <item> + <key> <string>_proxy_roles</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>ERP5Site_authenticatePaloUser</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view.xml new file mode 100644 index 0000000000000000000000000000000000000000..891bf103874f6a7274732c7165e4358db2a40b26 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view.xml @@ -0,0 +1,157 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ERP5 Form" module="erp5.portal_type"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary/> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>action</string> </key> + <value> <string>Base_edit</string> </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>edit_order</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>encoding</string> </key> + <value> <string>UTF-8</string> </value> + </item> + <item> + <key> <string>enctype</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>group_list</string> </key> + <value> + <list> + <string>left</string> + <string>right</string> + <string>center</string> + <string>bottom</string> + <string>hidden</string> + </list> + </value> + </item> + <item> + <key> <string>groups</string> </key> + <value> + <dictionary> + <item> + <key> <string>bottom</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>center</string> </key> + <value> + <list> + <string>my_url_string</string> + <string>my_description</string> + </list> + </value> + </item> + <item> + <key> <string>hidden</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>left</string> </key> + <value> + <list> + <string>my_title</string> + </list> + </value> + </item> + <item> + <key> <string>right</string> </key> + <value> + <list> + <string>my_reference</string> + </list> + </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>PALOETLConnection_view</string> </value> + </item> + <item> + <key> <string>method</string> </key> + <value> <string>POST</string> </value> + </item> + <item> + <key> <string>name</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>pt</string> </key> + <value> <string>form_view</string> </value> + </item> + <item> + <key> <string>row_length</string> </key> + <value> <int>4</int> </value> + </item> + <item> + <key> <string>stored_encoding</string> </key> + <value> <string>UTF-8</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>PALO ETL Connection</string> </value> + </item> + <item> + <key> <string>unicode_mode</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>update_action</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>update_action_title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_description.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_description.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f232f56c6c486dedfbe8986c96c02accb78413b --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_description.xml @@ -0,0 +1,90 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ProxyField" module="Products.ERP5Form.ProxyField"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>delegated_list</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>my_description</string> </value> + </item> + <item> + <key> <string>message_values</string> </key> + <value> + <dictionary> + <item> + <key> <string>external_validator_failed</string> </key> + <value> <string>The input failed the external validator.</string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>overrides</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>tales</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>values</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string>my_view_mode_description</string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string>Base_viewFieldLibrary</string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string>Click to edit the target</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_reference.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_reference.xml new file mode 100644 index 0000000000000000000000000000000000000000..892518905d970fb59f1badfaa6aab7083c31a866 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_reference.xml @@ -0,0 +1,90 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ProxyField" module="Products.ERP5Form.ProxyField"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>delegated_list</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>my_reference</string> </value> + </item> + <item> + <key> <string>message_values</string> </key> + <value> + <dictionary> + <item> + <key> <string>external_validator_failed</string> </key> + <value> <string>The input failed the external validator.</string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>overrides</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>tales</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>values</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string>my_view_mode_reference</string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string>Base_viewFieldLibrary</string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string>Click to edit the target</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_title.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_title.xml new file mode 100644 index 0000000000000000000000000000000000000000..0397f4f20ccd66e9fa70fa5169dd8315e347ff82 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_title.xml @@ -0,0 +1,90 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ProxyField" module="Products.ERP5Form.ProxyField"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>delegated_list</string> </key> + <value> + <list/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>my_title</string> </value> + </item> + <item> + <key> <string>message_values</string> </key> + <value> + <dictionary> + <item> + <key> <string>external_validator_failed</string> </key> + <value> <string>The input failed the external validator.</string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>overrides</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>tales</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>values</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string>my_title</string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string>Base_viewFieldLibrary</string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string>Click to edit the target</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_url_string.xml b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_url_string.xml new file mode 100644 index 0000000000000000000000000000000000000000..09f594b533e009105a7844c311ec7a0cc15fe003 --- /dev/null +++ b/bt5/erp5_palo/SkinTemplateItem/portal_skins/erp5_palo/PALOETLConnection_view/my_url_string.xml @@ -0,0 +1,133 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="ProxyField" module="Products.ERP5Form.ProxyField"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>delegated_list</string> </key> + <value> + <list> + <string>description</string> + <string>display_width</string> + <string>title</string> + </list> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>my_url_string</string> </value> + </item> + <item> + <key> <string>message_values</string> </key> + <value> + <dictionary> + <item> + <key> <string>external_validator_failed</string> </key> + <value> <string>The input failed the external validator.</string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>overrides</string> </key> + <value> + <dictionary> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>tales</string> </key> + <value> + <dictionary> + <item> + <key> <string>description</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>display_width</string> </key> + <value> + <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent> + </value> + </item> + <item> + <key> <string>field_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + </dictionary> + </value> + </item> + <item> + <key> <string>values</string> </key> + <value> + <dictionary> + <item> + <key> <string>description</string> </key> + <value> <string>ETL Server URL, for example http://localhost:8080/etlserver/services/ETL-Server?wsdl</string> </value> + </item> + <item> + <key> <string>display_width</string> </key> + <value> <int>80</int> </value> + </item> + <item> + <key> <string>field_id</string> </key> + <value> <string>my_string_field</string> </value> + </item> + <item> + <key> <string>form_id</string> </key> + <value> <string>Base_viewFieldLibrary</string> </value> + </item> + <item> + <key> <string>target</string> </key> + <value> <string>Click to edit the target</string> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>ETL Server URL</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </pickle> + </record> + <record id="2" aka="AAAAAAAAAAI="> + <pickle> + <global name="TALESMethod" module="Products.Formulator.TALESField"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_text</string> </key> + <value> <string>python: preferences.getPreference(\'preferred_textarea_width\', 80)</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce531b41bb2090e8b96946e88566702745701abd --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow.xml @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="InteractionWorkflowDefinition" module="Products.ERP5.InteractionWorkflow"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>creation_guard</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string>Stores md5 encoded password as "palo_md5" when users changes his/her password</string> </value> + </item> + <item> + <key> <string>groups</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>palo_password_interaction_workflow</string> </value> + </item> + <item> + <key> <string>manager_bypass</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string>PALO Password Interaction Workflow Definition</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions.xml new file mode 100644 index 0000000000000000000000000000000000000000..e18bf8cbf778a6808aa24ec39bba4b527d7b1bef --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions.xml @@ -0,0 +1,28 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Interaction" module="Products.ERP5.Interaction"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_mapping</string> </key> + <value> + <dictionary/> + </value> + </item> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>interactions</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions/setPassword.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions/setPassword.xml new file mode 100644 index 0000000000000000000000000000000000000000..729b099c2c34fb2f4aa3178123ee575529378371 --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/interactions/setPassword.xml @@ -0,0 +1,101 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="InteractionDefinition" module="Products.ERP5.Interaction"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>actbox_category</string> </key> + <value> <string>workflow</string> </value> + </item> + <item> + <key> <string>actbox_name</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>actbox_url</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>activate_script_name</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>after_script_name</string> </key> + <value> + <list> + <string>setEncodedPassword</string> + </list> + </value> + </item> + <item> + <key> <string>before_commit_script_name</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>description</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>guard</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>setPassword</string> </value> + </item> + <item> + <key> <string>method_id</string> </key> + <value> + <list> + <string>_setPassword</string> + <string>_forceSetPassword</string> + </list> + </value> + </item> + <item> + <key> <string>once_per_transaction</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>portal_type_filter</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>portal_type_group_filter</string> </key> + <value> + <none/> + </value> + </item> + <item> + <key> <string>script_name</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>temporary_document_disallowed</string> </key> + <value> <int>0</int> </value> + </item> + <item> + <key> <string>title</string> </key> + <value> <string></string> </value> + </item> + <item> + <key> <string>trigger_type</string> </key> + <value> <int>2</int> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts.xml new file mode 100644 index 0000000000000000000000000000000000000000..072c8f6540c07806bee17a34c920ec09b2de1bd5 --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts.xml @@ -0,0 +1,28 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Scripts" module="Products.DCWorkflow.Scripts"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_mapping</string> </key> + <value> + <dictionary/> + </value> + </item> + <item> + <key> <string>_objects</string> </key> + <value> + <tuple/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>scripts</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts/setEncodedPassword.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts/setEncodedPassword.xml new file mode 100644 index 0000000000000000000000000000000000000000..687c4ddc0d3fac0786e58a34f6228fe798b0a241 --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/scripts/setEncodedPassword.xml @@ -0,0 +1,78 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="PythonScript" module="Products.PythonScripts.PythonScript"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>Script_magic</string> </key> + <value> <int>3</int> </value> + </item> + <item> + <key> <string>_bind_names</string> </key> + <value> + <object> + <klass> + <global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/> + </klass> + <tuple/> + <state> + <dictionary> + <item> + <key> <string>_asgns</string> </key> + <value> + <dictionary> + <item> + <key> <string>name_container</string> </key> + <value> <string>container</string> </value> + </item> + <item> + <key> <string>name_context</string> </key> + <value> <string>context</string> </value> + </item> + <item> + <key> <string>name_m_self</string> </key> + <value> <string>script</string> </value> + </item> + <item> + <key> <string>name_subpath</string> </key> + <value> <string>traverse_subpath</string> </value> + </item> + </dictionary> + </value> + </item> + </dictionary> + </state> + </object> + </value> + </item> + <item> + <key> <string>_body</string> </key> + <value> <string>from Products.ERP5Type.Utils import md5\n +password, = sci[\'kwargs\'][\'workflow_method_args\']\n +\n +sci[\'object\'].setEncodedPassword(md5(password).hexdigest(), format=\'palo_md5\')\n +</string> </value> + </item> + <item> + <key> <string>_params</string> </key> + <value> <string>sci</string> </value> + </item> + <item> + <key> <string>_proxy_roles</string> </key> + <value> + <tuple> + <string>Manager</string> + </tuple> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>setEncodedPassword</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/variables.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/variables.xml new file mode 100644 index 0000000000000000000000000000000000000000..6ae03699d19840ac42b097dfc0a5f34edd416170 --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/variables.xml @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Variables" module="Products.DCWorkflow.Variables"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_mapping</string> </key> + <value> + <dictionary/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>variables</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/worklists.xml b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/worklists.xml new file mode 100644 index 0000000000000000000000000000000000000000..c3432aa051eac2d67ec0692a384adb38d1b6bac8 --- /dev/null +++ b/bt5/erp5_palo/WorkflowTemplateItem/portal_workflow/palo_password_interaction_workflow/worklists.xml @@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<ZopeData> + <record id="1" aka="AAAAAAAAAAE="> + <pickle> + <global name="Worklists" module="Products.DCWorkflow.Worklists"/> + </pickle> + <pickle> + <dictionary> + <item> + <key> <string>_mapping</string> </key> + <value> + <dictionary/> + </value> + </item> + <item> + <key> <string>id</string> </key> + <value> <string>worklists</string> </value> + </item> + </dictionary> + </pickle> + </record> +</ZopeData> diff --git a/bt5/erp5_palo/bt/dependency_list b/bt5/erp5_palo/bt/dependency_list new file mode 100644 index 0000000000000000000000000000000000000000..c4bafb7fd92fcef08fc5a01e396b89d34f8d477c --- /dev/null +++ b/bt5/erp5_palo/bt/dependency_list @@ -0,0 +1 @@ +erp5_interfaces \ No newline at end of file diff --git a/bt5/erp5_palo/bt/description b/bt5/erp5_palo/bt/description new file mode 100644 index 0000000000000000000000000000000000000000..323c20bfd2462fda73164e2b8358e8c011d0270b --- /dev/null +++ b/bt5/erp5_palo/bt/description @@ -0,0 +1,2 @@ +Interfaces ERP5 with PALO's OLAP database ( http://jedox.com ) and its ETL. +Provides authentication and authorization in PALO from ERP5 credentials. \ No newline at end of file diff --git a/bt5/erp5_palo/bt/license b/bt5/erp5_palo/bt/license new file mode 100644 index 0000000000000000000000000000000000000000..3a3e12bcad97e4b3bdd6a8bb499fd23a4bcb0819 --- /dev/null +++ b/bt5/erp5_palo/bt/license @@ -0,0 +1 @@ +GPL \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_action_path_list b/bt5/erp5_palo/bt/template_action_path_list new file mode 100644 index 0000000000000000000000000000000000000000..cf7c46dbbea183fe3deff71dc21624a83049745d --- /dev/null +++ b/bt5/erp5_palo/bt/template_action_path_list @@ -0,0 +1 @@ +PALO ETL Connection | view \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_document_id_list b/bt5/erp5_palo/bt/template_document_id_list new file mode 100644 index 0000000000000000000000000000000000000000..fb1acafda5b0062273947eace2725de3b5f325dd --- /dev/null +++ b/bt5/erp5_palo/bt/template_document_id_list @@ -0,0 +1 @@ +document.erp5.PALOETLConnection \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_format_version b/bt5/erp5_palo/bt/template_format_version new file mode 100644 index 0000000000000000000000000000000000000000..56a6051ca2b02b04ef92d5150c9ef600403cb1de --- /dev/null +++ b/bt5/erp5_palo/bt/template_format_version @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_portal_type_allowed_content_type_list b/bt5/erp5_palo/bt/template_portal_type_allowed_content_type_list new file mode 100644 index 0000000000000000000000000000000000000000..3505d0c3e455687ed2dd18345ef5a77837ecd9df --- /dev/null +++ b/bt5/erp5_palo/bt/template_portal_type_allowed_content_type_list @@ -0,0 +1 @@ +Interface Tool | PALO ETL Connection \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_portal_type_id_list b/bt5/erp5_palo/bt/template_portal_type_id_list new file mode 100644 index 0000000000000000000000000000000000000000..c0251cfd8e7ed5d184a16cfa1b596bf2bf49320e --- /dev/null +++ b/bt5/erp5_palo/bt/template_portal_type_id_list @@ -0,0 +1 @@ +PALO ETL Connection \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_portal_type_property_sheet_list b/bt5/erp5_palo/bt/template_portal_type_property_sheet_list new file mode 100644 index 0000000000000000000000000000000000000000..3e580026d720ba09f32be4dabfc1a0f6c4fa4597 --- /dev/null +++ b/bt5/erp5_palo/bt/template_portal_type_property_sheet_list @@ -0,0 +1,2 @@ +PALO ETL Connection | Reference +PALO ETL Connection | Url \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_portal_type_workflow_chain_list b/bt5/erp5_palo/bt/template_portal_type_workflow_chain_list new file mode 100644 index 0000000000000000000000000000000000000000..c773d793792e768fa0480b1db5c7a837b25bba9e --- /dev/null +++ b/bt5/erp5_palo/bt/template_portal_type_workflow_chain_list @@ -0,0 +1,2 @@ +PALO ETL Connection | edit_workflow +Person | palo_password_interaction_workflow \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_skin_id_list b/bt5/erp5_palo/bt/template_skin_id_list new file mode 100644 index 0000000000000000000000000000000000000000..3c589d2cead79810c984fa8a714de95c00c9fb5c --- /dev/null +++ b/bt5/erp5_palo/bt/template_skin_id_list @@ -0,0 +1 @@ +erp5_palo \ No newline at end of file diff --git a/bt5/erp5_palo/bt/template_workflow_id_list b/bt5/erp5_palo/bt/template_workflow_id_list new file mode 100644 index 0000000000000000000000000000000000000000..ff340399fdcf33193c18e3bc56d184526442eec3 --- /dev/null +++ b/bt5/erp5_palo/bt/template_workflow_id_list @@ -0,0 +1 @@ +palo_password_interaction_workflow \ No newline at end of file diff --git a/bt5/erp5_palo/bt/title b/bt5/erp5_palo/bt/title new file mode 100644 index 0000000000000000000000000000000000000000..3c589d2cead79810c984fa8a714de95c00c9fb5c --- /dev/null +++ b/bt5/erp5_palo/bt/title @@ -0,0 +1 @@ +erp5_palo \ No newline at end of file