Log in or register to vote.

bda.blogview

module providing a blog view for plone.

============
bda.blogview
============

Overview
========

This package contains a blog-like view. It allows you to use all Archtypes based
content to be viewed as blog entries, as long as they follow the specs of
bda.contentproxy.

If commenting is allowed on an object, the comments are displayed as well. The
view provides commenting controls for the displayed objects directly.

To make the blogview work, you have to provide an IBlogItemProvider implementing
object.

Example::

from zope.interface import implements
from zope.component import getMultiAdapter

from Acquisition import Explicit

from Products.CMFPlone.utils import getToolByName

from bda.blogview.interfaces import IBlogItemProvider
from bda.blogview ...

0