Browse Source

[CHNG]:RST File Edited

pull/11/merge
SHEREEF PT 8 years ago
parent
commit
df5ebedcfe
  1. 3
      developer_mode/README.rst
  2. 22
      developer_mode/README.rst~
  3. 2
      developer_mode/__openerp__.py
  4. 41
      developer_mode/__openerp__.py~

3
developer_mode/README.rst

@ -8,7 +8,6 @@ Features
* Automatically Trigger Developer Mode. * Automatically Trigger Developer Mode.
* Showing Running DB On Left Top. * Showing Running DB On Left Top.
* Select a range of date limit(days) in integer form
* Update Modules Easily. * Update Modules Easily.
@ -19,4 +18,4 @@ Features
Credits Credits
======= =======
Nilmar Shereef @ cybrosys, shereef@cybrosys.in Nilmar Shereef @ cybrosys, shereef@cybrosys.in

22
developer_mode/README.rst~

@ -0,0 +1,22 @@
Automatic Developer Mode v8
===========================
This module aims to reduce the repeated works of a Odoo Developer.
Features
========
* Automatically Trigger Developer Mode.
* Showing Running DB On Left Top.
* Select a range of date limit(days) in integer form
* Update Modules Easily.
.. note::
# If you installed any other tool, This module may not work properly.
# There is a dev mode property missing issue with website module.
Credits
=======
Nilmar Shereef @ cybrosys, shereef@cybrosys.in

2
developer_mode/__openerp__.py

@ -22,7 +22,7 @@
############################################################################## ##############################################################################
{ {
'name': "Automatic Developer Mode", 'name': "Automatic Developer Mode",
'summary': """Automatically Activate Developer Mode""", 'summary': """Automatically Activate Developer Mode & Running DB Name on Left Top""",
'version': '8.0.2.0.0', 'version': '8.0.2.0.0',
'author': 'Cybrosys Techno Solutions', 'author': 'Cybrosys Techno Solutions',
'website': "http://www.cybrosys.com", 'website': "http://www.cybrosys.com",

41
developer_mode/__openerp__.py~

@ -0,0 +1,41 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2009-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
# Author: Nilmar Shereef(<http://www.cybrosys.com>)
# you can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# It is forbidden to publish, distribute, sublicense, or sell copies
# of the Software or modified copies of the Software.
#
# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': "Automatic Developer Mode",
'summary': """Automatically Activate Developer Mode""",
'version': '8.0.2.0.0',
'author': 'Cybrosys Techno Solutions',
'website': "http://www.cybrosys.com",
'company': 'Cybrosys Techno Solutions',
'category': 'Extra Tools',
'depends': ['base', 'web', 'base_setup'],
'data': [
'views/web_view.xml',
'security/security_data.xml',
'views/developer_mode_view.xml',
],
'images': ['static/description/banner.jpg'],
'license': 'AGPL-3',
'installable': True,
'auto_install': False,
}
Loading…
Cancel
Save