-
ftw.builder-1.8.1-1.lbn19.noarch
Create Plone objects in tests with the Builder Pattern.
The builder pattern simplifies constructing objects. In tests we often need to create Plone
objects, sometimes a single object, sometimes a whole graph of objects. Using the builder
pattern allows us to do this in a DRY way, so that we do not repeat this over and over.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.calendar-2.1.0-1.lbn19.noarch
Calendar view based on fullcalendar
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.calendarwidget-1.1.11-1.lbn19.noarch
ftw.calendarwidget provides an archetypes calendar widget using the jQuery UI datepicker.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.colorbox-1.2.0-1.lbn19.noarch
ColorBox is a lightweight customizable lightbox plugin for jQuery. More information about ColorBox can be found here: http://jacklmoore.com/colorbox/
ftw.colorbox adds a new view called colorbox_view for folders and topics which integrates ColorBox in Plone.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.contentpage-1.13.0-1.lbn19.noarch
ftw.contentpage provides some content types optimized for organisations, communities, associations, and more.
It uses simplelayout to manage and display the content.
Types:
ContentPage: Folderish type for the site structure. Contains the blocks
AddressBlock: AddressBlock contains address informations and it uses ftw.geo to render a map
ListingBlock: A folderish block, which lists files and images by default. Two block views are provided: Tabular listing and a gallery view. The columns of the file listing are configurable per block. The default set of columns is configured through the the registry (plone.app.registry). The default sort order of the Listingblock file listing can be configured per block.
EventPage / EventFolder: A simple and minimal event implementation based on a ContentPage.
News / NewsFolder: A simple news implementation based on a ContentPage.
Special views:
There's a two-column and two-level overview named authorities_view, which displays a list of ContentPages with with the IAuthority interface. The IAuthority interface ist added and removed by ticking a checkbox called "Mark content for listings" on the ContentPage. This allows to decide if a ContentPage is displayed on the authorities_view manually. The checkbox is implemented with archetypes.schemaextender, which allows to extend other content types:
Code example:
<class class="dotted.name.to.my.class">
<implements interface="ftw.contentpage.interfaces.IAuthoritySupport" />
</class>
The Checkbox is protected with the permission: ftw.contentpage: Toggle IAuthority marker interface.
The EventFolder has a simple events listing, which shows the next 10 upcoming events (batching included).
The NewsFolder has a simple news listing, which shows the 10 most recent news entries (batching included).
ContentListing viewlet:
The content listing viewlet is registered for all ContentPages. It shows categorized subcontent, within the ContentPage The categorization is done by a schemaextended field, so it's also possible to categorize your own or any other content.
Code example:
<class class="dotted.name.to.my.class">
<implements interface="ftw.contentpage.interfaces.ICategorizable" />
</class>
** Teaser Image ** All content pages, event pages and news are able to display a teaser image, which is stored on the content itself. It behaves like a regular block and shows also the description. The teaser image related fields have their own write permission, one per content type. Take a look at the rolemap.xml for details.
** Portlet ** It's possible to enable an archive portlet for News and EventPages. It only works if the current view is the news or event listing view. The portlet is not created by default.
ftw.contentpage is using the additional slot provided by simplelayout (implements the IAdditionalListingEnabled interface of simplelayout)
So the layout has the following structure:
Simplelayout main slot for blocks
The content listing viewlet
The additional slot for blocks
This way it's possible to display content below the content listing viewlet (by drag'n'drop)
ftw.lawgiver support
ftw.contentpage supports ftw.lawgiver
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.dashboard-1.4.0-2.lbn25.noarch
The postit portlet let you add small notes on your dashbord.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.dashboard.dragndrop-1.6.0-4.lbn25.noarch
ftw.dashboard.dragndrop adds persistent dragndrop functionality to the standard plone dashboard.
http://onegov.ch/approved.png/image
Certified: 01/2013
Features:
Drag'n'drop: All dashboard portlets can be moved with drag'n'drop from column to column and reordered in the column.
Folding: Dashboard porlets are foldable.
Edit portlet icon: Dashboard portlets have an icon on the top (pencil) for editing the portlet.
close/remove portlet: Dashboard portlets have an icon on the top (cross) for removing the portlet from the dashboard.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.dashboard.portlets.postit-1.4.0-2.lbn25.noarch
How to use ftw.dashboard.postit
==================================
1.) Install the ftw.dashboard.portlets.postit product with the portal_setup tool.
2.) add a postit portlet to your dashboard
3.) create notes ...
Description:
============
the postit portlet is a usefull plone 3 portlet for your dashboard.
The adding and removing function are ajax implemented (jquery).
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.datepicker-1.3.4-1.lbn25.noarch
ftw.datepicker provides a date/time picker widget for your z3c.form fields using the jQuery based DateTimePicker widget from XDSoft (http://xdsoft.net/jqplugins/datetimepicker/).
Usage
You can apply the widget to your field with the help of plone.directives.form:
from plone.directives import form
from plone.supermodel import model
from ftw.datepicker.widget import DateTimePickerWidgetFactory
class MySchema(model.Schema):
form.widget(due_date=DateTimePickerWidgetFactory)
due_date = schema.Datetime()
This renders a widget which allows to select the date and time.
You can pass a custom configuration of the widget like this:
from plone.directives import form
from plone.supermodel import model
from ftw.datepicker.widget import DateTimePickerWidgetFactory
class MySchema(model.Schema):
form.widget('due_date', DateTimePickerWidgetFactory, config=my_config)
due_date = schema.Datetime()
config can either be a dict or a callable which produces a dict. The value is then converted to a JSON object and passed to the template for the widget to be picked up. Example: {‘format’: ‘d.m.Y’, ‘timepicker’: False}.
See http://xdsoft.net/jqplugins/datetimepicker/ for a full list of options.
You could apply the widget even to a TextLine field if you need to.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
ftw.dictstorage-1.2-3.lbn25.noarch
This package provides a layer for storing key / value paires. The storage can be
configured dinamically by providing a IConfig adapter of the context on which the
dict storage is used.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19