# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # 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 . # ############################################################################## from osv import fields from osv import osv from tools import config import base64 import addons import difflib class thunderbird_installer(osv.osv_memory): _name = 'thunderbird.installer' _inherit = 'res.config.installer' def default_get(self, cr, uid, fields, context=None): if not context: context = {} data = super(thunderbird_installer, self).default_get(cr, uid, fields, context) data['pdf_file'] = 'http://doc.openerp.com/book/2/2_6_Comms/2_6_Comms_thunderbird.html' file = open(addons.get_module_resource('thunderbird','plugin', 'openerp_plugin.xpi'),'rb') data['plugin_file'] = base64.encodestring(file.read()) return data _columns = { 'name':fields.char('File name', size=34), 'pdf_name':fields.char('File name', size=64), 'thunderbird':fields.boolean('Thunderbird Plug-in', help="Allows you to select an object that you’d like to add to your email and its attachments."), 'plugin_file':fields.binary('Thunderbird Plug-in', readonly=True, help="Thunderbird plug-in file. Save as this file and install this plug-in in thunderbird."), 'pdf_file':fields.char('Installation Manual', size="264", help="The documentation file :- how to install Thunderbird Plug-in.", readonly=True), 'description':fields.text('Description', readonly=True) } _defaults = { 'thunderbird' : True, 'name' : 'openerp_plugin.xpi', 'description' : """ * Save the Thunderbird plug-­in. * Follow these steps to install Thunderbird plug-­in. 1. From Menu Bar of Thunderbird, open Tools ­> Add-ons. 2. Click "Install" button. 3. Select the plug-in(openerp_plugin.xpi file) 5. Click "Install Now". 6. Restart Thunderbird. * Follow the steps to configure OpenERP in Thunderbird. 1. Go to Tools > OpenERP Configuration. 2. Check data (configured by default). 3. Click "Connect". 4. A message appears with the state of your connection. 5. If your connection failed, check if your database is opened, and check data again. 6. If your database is connected successfully, you can start to archive your e-mail in OpenERP. """ } thunderbird_installer()