Browse Source

[FIX] set parameters noupdatable;

pull/92/head
Sylvain LE GAL 9 years ago
parent
commit
9c7ae892a5
  1. 2
      auth_generate_password/__openerp__.py
  2. 32
      auth_generate_password/data/ir_config_parameter.xml
  3. 29
      auth_generate_password/data/ir_config_parameter.yml
  4. 2
      auth_generate_password/view/view.xml

2
auth_generate_password/__openerp__.py

@ -59,7 +59,7 @@ Copyright, Author and Licence :
'email_template',
],
'data': [
'data/ir_config_parameter.yml',
'data/ir_config_parameter.xml',
'data/email_template.xml',
'view/view.xml',
],

32
auth_generate_password/data/ir_config_parameter.xml

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ********************************************************************** -->
<!--Authentification - Generate Password Module for OpenERP -->
<!--Copyright (C) 2014 GRAP (http://www.grap.coop) -->
<!--@author Sylvain LE GAL (https://twitter.com/legalsylvain) -->
<!--This program is free software: you can redistribute it and/or modify -->
<!--it under the terms of the GNU Affero General Public License as -->
<!--published by the Free Software Foundation, either version 3 of the -->
<!--License, or (at your option) any later version. -->
<!--This program is distributed in the hope that it will be useful, -->
<!--but WITHOUT ANY WARRANTY; without even the implied warranty of -->
<!--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
<!--GNU Affero General Public License for more details. -->
<!--You should have received a copy of the GNU Affero General Public License-->
<!--along with this program. If not, see <http://www.gnu.org/licenses/>. -->
<!-- ********************************************************************** -->
<openerp>
<data noupdate="1">
<record model="ir.config_parameter" id="password_size">
<field name="key">auth_generate_password.password_size</field>
<field name="value">12</field>
</record>
<record model="ir.config_parameter" id="password_chars">
<field name="key">auth_generate_password.password_chars</field>
<field name="value">string.ascii_letters + string.digits</field>
</record>
</data>
</openerp>

29
auth_generate_password/data/ir_config_parameter.yml

@ -1,29 +0,0 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Authentification - Generate Password module for Odoo
# Copyright (C) 2014 GRAP (http://www.grap.coop)
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
- !record {model: ir.config_parameter, id: password_size}:
key: auth_generate_password.password_size
value: 12
- !record {model: ir.config_parameter, id: password_chars}:
key: auth_generate_password.password_chars
value: string.ascii_letters + string.digits

2
auth_generate_password/view/view.xml

@ -42,7 +42,5 @@
</field>
</record>
</data>
</openerp>
Loading…
Cancel
Save