[imp] add compatibility ir.actions.configuration.wizard for plugins which have yet...
[odoo/odoo.git] / bin / addons / base / res / res_config.xml
1 <openerp>
2   <data>
3     <record id="res_config_view_base" model="ir.ui.view">
4       <field name="name">res.config.view.base</field>
5       <field name="model">res.config</field>
6       <field name="type">form</field>
7       <field name="arch" type="xml">
8         <form>
9           <group string="res_config_contents">
10           </group>
11           <separator string="" colspan="4"/>
12           <group colspan="4" col="8">
13             <field name="progress" widget="progressbar"/>
14             <label string="" colspan="3"/>
15             <group colspan="1" col="2">
16               <button name="action_skip" icon="gtk-goto-last" special="cancel"
17                       type="object" string="Skip"/>
18             </group>
19             <group colspan="1" col="2">
20               <button name="action_next" icon="gtk-go-forward"
21                       type="object" string="Next"/>
22             </group>
23           </group>
24         </form>
25       </field>
26     </record>
27
28     <record id="view_config_wizard_form" model="ir.ui.view">
29       <field name="name">Compabitiliby configuration wizard</field>
30       <field name="model">ir.actions.configuration.wizard</field>
31       <field name="type">form</field>
32       <field name="arch" type="xml">
33         <form string="Next Configuration Step">
34           <image name="gtk-dialog-info"/>
35           <group>
36             <field name="note" nolabel="1" colspan="4" width="500"/>
37             <group colspan="4" col="8">
38               <field name="progress" widget="progressbar"/>
39               <label string="" colspan="4"/>
40               <group colspan="1" col="2">
41                 <button name="action_next" icon="gtk-go-forward"
42                         type="object" string="Continue"/>
43               </group>
44             </group>
45           </group>
46         </form>
47       </field>
48     </record>
49
50   </data>
51 </openerp>