loops/browser/lobo
helmutm f0e29a6269 improve list1 presentation
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@4180 fd906abe-77d9-0310-91a1-e0d9ade77398
2011-02-12 11:43:38 +00: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 improve list1 presentation 2011-02-12 11:43:38 +00:00
standard.py bug fix: keep textDescription empty if no text resource present 2010-10-03 13:54:11 +00: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()