[IMP] wip

bzr revid: nicolas.vanhoren@openerp.com-20101118132431-275gq1i1vjg52yoy
This commit is contained in:
nvi-openerp 2010-11-18 14:24:31 +01:00
parent d5debf686f
commit 469f0c3f5b
3 changed files with 41 additions and 3 deletions

View File

@ -31,6 +31,7 @@ _CHAN = __name__.split()[-1]
class maintenance_contract(osv.osv):
_name = "maintenance.contract"
_description = "Maintenance Contract"
def _get_valid_contracts(self, cr, uid):

View File

@ -21,10 +21,8 @@
import xmlrpclib
import config
import logging
import pooler
_logger = logging.getLogger(__name__)
class RemoteConnectionException(Exception):
pass
@ -79,7 +77,6 @@ def remote_contract(cr, uid, contract_id):
config.config.get("maintenance_login"), config.config.get("maintenance_password")
).get_remote_object('maintenance.maintenance')
except:
_logger.exception("Exception")
raise RemoteContractException("Unable to contact the migration server")
info = ro.check_contract_6({

40
bin/tools/ping.py Normal file
View File

@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import urllib
import pooler
def send_ping(cr, uid):
pooler.get_pool(cr.dbname)
args = urllib.urlencode({
'arg0': "coucou",
})
uo = urllib.urlopen('http://localhost/phonehome/phonehome.php', args)
try:
submit_result = uo.read()
finally:
uo.close()
return ""