loops/loops/browser/lobo
2024-10-02 12:54:34 +02:00
..
__init__.py start working on Python3-compatible version 2024-09-23 17:30:48 +02:00
configure.zcml start working on Python3-compatible version 2024-09-23 17:30:48 +02:00
README.txt start working on Python3-compatible version 2024-09-23 17:30:48 +02:00
standard.pt start working on Python3-compatible version 2024-09-23 17:30:48 +02:00
standard.py more Python3 fixes: compound, knowledge, versioning 2024-09-27 09:37:54 +02:00
tests.py avoid testing deprecation errors with Python3.12 2024-10-02 12:54:34 +02:00

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

  ($Id$)

Let's do some basic set up

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

  >>> from zope import component, interface

and setup a simple loops site with a concept manager and some concepts
(with all the type machinery, what in real life is done via standard
ZCML setup):

  >>> from loops.tests.setup import TestSite
  >>> t = TestSite(site)
  >>> concepts, resources, views = t.setup()


Using the Lobo Blueprint-based Layout Views
===========================================

  >>> from loops.browser.lobo.standard import Layout


Fin de partie
=============

  >>> placefulTearDown()