module providing a blog view for plone.
Project description
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.interfaces import IBlogItemIterator
from bda.blogview.atiterator import ATBlogItemQuery
class BlogItemProvider(Explicit):
implements(IBlogItemProvider)
def __init__(self, context, request):
self.context = context
self.request = request
@property
def items(self):
putils = getToolByName(self.context.context, 'plone_utils')
query = ATBlogItemQuery({
'portal_type': putils.getUserFriendlyTypes(),
'sort_on': 'modified',
'sort_order': 'reverse',
})
iterator = getMultiAdapter((self.context, query), IBlogItemIterator)
return [i for i in iterator]
You have to register this implementation as follows:
<adapter
for="zope.interface.Interface
zope.publisher.interfaces.browser.IBrowserRequest"
provides="bda.blogview.interfaces.IBlogItemProvider"
factory=".yourmodule.BlogItemProvider"
name="blog"
/>
Dependencies
plone 3
cornerstone.ui.core
cornerstone.ui.result
bda.contentproxy
Installation
Make the dependent eggs available in your instance,
Import extension profiles in your plone instance.
Copyright
Copyright 2008, BlueDynamics Alliance, Austria - www.bluedynamics.com
Credits
Written by Robert Niederreiter Squarewave Computing, BlueDynamics Alliance, Austria
Licence
GNU General Public Licence 2.0 or later
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file bda.blogview-1.0-beta1.tar.gz.
File metadata
- Download URL: bda.blogview-1.0-beta1.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4b7934f87a02d4e9bdee2e324a1da3401d69086e524379ac255bc4d0fc90a7f
|
|
| MD5 |
5c4371f88751b986290dff7ee0151ede
|
|
| BLAKE2b-256 |
182a879a37b1f651194cdb91a62d956896a0df924ab8966bb102b67fd51b5c6c
|