mirror of
https://github.com/odoo/runbot.git
synced 2025-03-26 21:05:49 +07:00

- clean thread username - allow to write on params for debug (was mainly usefull to forbid it at the beginning) - imrpove some guidelines about method and actions naming/ ordering - move some code for a cleaner organisation. - remove some useless request.env.user (not useful anymore)
40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record model="ir.ui.view" id="runbot_stat_regex_wizard_form">
|
|
<field name="name">runbot_stat_regex_wizard</field>
|
|
<field name="model">runbot.build.stat.regex.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Regex">
|
|
<group>
|
|
<field name="name"/>
|
|
<field name="regex"/>
|
|
<field name="description"/>
|
|
<field name="generic"/>
|
|
<field name="test_text"/>
|
|
</group>
|
|
<group>
|
|
<field name="key" readonly="1"/>
|
|
<field name="value" readonly="1"/>
|
|
<field name="message" readonly="1"/>
|
|
</group>
|
|
<footer>
|
|
<button name="action_save" string="Save" type="object" class="btn-primary"/>
|
|
<button string="Cancel" special="cancel" class="btn-default"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record model="ir.actions.act_window" id="runbot_stat_regex_wizard_action">
|
|
<field name="name">Generate Stat Regex</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">runbot.build.stat.regex.wizard</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="view_id" ref="runbot_stat_regex_wizard_form"/>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|