| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <odoo>
- <record id="view_clash_tools_tree" model="ir.ui.view">
- <field name="name">clash.tools.tree</field>
- <field name="model">clash.tools</field>
- <field name="arch" type="xml">
- <list string="Clash Tools">
- <header>
- <button name="btn_get_all_node" type="object" string="Get All Proxy" class="oe_highlight"/>
- <button name="btn_check_all_node" type="object" string="Check All Proxy" class="oe_highlight"/>
- <button name="btn_select_node" type="object" string="Select Node" class="oe_highlight"/>
- </header>
- <field name="name"/>
- <field name="localhost_ip"/>
- <field name="api_ip"/>
- <field name="total_nodes"/>
- <field name="current_node"/>
- <field name="skip_node"/>
- <field name="use_type"/>
- </list>
- </field>
- </record>
- <record id="view_clash_tools_form" model="ir.ui.view">
- <field name="name">clash.tools.form</field>
- <field name="model">clash.tools</field>
- <field name="arch" type="xml">
- <form string="Clash Tools" create="0">
- <header>
- <button name="btn_get_all_node" type="object" string="Get All Node" class="oe_highlight"/>
- <button name="btn_check_all_node" type="object" string="Check All Node" class="oe_highlight"/>
- <button name="btn_select_node" type="object" string="Select Node" class="oe_highlight"/>
- </header>
- <sheet>
- <group>
- <group>
- <field name="name"/>
- <field name="total_nodes" readonly="True"/>
- <field name="current_node" readonly="True"/>
- <field name="use_type" widget="selection"/>
- </group>
- <group>
- <field name="localhost_ip"/>
- <field name="api_ip"/>
- <field name="skip_node"/>
- </group>
- </group>
- <notebook>
- <page string="Lines">
- <field name="line_ids">
- <list string="Lines" editable="bottom" create="0" edit="0" delete="0" limit="80">
- <button name="btn_use_this_node" type="object" string="Use"
- class="oe_highlight"/>
- <button name="check_single_node" type="object" string="Check"
- class="oe_highlight"/>
- <field name="name"/>
- <field name="delay"/>
- <field name="mean_delay"/>
- <field name="node_state"/>
- </list>
- </field>
- </page>
- </notebook>
- </sheet>
- </form>
- </field>
- </record>
- <record id="view_clash_tools_line_tree" model="ir.ui.view">
- <field name="name">clash.tools.line.tree</field>
- <field name="model">clash.tools.line</field>
- <field name="arch" type="xml">
- <list string="Clash Tools Line">
- <field name="name"/>
- <field name="delay"/>
- <field name="mean_delay"/>
- </list>
- </field>
- </record>
- <record id="action_clash_tools" model="ir.actions.act_window">
- <field name="name">Clash Tools</field>
- <field name="res_model">clash.tools</field>
- <field name="view_mode">list,form</field>
- <field name="context">{'group_by': 'use_type'}</field>
- </record>
- <menuitem id="menu_clash_tools" name="Clash Tools" parent="menu_home_page" sequence="9"/>
- <menuitem id="menu_clash_tools_clash_tools" name="Clash Tools" parent="menu_clash_tools" action="action_clash_tools"
- sequence="1"/>
- </odoo>
|