collective.kwetter provides a Plone-integrated frontend for the kwetter microblogging engine.
The goal of collective.kwetter + kwetter is to provide Twitter-like microblogging capabilities inside of Plone.
Initial prototype release.
Currently all users get all messages from all users.
Follow/Unfollow functionality is present in the backend but not yet exposed in collective.kwetter.
- full dashboard
- follow/unfollow
- @attribution and #hashtag linking
- Plone Member profile integration
- etc...
Installation is two-part.
Just depend in your buildout on the egg collective.kwetter
.
Install it as an addon in Plone control-panel or portal_setup.
Reference target is Plone4, untested in Plone3.
Collective.kwetter itself contains a minimal plone4 buildout configuration so you can quickly test and evaluate it.
An example minimal Plone4 buildout configuration with collective.kwetter:
[buildout] parts = instance extends = http://dist.plone.org/release/4.0-latest/versions.cfg find-links = http://dist.repoze.org/ [instance] recipe = plone.recipe.zope2instance eggs = PIL collective.kwetter zcml = collective.kwetter
Use the kwetter buildout.
This will install and run the various kwetter backend daemons.
Note that this is not a Plone buildout, but a separate standalone buildout.
As a Plone developer, you can use the kwetter backend as a 'black box' by just using the JSON API.
The kwetter system consists of the following components:
-
The Plone frontend, which contains:
- kwetter.js AJAX browser component
- Plone integration and view logic
- backend gateway client
kwetter backend.
Buildout-driven installer for the kwetter backend. This installs:
- mongrel2
- kwetter.core
-
The actual messaging backend logic. This runs:
- kwetter-m2 mongrel request handler
- kwetterd message routing and storage
Collective.kwetter communicates with JSON over HTTP with both the web browser and with the kwetter backend.
The various kwetter backend components communicate with JSON over ZeroMQ.
Contributions are welcome. The source is hosted on github collective.
Maintainers of collective.kwetter are Guido Stevens and Paul Stevens. We appreciate any contribution and if a release is needed to be done on pypi, please just contact one of us.
- Paul Stevens <[email protected]>
- Guido Stevens <[email protected]>