loops/system/sync
helmutm eddf4287ec work in progress: loops site synchronization: export (and subsequent import) of changes
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3729 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-02-14 09:51:49 +00:00
..
__init__.py work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00
browser.py work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00
configure.zcml work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00
control.pt work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00
README.txt work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00
tests.py work in progress: loops site synchronization: export (and subsequent import) of changes 2010-02-14 09:51:49 +00:00

===============================================================
loops - Linked Objects for Organization and Processing Services
===============================================================

  ($Id$)

  >>> from zope import component
  >>> from zope.traversing.api import getName

Let's set up a loops site with basic and example concepts and resources.

  >>> from zope.app.testing.setup import placefulSetUp, placefulTearDown
  >>> site = placefulSetUp(True)

  >>> from loops.expert.testsetup import TestSite
  >>> t = TestSite(site)
  >>> concepts, resources, views = t.setup()
  >>> loopsRoot = site['loops']
  >>> len(concepts), len(resources), len(views)
  (30, 3, 1)


Synchronize: Transfer Changes from one loops Site to Another
============================================================

  >>> from loops.system.sync.browser import SyncChanges


Fin de Partie
=============

  >>> placefulTearDown()