Skip to content

Commit 7892d99

Browse files
committed
[FIX] all: references to Odoo 8.0 version
In installation script or documentation Fixes odoo#10052
1 parent d1dea61 commit 7892d99

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ a full-featured <a href="https://www.odoo.com">Open Source ERP</a> when you inst
1616

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

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

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

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

2828

2929
For Odoo employees

addons/crm/web_planner_data.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
<span class="fa fa-lightbulb-o fa-lg"/>
472472
<strong>Tip:</strong> For developers, you can
473473
use our API to load data through scripts: read
474-
the <a href="https://www.odoo.com/documentation/8.0/api_integration.html" target="_blank">API documentation</a>
474+
the <a href="https://www.odoo.com/documentation/9.0/api_integration.html" target="_blank">API documentation</a>
475475
</div>
476476
</t>
477477

@@ -528,7 +528,7 @@
528528
<div class="alert alert-info info_icon" role="alert">
529529
<span class="fa fa-lightbulb-o fa-lg"/>
530530
<strong>Tip:</strong>
531-
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>.
531+
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>.
532532
</div>
533533
</t>
534534

doc/howtos/themes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Ready to create your own theme? Great. Here are some things you should know befo
1515

1616
.. warning::
1717

18-
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/
18+
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/
1919

2020

2121
An introduction for web designers

doc/reference/qweb.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ API
610610
611611
.. [#othertemplates] although it uses a few others, either for historical
612612
reasons or because they remain better fits for the
613-
use case. Odoo 8.0 still depends on Jinja_ and Mako_.
613+
use case. Odoo 9.0 still depends on Jinja_ and Mako_.
614614
615615
.. _templating:
616616
http://en.wikipedia.org/wiki/Template_processor

doc/reference/views.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ Possible children of the view element are:
861861
according to current user parameters, the latter is the direct value from
862862
a :meth:`~openerp.models.Model.read` (except for date and datetime fields
863863
that are `formatted according to user's locale
864-
<https://github.com/odoo/odoo/blob/8.0/addons/web_kanban/static/src/js/kanban.js#L900>`_)
864+
<https://github.com/odoo/odoo/blob/a678bd4e/addons/web_kanban/static/src/js/kanban_record.js#L102>`_)
865865
``read_only_mode``
866866
self-explanatory
867867

odoo.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# To install your odoo development environement type:
66
#
7-
# wget -O- https://raw.githubusercontent.com/odoo/odoo/8.0/odoo.py | python
7+
# wget -O- https://raw.githubusercontent.com/odoo/odoo/9.0/odoo.py | python
88
#
99
# The setup_* subcommands used to boostrap odoo are defined here inline and may
1010
# only depends on the python 2.7 stdlib
@@ -87,10 +87,10 @@ def cmd_setup_git():
8787
run('git','config','remote.odoo-dev.url','https://github.com/odoo-dev/odoo.git')
8888
run('git','config','remote.odoo-dev.pushurl','[email protected]:odoo-dev/odoo.git')
8989
run('git','remote','update')
90-
# setup 8.0 branch
91-
run('git','config','branch.8.0.remote','odoo')
92-
run('git','config','branch.8.0.merge','refs/heads/8.0')
93-
run('git','checkout','8.0')
90+
# setup 9.0 branch
91+
run('git','config','branch.9.0.remote','odoo')
92+
run('git','config','branch.9.0.merge','refs/heads/9.0')
93+
run('git','checkout','9.0')
9494
else:
9595
printf('no git repo found')
9696

setup/package.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def run(self):
218218
self.ssh("TEMP=/tmp ./%s /S" % setupfile)
219219
self.ssh('PGPASSWORD=openpgpwd /cygdrive/c/"Program Files"/"Odoo %s"/PostgreSQL/bin/createdb.exe -e -U openpg mycompany' % setupversion)
220220
self.ssh('/cygdrive/c/"Program Files"/"Odoo %s"/server/openerp-server.exe -d mycompany -i base --stop-after-init' % setupversion)
221-
self.ssh('net start odoo-server-8.0')
221+
self.ssh('net start odoo-server-%s' % version)
222222
_rpc_count_modules(port=18069)
223223

224224
#----------------------------------------------------------

0 commit comments

Comments
 (0)