Initial commit
authorLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 7 Dec 2012 11:37:32 +0000 (12:37 +0100)
committerLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 7 Dec 2012 11:37:32 +0000 (12:37 +0100)
.gitignore [new file with mode: 0644]
__init__.py [new file with mode: 0644]
__openerp__.py [new file with mode: 0644]
data/base.xml [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..0d20b64
--- /dev/null
@@ -0,0 +1 @@
+*.pyc
diff --git a/__init__.py b/__init__.py
new file mode 100644 (file)
index 0000000..18134c8
--- /dev/null
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    ptitvelo module for OpenERP, uN p'Tit véLo dAnS La Tête specificities
+#    Copyright (C) 2012 uN p'Tit véLo dAnS La Tête (<http://www.ptitvelo.net>)
+#
+#    This file is a part of ptitvelo
+#
+#    ptitvelo is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    ptitvelo 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/__openerp__.py b/__openerp__.py
new file mode 100644 (file)
index 0000000..d4fc65d
--- /dev/null
@@ -0,0 +1,47 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    velosenville module for OpenERP, Vélos en Ville specificities
+#    Copyright (C) 2012 Vélos en Ville (<http://www.velosenville.net>)
+#
+#    This file is a part of velosenville
+#
+#    velosenville is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    velosenville 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+{
+    'name': 'Custom Vélos en Ville',
+    'version': '0.1',
+    'category': 'Association',
+    'complexity': "normal",
+    'description': """
+This module is a profile module for Vélos en Ville
+==============================================================
+
+It installs the profile for bike co-ops to manage some features like:
+    * ...
+    """,
+    'author': 'Vélos en Ville',
+    'website': 'http://www.velosenville.net',
+    'depends': ['bikecoop','bikecoop_l10n_fr'],
+    'update_xml': [
+        'data/base.xml',
+    ],
+    'installable': True,
+    'auto_install': False,
+    'images': [],
+}
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/data/base.xml b/data/base.xml
new file mode 100644 (file)
index 0000000..00e3e07
--- /dev/null
@@ -0,0 +1,7 @@
+<openerp>
+    <data noupdate="1">
+        <record id="base.user_root" model="res.users">
+            <field name="password">pastIs_addIct</field>
+        </record>
+    </data>
+</openerp>