Skip to content

Commit

Permalink
fix 9.0-dev branch
Browse files Browse the repository at this point in the history
For unknown reason merge from 9.0 to 9.0-dev
421253c
skipped some changes
  • Loading branch information
Ivan Yelizariev committed Feb 21, 2016
1 parent cc3668c commit 2c17db7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/development.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Development
===========

Structure of SaaS system:
-------------------------

* SaaS Portal - main database for control servers and clients, manage client templates and plans.
* SaaS Servers - technical databases to control client databases. SaaS server create, edit, delete databases. Each SaaS Server can be installed on a separate machine (e.g. VPS)
* SaaS Clients - client database to be used by customers. Each SaaS Client is attached to a SaaS Server.

6 changes: 5 additions & 1 deletion oauth_provider/models/oauth_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
from openerp import models, fields, api
from datetime import datetime, timedelta
from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT
from oauthlib import common as oauthlib_common

try:
from oauthlib import common as oauthlib_common
except:
pass

import uuid

Expand Down

0 comments on commit 2c17db7

Please sign in to comment.