[IMP] board module and hr dashboard cleanups
[odoo/odoo.git] / addons / outlook / outlook_installer.xml
1 <openerp>
2     <data>
3         <record id="view_outlook_installer" model="ir.ui.view">
4             <field name="name">outlook.installer.view</field>
5             <field name="model">outlook.installer</field>
6             <field name="type">form</field>
7             <field name="inherit_id" ref="base.res_config_installer"/>
8             <field name="arch" type="xml">
9                 <data>
10                     <form position="attributes">
11                         <attribute name="string">Install Outlook Plug-In</attribute>
12                     </form>
13                     <separator string="title" position="attributes">
14                         <attribute name="string">Install Outlook Plug-In</attribute>
15                     </separator>
16                     <xpath expr="//label[@string='description']" position="attributes">
17                         <attribute name="string">This plug-in allows you to link your e-mail to OpenERP's documents. You can attach it to any existing one in OpenERP or create a new one.</attribute>
18                     </xpath>
19                     <xpath expr="//button[@string='Install Modules']" position="replace">
20                         <button colspan="1" icon="gtk-close" special="cancel" string="_Close"/>
21                     </xpath>
22                     <xpath expr="//button[@string='Skip']" position="replace">
23                     </xpath>
24                     <xpath expr="//separator[@string=&quot;vsep&quot;]" position="attributes">
25                         <attribute name="string"/>
26                         <attribute name="rowspan">15</attribute>
27                     </xpath>
28                     <group colspan="8" position="replace">
29                         <group colspan="8" height="450" width="750">
30                             <field name="outlook" invisible="1"/>
31                             <field name="name" invisible="1"/>
32                             <field name="doc_name" invisible="1"/>
33                                 <newline/>
34                             <field name="plugin_file" filename="name"/>
35                                 <newline/>
36                             <field name="doc_file" filename="doc_name" widget="url"/>
37                                 <newline/>
38                             <separator string="Installation and Configuration Steps" colspan="4"/>
39                             <field name="description" nolabel="1" colspan="8"/>
40                         </group>
41                     </group>
42                 </data>
43             </field>
44         </record>
45
46         <record id="action_outlook_installer" model="ir.actions.act_window">
47             <field name="name">Install Outlook Plug-In</field>
48             <field name="type">ir.actions.act_window</field>
49             <field name="res_model">outlook.installer</field>
50             <field name="view_id" ref="view_outlook_installer"/>
51             <field name="view_type">form</field>
52             <field name="view_mode">form</field>
53             <field name="target">new</field>
54         </record>
55         
56         <record id="outlook_installer_todo" model="ir.actions.todo">
57             <field name="action_id" ref="action_outlook_installer"/>
58             <field name="category_id" ref="base.category_sales_management_config"/>
59             <field name="sequence">4</field>
60             <field name="type">automatic</field>
61         </record>
62
63         <record id="action_outlook_wizard" model="ir.actions.act_window">
64             <field name="name">Install Outlook Plug-In</field>
65             <field name="type">ir.actions.act_window</field>
66             <field name="res_model">outlook.installer</field>
67             <field name="view_id" ref="view_outlook_installer"/>
68             <field name="view_type">form</field>
69             <field name="view_mode">form</field>
70             <field name="target">new</field>
71             <field name="context">{'menu':True}</field>
72         </record>
73
74         <menuitem id="base.menu_base_config_plugins" name="Plugins" parent="base.menu_base_config" sequence="10"/>
75         <menuitem id="menu_base_config_plugins_outlook" action="action_outlook_wizard" parent="base.menu_base_config_plugins" sequence="10"/>
76
77     </data>
78 </openerp>