loops/browser/lobo
Helmut Merz 7223b08b5a - provide additional metaInfo field, e.g. for storing source and rights
information for media assets; show this in info popup;
  link image to info popup in Lobo skin standard views
- Lobo listings: allow for restriction of children listed to certain types
2011-08-21 15:52:21 +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: layouts for the Lobo skin 2010-09-18 14:31:56 +00:00
README.txt work in progress: lobo layout components 2010-09-11 07:31:31 +00:00
standard.pt - provide additional metaInfo field, e.g. for storing source and rights 2011-08-21 15:52:21 +02:00
standard.py - provide additional metaInfo field, e.g. for storing source and rights 2011-08-21 15:52:21 +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()