Metadata-Version: 1.1
Name: ftw.calendarwidget
Version: 1.1.8
Summary: A plone widget for archetypes using the jQuery UI calendar widget
Home-page: https://github.com/4teamwork/ftw.calendarwidget
Author: 4teamwork GmbH
Author-email: mailto:info@4teamwork.ch
License: GPL2
Description: ftw.calendarwidget
        ==================
        
        ``ftw.calendarwidget`` provides an archetypes calendar widget using
        the `jQuery UI datepicker <http://jqueryui.com/demos/datepicker/>`_.
        
        .. figure:: http://onegov.ch/approved.png/image
           :align: right
           :target: http://onegov.ch/community/zertifizierte-module/ftw.calendarwidget
        
           Certified: 01/2013
        
        
        Usage
        -----
        
        - Add ``ftw.calendarwidget`` to your buildout configuration:
        
        ::
        
            [instance]
            eggs +=
                ...
                ftw.calendarwidget
        
        
        - Import the generic setup profile for ``ftw.calendarwidget``
        
        - Use it in your archetypes schema:
        
        ::
        
            >>> from Products.Archetypes import atapi
            >>> from ftw.calendarwidget.browser.widgets import FtwCalendarWidget
        
            >>> MySchema = atapi.Schema((
            ...
            ...     atapi.DateTimeField(
            ...         name='mydate',
            ...         widget=FtwCalendarWidget(label='My Date')
            ...     ),
            ...
            ... ))
        
        
        Screenshot
        ----------
        
        .. image:: https://github.com/4teamwork/ftw.calendarwidget/raw/master/docs/screenshot.png
        
        
        Links
        -----
        
        - Github project repository: https://github.com/4teamwork/ftw.calendarwidget
        - Issue tracker: https://github.com/4teamwork/ftw.calendarwidget/issues
        - Package on pypi: http://pypi.python.org/pypi/ftw.calendarwidget
        - Continuous integration: https://jenkins.4teamwork.ch/search?q=ftw.calendarwidget
        
        
        Copyright
        ---------
        
        This package is copyright by `4teamwork <http://www.4teamwork.ch/>`_.
        
        ``ftw.calendarwidget`` is licensed under GNU General Public License, version 2.
        
        .. image:: https://cruel-carlota.pagodabox.com/99e61f1895113404713b9c809ba36e97
           :alt: githalytics.com
           :target: http://githalytics.com/4teamwork/ftw.calendarwidget
        
        Changelog
        =========
        
        
        1.1.8 (2013-08-26)
        ------------------
        
        - Fix month picking for Plone 4.3 jQuery version.
          [jone]
        
        
        1.1.7 (2013-03-17)
        ------------------
        
        - Plone 4.3 support, The DateTimeWidget changed.
          [mathias.leimgruber]
        
        
        1.1.6 (2013-01-30)
        ------------------
        
        - Do not use a square to mark required field, this will be done by CSS.
          [Julian Infanger]
        
        
        1.1.5 (2013-01-21)
        ------------------
        
        - onegov.ch approved: add badge to readme.
          [jone]
        
        - Make ftw_calendar.js fire the 'calendar_after_change' event again.
          [tschanzt]
        
        - Don't split date with '/' use '-' instead.
          [tschanzt]
        
        
        1.1.4 (2012-10-16)
        ------------------
        
        - Fixed widget selecting wrong month.
          [Julian Infanger]
        
        - Fix IE8 issues.
          [mathias.leimgruber]
        
        - Added test setup and some integration tests.
          [mathias.leimgruber]
        
        - Fix communication between datepick widget and select fields.
          [mathias.leimgruber]
        
        
        1.1.3 (2012-08-24)
        ------------------
        
        - Fix missing Label.
          [tschanzt]
        
        
        1.1.2 (2012-03-09)
        ------------------
        
        - Prepare for public release.
          [jone]
        
        
        1.1.1 (2012-03-07)
        ------------------
        
        - Fix Manifest.in (include .rst)
          [mathias.leimgruber]
        
        
        1.1 (2012-03-05)
        ----------------
        
        - Code cleanup and documentation.
        
        
        1.0c2 (2011-04-01)
        ------------------
        
        - Little bit refactoring, because of some js errors.
          Added calendar_after_change jquery event on at-field-wrapper element.
          [mathias.leimgruber]
        
        
        1.0c1 (2011-02-02)
        ------------------
        
        - Fix default_date (for IE7).
          [mathias.leimgruber]
        
        - Clean up js code for IE7/8.
          [mathias.leimgruber]
        
        
        1.0a2 (2010-10-26)
        ------------------
        
        - removed unused browserlayer
          [mathias.leimgruber]
        
        - fixed resources
          [phgross]
        
        - change collective.jqueryui to collective.js.jqueryui and fixed
          some templates for plone4 support
          [phgross]
        
        
        1.0a1 (2010-04-13)
        ------------------
        
        - Initial release
        
Keywords: ftw calendar widget archetypes plone
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.1
Classifier: Framework :: Plone :: 4.2
Classifier: Framework :: Plone :: 4.3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
