loops/browser/lobo
2011-09-25 18:07:26 +02:00
..
__init__.py work in progress: grid-based views for Lobo skin, for use with images 2010-08-15 09:26:28 +00:00
configure.zcml work in progress: provide parts for presenting resource lists, starting with grid 2011-09-25 18:07:26 +02:00
README.txt work in progress: lobo layout components 2010-09-11 07:31:31 +00:00
standard.pt work in progress: provide parts for presenting resource lists, starting with grid 2011-09-25 18:07:26 +02:00
standard.py work in progress: provide parts for presenting resource lists, starting with grid 2011-09-25 18:07:26 +02:00
tests.py work in progress: more lobo layout views 2010-09-10 07:56:29 +00: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()