Skip to content

Commit

Permalink
fix: make the directory a direct OpenERP/Odoo module.
Browse files Browse the repository at this point in the history
fix: pkg: extract licence towards the LICENSE file.
  • Loading branch information
vaab committed May 18, 2015
1 parent 6d96147 commit cbd5eb0
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 79 deletions.
15 changes: 15 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Version 8.0

Valentin LAB with sudokeys

Version 7.0

Valentin LAB with tuxservices for CARIF/OREF

Version 6.1

Valentin LAB with simplee.fr for CARIF/OREF

Version 6.0

Boris Timokhin, Dmitry, Zhuravlev-Nevsky for InfoSreda LLC
12 changes: 12 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
This program 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.

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 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/>.
3 changes: 3 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-

import gmap ## flake8: noqa
20 changes: 0 additions & 20 deletions web_google_map/__openerp__.py → __openerp__.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,5 @@
# -*- coding: utf-8 -*-

##############################################################################
#
# Authors: Valentin LAB for simplee.fr and Boris Timokhin, Dmitry
# Zhuravlev-Nevsky for InfoSreda LLC
#
# This program 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.
#
# 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 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': 'Web Map',
'version': '0.4.0',
Expand Down
17 changes: 17 additions & 0 deletions gmap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-

from openerp.osv import osv, fields


class res_partner(osv.osv):

_name = 'res.partner'
_inherit = 'res.partner'

_columns = {
'lat': fields.float(u'Latitude', digits=(9, 6)),
'lng': fields.float(u'Longitude', digits=(9, 6)),
'map': fields.dummy(),
}

res_partner()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 0 additions & 22 deletions web_google_map/__init__.py

This file was deleted.

37 changes: 0 additions & 37 deletions web_google_map/gmap.py

This file was deleted.

0 comments on commit cbd5eb0

Please sign in to comment.