You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.8 KiB
71 lines
2.8 KiB
<odoo>
|
|
<data>
|
|
<record id="repository_view_form" model="ir.ui.view">
|
|
<field name="model">galicea_git.repository</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<field name="state" invisible="1" />
|
|
<field name="name" />
|
|
<field name="system_name" groups="galicea_git.group_admin" />
|
|
<field name="collaborator_ids" widget="many2many_tags" options="{'no_create': True}" />
|
|
</group>
|
|
<group class="oe_read_only">
|
|
<label for="url" />
|
|
<span style="font-family: monospace">git clone <field name="url" nolabel="True" /></span>
|
|
<field name="local_directory" style="font-family: monospace" />
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="repository_view_tree" model="ir.ui.view">
|
|
<field name="model">galicea_git.repository</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="state" invisible="1" />
|
|
<field name="name" />
|
|
<field name="system_name" groups="galicea_git.group_admin" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<act_window id="repository_action"
|
|
name="Git repositories"
|
|
res_model="galicea_git.repository" />
|
|
|
|
<record id="config_settings_view_form" model="ir.ui.view">
|
|
<field name="model">galicea_git.config.settings</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Git hosting settings" class="oe_form_configuration">
|
|
<header>
|
|
<button string="Save" type="object" name="execute" class="oe_highlight"/>
|
|
<button string="Cancel" type="object" name="cancel" class="oe_link"/>
|
|
</header>
|
|
<field name="git_http_backend_valid" invisible="1" />
|
|
<group>
|
|
<label for="git_http_backend" />
|
|
<span>
|
|
<field name="git_http_backend" nolabel="True" class="oe_inline" style="min-width:300px; margin-right:5px" />
|
|
<i class="fa fa-check" aria-hidden="true" style="color: green"
|
|
attrs="{'invisible': [('git_http_backend_valid', '=', False)]}" />
|
|
<i class="fa fa-times" aria-hidden="true" style="color: red"
|
|
attrs="{'invisible': [('git_http_backend_valid', '=', True)]}" />
|
|
</span>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<act_window id="config_settings_action"
|
|
name="Settings"
|
|
res_model="galicea_git.config.settings"
|
|
parent="base.menu_administration"
|
|
view_mode="form" target="inline" />
|
|
|
|
<menuitem name="Git hosting" id="git_root_menu" sequence="20" />
|
|
<menuitem name="Repositories" id="repo_menu" parent="galicea_git.git_root_menu" action="repository_action" sequence="1" />
|
|
<menuitem name="Settings" id="settings_menu" parent="galicea_git.git_root_menu" action="config_settings_action" sequence="99"
|
|
groups="galicea_git.group_admin" />
|
|
</data>
|
|
</odoo>
|