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.
|
|
<?xml version="1.0" encoding="utf-8"?> <openerp> <data> <record model="ir.ui.view" id="help_view_config_settings"> <field name="name">Auth HTTP_REMOTE_USER settings</field> <field name="model">auth_from_http_remote_user.config.settings</field> <field name="priority" eval="20" /> <field name="arch" type="xml"> <form string="Configure Auth HTTP_REMOTE_USER" version="7.0" class="oe_form_configuration"> <header> <header> <button string="Apply" type="object" name="execute" class="oe_highlight"/> or <button string="Cancel" type="object" name="cancel" class="oe_link"/> </header> </header> <separator string="Auth HTTP_REMOTE_USER" /> <group> <field name="default_login_page_disabled" /> </group> </form> </field> </record>
<record model="ir.actions.act_window" id="auth_from_http_remote_user_action_config_settings"> <field name="name">Configure Auth HTTP_REMOTE_USER</field> <field name="type">ir.actions.act_window</field> <field name="res_model">auth_from_http_remote_user.config.settings</field> <field name="view_mode">form</field> <field name="target">inline</field> </record>
<menuitem id="base.menu_auth_from_http_remote_user_config" name="Auth HTTP_REMOTE_USER" parent="base.menu_config" sequence="10" action="auth_from_http_remote_user_action_config_settings" />
</data> </openerp>
|