Skip to content

Commit

Permalink
[FIX] all: references to Odoo 8.0 version
Browse files Browse the repository at this point in the history
In installation script or documentation

Fixes odoo#10052
  • Loading branch information
mart-e committed Dec 18, 2015
1 parent d1dea61 commit 7892d99
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ a full-featured <a href="https://www.odoo.com">Open Source ERP</a> when you inst

Getting started with Odoo
-------------------------
For a standard installation please follow the <a href="https://www.odoo.com/documentation/8.0/setup/install.html">Setup instructions</a>
For a standard installation please follow the <a href="https://www.odoo.com/documentation/9.0/setup/install.html">Setup instructions</a>
from the documentation.

If you are a developer you may type the following command at your terminal:

wget -O- https://raw.githubusercontent.com/odoo/odoo/master/odoo.py | python
wget -O- https://raw.githubusercontent.com/odoo/odoo/9.0/odoo.py | python

Then follow <a href="https://www.odoo.com/documentation/8.0/tutorials.html">the developer tutorials</a>
Then follow <a href="https://www.odoo.com/documentation/9.0/tutorials.html">the developer tutorials</a>


For Odoo employees
Expand Down
4 changes: 2 additions & 2 deletions addons/crm/web_planner_data.xml
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@
<span class="fa fa-lightbulb-o fa-lg"/>
<strong>Tip:</strong> For developers, you can
use our API to load data through scripts: read
the <a href="https://www.odoo.com/documentation/8.0/api_integration.html" target="_blank">API documentation</a>
the <a href="https://www.odoo.com/documentation/9.0/api_integration.html" target="_blank">API documentation</a>
</div>
</t>

Expand Down Expand Up @@ -528,7 +528,7 @@
<div class="alert alert-info info_icon" role="alert">
<span class="fa fa-lightbulb-o fa-lg"/>
<strong>Tip:</strong>
You can also use our API to load data automatically through scripts: read this <a href="https://www.odoo.com/documentation/8.0/api_integration.html" target="_blank">technical documentation</a>.
You can also use our API to load data automatically through scripts: read this <a href="https://www.odoo.com/documentation/9.0/api_integration.html" target="_blank">technical documentation</a>.
</div>
</t>

Expand Down
2 changes: 1 addition & 1 deletion doc/howtos/themes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Ready to create your own theme? Great. Here are some things you should know befo

.. warning::

This tutorial requires having installed Odoo v8.0 and the Theme Support Engine (website_less) module. https://www.odoo.com/apps/8.0/website_less/
This tutorial requires having installed Odoo v9.0 and the Theme Support Engine (website_less) module. https://www.odoo.com/apps/9.0/website_less/


An introduction for web designers
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/qweb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ API
.. [#othertemplates] although it uses a few others, either for historical
reasons or because they remain better fits for the
use case. Odoo 8.0 still depends on Jinja_ and Mako_.
use case. Odoo 9.0 still depends on Jinja_ and Mako_.
.. _templating:
http://en.wikipedia.org/wiki/Template_processor
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/views.rst
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ Possible children of the view element are:
according to current user parameters, the latter is the direct value from
a :meth:`~openerp.models.Model.read` (except for date and datetime fields
that are `formatted according to user's locale
<https://github.com/odoo/odoo/blob/8.0/addons/web_kanban/static/src/js/kanban.js#L900>`_)
<https://github.com/odoo/odoo/blob/a678bd4e/addons/web_kanban/static/src/js/kanban_record.js#L102>`_)
``read_only_mode``
self-explanatory

Expand Down
10 changes: 5 additions & 5 deletions odoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# To install your odoo development environement type:
#
# wget -O- https://raw.githubusercontent.com/odoo/odoo/8.0/odoo.py | python
# wget -O- https://raw.githubusercontent.com/odoo/odoo/9.0/odoo.py | python
#
# The setup_* subcommands used to boostrap odoo are defined here inline and may
# only depends on the python 2.7 stdlib
Expand Down Expand Up @@ -87,10 +87,10 @@ def cmd_setup_git():
run('git','config','remote.odoo-dev.url','https://github.com/odoo-dev/odoo.git')
run('git','config','remote.odoo-dev.pushurl','git@github.com:odoo-dev/odoo.git')
run('git','remote','update')
# setup 8.0 branch
run('git','config','branch.8.0.remote','odoo')
run('git','config','branch.8.0.merge','refs/heads/8.0')
run('git','checkout','8.0')
# setup 9.0 branch
run('git','config','branch.9.0.remote','odoo')
run('git','config','branch.9.0.merge','refs/heads/9.0')
run('git','checkout','9.0')
else:
printf('no git repo found')

Expand Down
2 changes: 1 addition & 1 deletion setup/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def run(self):
self.ssh("TEMP=/tmp ./%s /S" % setupfile)
self.ssh('PGPASSWORD=openpgpwd /cygdrive/c/"Program Files"/"Odoo %s"/PostgreSQL/bin/createdb.exe -e -U openpg mycompany' % setupversion)
self.ssh('/cygdrive/c/"Program Files"/"Odoo %s"/server/openerp-server.exe -d mycompany -i base --stop-after-init' % setupversion)
self.ssh('net start odoo-server-8.0')
self.ssh('net start odoo-server-%s' % version)
_rpc_count_modules(port=18069)

#----------------------------------------------------------
Expand Down

0 comments on commit 7892d99

Please sign in to comment.