[IMP] project_scrum: re-enable email send (they are not actually sent in test mode)
[odoo/odoo.git] / addons / thunderbird / installer.py
index ac98842..4cbcec9 100644 (file)
@@ -2,7 +2,7 @@
 ##############################################################################
 #
 #    OpenERP, Open Source Management Solution
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
+#    Copyright (C) 2004-2010 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
@@ -21,7 +21,6 @@
 
 from osv import fields
 from osv import osv
-from tools import config
 
 import base64
 import addons
@@ -30,28 +29,44 @@ class thunderbird_installer(osv.osv_memory):
     _name = 'thunderbird.installer'
     _inherit = 'res.config.installer'
 
-    def default_get(self, cr, uid, fields, context={}):
+    def default_get(self, cr, uid, fields, context=None):
         data = super(thunderbird_installer, self).default_get(cr, uid, fields, context)
-        pdf_file = open(addons.get_module_resource('thunderbird','doc', 'Installation Guide to OpenERP Thunderbid Plug-in.pdf'),'rb')
-        data['pdf_file'] = base64.encodestring(pdf_file.read())
-        file = open(addons.get_module_resource('thunderbird','plugin', 'Openerp_plugin.xpi'),'rb')
+        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 Module ', help="Allows you to select an object that you’d like to add to your email and its attachments."),
+        'thunderbird':fields.boolean('Thunderbird Plug-in', help="Allows you to select an object that you would 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.binary('Installation Manual', help="The documentation file :- how to install Thunderbird Plug-in.", readonly=True),
+        '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',
-        'pdf_name' : 'Installation Guide to OpenERP Thunderbid Plug-in.pdf',
-        'description' : """ * Save the Thunderbird plug­in. \n * Follows the following step to install Thunderbird plug­in. \n -> 1.From Menu Bar of Thunderbird, open Tools ­> Add ons. \n -> 2. Click on install button and a browser window appears. \n -> 3. Select the plug-in(.xpi file) and click Ok. \n -> 4. Software installation window appears and within a short time “Install Now” button will be enabled  -> 5. Click "Install Now". \n -> 6. Restart Thunderbird."""
-        }
+        'name' : 'openerp_plugin.xpi',
+        'description' : """
+Thunderbird plugin installation:
+    1.  Save the Thunderbird plug-­in.
+    2.  From the menu bar of Thunderbird, open Tools ­> Add-ons.
+    3.  Click "Install".
+    4.  Select the plug-in (the file named openerp_plugin.xpi).
+    5.  Click "Install Now".
+    6.  Restart Thunderbird.
+
+Configure OpenERP in Thunderbird:
+    1.  Go to Tools > OpenERP Configuration.
+    2.  Check the data (configured by default).
+    3.  Click "Connect".
+    4.  A message appears with the state of your connection.
+    5.  If the connection fails, check if your database is opened, and check the data again.
+    6.  If the connection succeeds, start to archive e-mails in OpenERP.
+"""
+    }
 
 thunderbird_installer()
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: