Skip to main content

Dolmen CMS

Project description

Test-Layer:

functional

Dolmen is a simple application. The package dolmen.app.site provides an easy way to bootstrap your own applications. It exposes two elements, the Dolmen object and the IDolmen interface.

This creation of Dolmen Application is straightforward:

>>> import grokcore.component as grok
>>> from zope.event import notify
>>> from zope.lifecycleevent import ObjectCreatedEvent
>>> from dolmen.app.site import Dolmen, IDolmen

>>> rocks = Dolmen()
>>> notify(ObjectCreatedEvent(rocks))

>>> IDolmen.providedBy(rocks)
True

It’s a valid zope.component ISite:

>>> import zope.component
>>> from zope.component.interfaces import ISite, IPossibleSite
>>> from zope.site.site import LocalSiteManager
>>> IPossibleSite.providedBy(rocks)
True
>>> ISite.providedBy(rocks)
False
>>> site = LocalSiteManager(rocks)
>>> rocks.setSiteManager(site)
>>> rocks.getSiteManager()
<LocalSiteManager ++etc++site>

Dolmen is a dolmen.content Container (read dolmen.content documentation for more information):

>>> from dolmen.content import IContent, IContainer
>>> IContent.providedBy(rocks)
True
>>> IContainer.providedBy(rocks)
True

Changelog

0.2 (2011-03-06)

  • Added proper license file and tagging (ZPL).

  • Don’t use z3c.testsetup for tests anymore.

  • Dependencies on Grok has been dumped. We now depend on grokcore.site.

  • Cleaned code and dependencies.

  • Stripped down the ftesting.zcml of all the useless statements.

0.1 (2009-10-27)

  • Internal release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dolmen.app.site-0.2.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file dolmen.app.site-0.2.tar.gz.

File metadata

File hashes

Hashes for dolmen.app.site-0.2.tar.gz
Algorithm Hash digest
SHA256 5e488707853f7eb473cab7ae5258a7a3df4a4462d566b057e1c6f07cc60f8c45
MD5 008776c5fd230fa969625cc53dbf3f51
BLAKE2b-256 4c37ae458229fd29fbc67453148773d4aa269ac90c8374bfa8567dad9ca1f87b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page