Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1706)

Issue 1205045: New proteus library to access Tryton's models like a client (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
15 years, 3 months ago by ced
Modified:
15 years, 3 months ago
Reviewers:
bch, paepke, udono, yangoon1
Visibility:
Public.

Patch Set 1 #

Patch Set 2 : Add Model class generator, handle xxx2many, add missing setup.py #

Patch Set 3 : Add save, don't use kwargs to allow xml-rpc #

Patch Set 4 : Reset _changed in _reload #

Patch Set 5 : Rename select into find to match client naming #

Patch Set 6 : Add _timestamp support #

Patch Set 7 : Handle xxx2many in save #

Patch Set 8 : Fix Pool setup for existing database #

Patch Set 9 : Update docstring, setup parent link #

Total comments: 9

Patch Set 10 : Add language and password for database creation, fix __repr__ of Model #

Patch Set 11 : Fix default_get to handle xxx2many creation #

Patch Set 12 : Add kwarg on Model #

Patch Set 13 : Add test for kwargs with xxx2many #

Total comments: 4

Patch Set 14 : Add multi-config and threading support #

Patch Set 15 : Handle reference, add validation on setter, add class method on Model #

Patch Set 16 : Some fix for XML-RPC #

Patch Set 17 : Add check on many2one and reference to have unmodified Model #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1652 lines, -0 lines) Patch
A COPYRIGHT View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +15 lines, -0 lines 0 comments Download
A INSTALL View 1 chunk +26 lines, -0 lines 0 comments Download
A LICENSE View 1 chunk +674 lines, -0 lines 0 comments Download
A MANIFEST.in View 1 chunk +9 lines, -0 lines 0 comments Download
A README View 1 chunk +35 lines, -0 lines 0 comments Download
A proteus/__init__.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +364 lines, -0 lines 0 comments Download
A proteus/config.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +194 lines, -0 lines 0 comments Download
A proteus/tests/__init__.py View 1 chunk +27 lines, -0 lines 0 comments Download
A proteus/tests/test_config.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +21 lines, -0 lines 0 comments Download
A proteus/tests/test_model.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +249 lines, -0 lines 0 comments Download
A setup.py View 1 chunk +38 lines, -0 lines 0 comments Download

Messages

Total messages: 32
ced
15 years, 3 months ago (2010-05-23 01:00:11 UTC) #1
paepke
What does it mean "like a client"? What is the difference to using netrpc?
15 years, 3 months ago (2010-05-24 10:50:42 UTC) #2
ced
On 2010/05/24 10:50:42, paepke wrote: > What does it mean "like a client"? What is ...
15 years, 3 months ago (2010-05-24 10:54:09 UTC) #3
ced
15 years, 3 months ago (2010-05-24 10:54:15 UTC) #4
paepke
On 2010/05/24 10:54:09, ced wrote: > On 2010/05/24 10:50:42, paepke wrote: > > What does ...
15 years, 3 months ago (2010-05-24 11:36:21 UTC) #5
ced
On 2010/05/24 11:36:21, paepke wrote: > On 2010/05/24 10:54:09, ced wrote: > > On 2010/05/24 ...
15 years, 3 months ago (2010-05-24 11:56:17 UTC) #6
ced
15 years, 3 months ago (2010-05-24 13:49:01 UTC) #7
udono
On 2010/05/24 11:56:17, ced wrote: > On 2010/05/24 11:36:21, paepke wrote: > > On 2010/05/24 ...
15 years, 3 months ago (2010-05-24 16:19:51 UTC) #8
ced
15 years, 3 months ago (2010-05-24 17:39:55 UTC) #9
ced
15 years, 3 months ago (2010-05-25 05:10:09 UTC) #10
ced
15 years, 3 months ago (2010-05-25 05:23:34 UTC) #11
yangoon1
15 years, 3 months ago (2010-05-25 09:23:30 UTC) #12
ced
15 years, 3 months ago (2010-05-26 21:26:52 UTC) #13
ced
15 years, 3 months ago (2010-05-27 20:13:28 UTC) #14
ced
15 years, 3 months ago (2010-05-27 20:53:23 UTC) #15
ced
15 years, 3 months ago (2010-05-27 23:21:16 UTC) #16
udono
http://codereview.appspot.com/1205045/diff/39001/40006 File proteus/__init__.py (right): http://codereview.appspot.com/1205045/diff/39001/40006#newcode43 proteus/__init__.py:43: # TODO call on_change yeah, this would be great! ...
15 years, 3 months ago (2010-05-28 07:46:55 UTC) #17
ced
http://codereview.appspot.com/1205045/diff/39001/40007 File proteus/config.py (right): http://codereview.appspot.com/1205045/diff/39001/40007#newcode48 proteus/config.py:48: def __init__(self, database_name, user, database_type): On 2010/05/28 07:46:55, udono ...
15 years, 3 months ago (2010-05-28 07:50:43 UTC) #18
udono
http://codereview.appspot.com/1205045/diff/39001/40007 File proteus/config.py (right): http://codereview.appspot.com/1205045/diff/39001/40007#newcode48 proteus/config.py:48: def __init__(self, database_name, user, database_type): On 2010/05/28 07:50:44, ced ...
15 years, 3 months ago (2010-05-28 08:06:00 UTC) #19
ced
http://codereview.appspot.com/1205045/diff/39001/40007 File proteus/config.py (right): http://codereview.appspot.com/1205045/diff/39001/40007#newcode48 proteus/config.py:48: def __init__(self, database_name, user, database_type): On 2010/05/28 08:06:00, udono ...
15 years, 3 months ago (2010-05-28 09:43:41 UTC) #20
ced
15 years, 3 months ago (2010-05-28 22:23:00 UTC) #21
ced
15 years, 3 months ago (2010-05-28 22:45:27 UTC) #22
ced
15 years, 3 months ago (2010-05-29 10:54:19 UTC) #23
ced
15 years, 3 months ago (2010-05-29 10:57:43 UTC) #24
bch
http://codereview.appspot.com/1205045/diff/54001/55007 File proteus/config.py (right): http://codereview.appspot.com/1205045/diff/54001/55007#newcode98 proteus/config.py:98: def set_trytond(database_name, user='admin', database_type='postgresql', I think that the name ...
15 years, 3 months ago (2010-06-02 09:46:03 UTC) #25
ced
http://codereview.appspot.com/1205045/diff/54001/55007 File proteus/config.py (right): http://codereview.appspot.com/1205045/diff/54001/55007#newcode98 proteus/config.py:98: def set_trytond(database_name, user='admin', database_type='postgresql', On 2010/06/02 09:46:03, bch wrote: ...
15 years, 3 months ago (2010-06-03 18:22:40 UTC) #26
bch
On 2010/06/03 18:22:40, ced wrote: > http://codereview.appspot.com/1205045/diff/54001/55007 > File proteus/config.py (right): > > http://codereview.appspot.com/1205045/diff/54001/55007#newcode98 > ...
15 years, 3 months ago (2010-06-04 07:54:13 UTC) #27
ced
15 years, 3 months ago (2010-06-06 12:49:23 UTC) #28
bch
On 2010/06/06 12:49:23, ced wrote: > I like this new version, because now i can ...
15 years, 3 months ago (2010-06-07 10:35:14 UTC) #29
ced
15 years, 3 months ago (2010-06-07 19:11:23 UTC) #30
ced
15 years, 3 months ago (2010-06-09 17:54:36 UTC) #31
ced
15 years, 3 months ago (2010-06-09 19:02:51 UTC) #32

          
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b