You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by jp...@apache.org on 2013/02/10 01:16:53 UTC

svn commit: r1444466 [1/5] - in /chemistry/cmislib/branches/binding_refactor/src: cmislib/ tests/

Author: jpotts
Date: Sun Feb 10 00:16:52 2013
New Revision: 1444466

URL: http://svn.apache.org/r1444466
Log:
Moved everything but CmisClient from model.py to domain.py, moved all Atom Pub specific logic to atompub_binding.py, moved generic util functions to util.py, changed method signature on ACL.addEntry() so that callers do not have to instantiate an ACE object before calling, created a starter browser_binding.py module

Added:
    chemistry/cmislib/branches/binding_refactor/src/cmislib/atompub_binding.py
    chemistry/cmislib/branches/binding_refactor/src/cmislib/browser_binding.py
    chemistry/cmislib/branches/binding_refactor/src/cmislib/cmis_services.py
    chemistry/cmislib/branches/binding_refactor/src/cmislib/domain.py
    chemistry/cmislib/branches/binding_refactor/src/cmislib/util.py
Modified:
    chemistry/cmislib/branches/binding_refactor/src/cmislib/__init__.py
    chemistry/cmislib/branches/binding_refactor/src/cmislib/model.py
    chemistry/cmislib/branches/binding_refactor/src/tests/cmislibtest.py
    chemistry/cmislib/branches/binding_refactor/src/tests/settings.py

Modified: chemistry/cmislib/branches/binding_refactor/src/cmislib/__init__.py
URL: http://svn.apache.org/viewvc/chemistry/cmislib/branches/binding_refactor/src/cmislib/__init__.py?rev=1444466&r1=1444465&r2=1444466&view=diff
==============================================================================
--- chemistry/cmislib/branches/binding_refactor/src/cmislib/__init__.py (original)
+++ chemistry/cmislib/branches/binding_refactor/src/cmislib/__init__.py Sun Feb 10 00:16:52 2013
@@ -20,6 +20,7 @@
 Define package contents so that they are easy to import.
 """
 
-from model import CmisClient, Repository, Folder
+from model import CmisClient
+from domain import Repository, Folder
 
 __all__ = ["CmisClient", "Repository", "Folder"]