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.

39 lines
1.7 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record model="ir.ui.view" id="help_view_config_settings">
  5. <field name="name">Auth HTTP_REMOTE_USER settings</field>
  6. <field name="model">auth_from_http_remote_user.config.settings</field>
  7. <field name="priority" eval="20" />
  8. <field name="arch" type="xml">
  9. <form string="Configure Auth HTTP_REMOTE_USER" version="7.0"
  10. class="oe_form_configuration">
  11. <header>
  12. <header>
  13. <button string="Apply" type="object" name="execute" class="oe_highlight"/>
  14. or
  15. <button string="Cancel" type="object" name="cancel" class="oe_link"/>
  16. </header>
  17. </header>
  18. <separator string="Auth HTTP_REMOTE_USER" />
  19. <group>
  20. <field name="default_login_page_disabled" />
  21. </group>
  22. </form>
  23. </field>
  24. </record>
  25. <record model="ir.actions.act_window" id="auth_from_http_remote_user_action_config_settings">
  26. <field name="name">Configure Auth HTTP_REMOTE_USER</field>
  27. <field name="type">ir.actions.act_window</field>
  28. <field name="res_model">auth_from_http_remote_user.config.settings</field>
  29. <field name="view_mode">form</field>
  30. <field name="target">inline</field>
  31. </record>
  32. <menuitem id="base.menu_auth_from_http_remote_user_config" name="Auth HTTP_REMOTE_USER"
  33. parent="base.menu_config" sequence="10"
  34. action="auth_from_http_remote_user_action_config_settings" />
  35. </data>
  36. </openerp>