Commit f2acf0b8 authored by Aurel's avatar Aurel

implement ERP5 transport for syncml for cases where both pub & sub are on the same site

parent 35de1758
...@@ -49,6 +49,7 @@ from Products.ERP5SyncML.SyncMLMessage import SyncMLResponse ...@@ -49,6 +49,7 @@ from Products.ERP5SyncML.SyncMLMessage import SyncMLResponse
from Products.ERP5SyncML.Transport.HTTP import HTTPTransport from Products.ERP5SyncML.Transport.HTTP import HTTPTransport
from Products.ERP5SyncML.Transport.File import FileTransport from Products.ERP5SyncML.Transport.File import FileTransport
from Products.ERP5SyncML.Transport.Mail import MailTransport from Products.ERP5SyncML.Transport.Mail import MailTransport
from Products.ERP5SyncML.Transport.ERP5 import ERP5Transport
from Products.ERP5SyncML.SyncMLConstant import MAX_LEN, ADD_ACTION, \ from Products.ERP5SyncML.SyncMLConstant import MAX_LEN, ADD_ACTION, \
REPLACE_ACTION REPLACE_ACTION
from Products.ERP5SyncML.XMLSyncUtils import cutXML from Products.ERP5SyncML.XMLSyncUtils import cutXML
...@@ -58,6 +59,7 @@ transport_scheme_dict = { ...@@ -58,6 +59,7 @@ transport_scheme_dict = {
"https" : HTTPTransport(), "https" : HTTPTransport(),
"file" : FileTransport(), "file" : FileTransport(),
"mail" : MailTransport(), "mail" : MailTransport(),
"erp5" : ERP5Transport(),
} }
syncml_logger = getLogger('ERP5SyncML') syncml_logger = getLogger('ERP5SyncML')
......
# -*- coding: utf-8 -*-
## Copyright (c) 2013 Nexedi SARL and Contributors. All Rights Reserved.
# Aurélien Calonne <aurel@nexedi.com>
#
# 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.
#
##############################################################################
from Products.ERP5.ERP5Site import getSite
class ERP5Transport:
"""
This transport is usefull when both subscription & publication
are on the same ERP5 site
"""
def send(self, to_url, data, sync_id, content_type):
getSite().portal_synchronizations.readResponse(text=data,
sync_id=sync_id)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment