{ "info": { "author": "Thomas Buchberger, 4teamwork AG", "author_email": "mailto:info@4teamwork.ch", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 4.3", "Framework :: Plone :: 5.1", "Intended Audience :: Developers", "Programming Language :: Python" ], "description": "ftw.datepicker\n==============\n\n`ftw.datepicker` provides a date/time picker widget for your `z3c.form`\nfields using the jQuery based `DateTimePicker` widget from XDSoft\n(http://xdsoft.net/jqplugins/datetimepicker/). It is compatible with\nPlone 4.3 and 5.1.\n\n\nScreenshot\n----------\n\n.. image:: https://github.com/4teamwork/ftw.datepicker/raw/master/docs/screenshot.png\n\n\nInstallation\n------------\n\nAdd ftw.datepicker to your buildout configuration:\n\n::\n\n [instance]\n eggs +=\n ...\n ftw.datepicker\n\n\nImport the generic setup profile for `ftw.datepicker`.\n\n\nWARNING\n-------\n\nThe datetime fields are not timezone aware!\nTo implement it, please see how to do it at:\n\nhttps://github.com/plone/plone.app.event/blob/master/plone/app/event/dx/behaviors.py\n\n\nUsage\n-----\n\nYou can apply the widget to your field with the help of\n`plone.directives.form`:\n\n.. code:: python\n\n from plone.directives import form\n from plone.supermodel import model\n from ftw.datepicker.widget import DateTimePickerWidgetFactory\n\n class MySchema(model.Schema):\n form.widget(due_date=DateTimePickerWidgetFactory)\n due_date = schema.Datetime()\n\nThis renders a widget which allows to select the date and time.\n\nYou can pass a custom configuration of the widget like this:\n\n.. code:: python\n\n from plone.directives import form\n from plone.supermodel import model\n from ftw.datepicker.widget import DateTimePickerWidgetFactory\n\n class MySchema(model.Schema):\n form.widget('due_date', DateTimePickerWidgetFactory, config=my_config)\n due_date = schema.Datetime()\n\n`config` can either be a dict or a callable which produces a dict. The value\nis then converted to a JSON object and passed to the template for the widget\nto be picked up. Example: `{'format': 'd.m.Y', 'timepicker': False}`.\n\nSee http://xdsoft.net/jqplugins/datetimepicker/ for a full list of options.\n\nYou could apply the widget even to a `TextLine` field if you need to.\n\n\nDevelopment\n-----------\n\nThe jQuery plugin can be downloaded and extracted into its own folder inside\n`ftw/datepicker/resources/js`. Only the files defined in the profile's\nCSS and JS registry will be used.\n\n\nLinks\n-----\n\n- Github: https://github.com/4teamwork/ftw.datepicker\n- Issues: https://github.com/4teamwork/ftw.datepicker/issues\n- Continuous integration: https://jenkins.4teamwork.ch/search?q=ftw.datepicker\n\n\nCopyright\n---------\n\nThis package is copyright by `4teamwork `_.\n\n``ftw.datepicker`` is licensed under GNU General Public License, version 2.\n\nChangelog\n=========\n\n\n1.4.0 (2019-03-20)\n------------------\n\n- Move ressources to plone bundle. [busykoala]\n\n\n1.3.4 (2018-07-23)\n------------------\n\n- Disable autocompleting and autofilling of datepicker fields. [tarnap]\n\n\n1.3.3 (2018-05-24)\n------------------\n\n- Fix issue with language format selection for deployments\n with mutliple languages AND non-combined language codes.\n [lgraf]\n\n\n1.3.2 (2018-04-13)\n------------------\n\n- Fix insert-after reference in the JS registry. [phgross]\n\n1.3.1 (2018-04-12)\n------------------\n\n- Use minified version of the jquery.datetimepicker JS. [phgross]\n\n1.3.0 (2018-03-19)\n------------------\n\n- Add support for combined (country specific) language codes. [mathias.leimgruber]\n\n- Update DateTimePicker to version 2.5.18. [mathias.leimgruber]\n\n- Add Plone 5.1 support [njohner]\n\n\n1.2.1 (2017-06-22)\n------------------\n\n- Support overlays by triggering a load and reloaded event.\n [mathias.leimgruber]\n\n\n1.2.0 (2017-02-22)\n------------------\n\n- Update translations aka make them work.\n [mathias.leimgruber]\n\n- Do not allow a year before 1900.\n strftime in python 2.7 does not support years before 1900.\n [mathias.leimgruber]\n\n- Implement additional config options.\n [tschanzt]\n\n- Drop compatibility with Plone 4.1 and Plone 4.2.\n [mbaechtold]\n\n\n1.1.2 (2016-07-25)\n------------------\n\n- Fix import/export of registry.xml.\n [mbaechtold]\n\n\n1.1.1 (2015-12-04)\n------------------\n\n- Minify js resources.\n [mathias.leimgruber]\n\n\n1.1.0 (2015-09-30)\n------------------\n\n- Make it possible to use different dateformats depending on the current language.\n [tschanzt]\n\n- Use DateTimePicker widget from XDSoft which also supports time picking\n (http://xdsoft.net/jqplugins/datetimepicker/).\n Attention: Support for Plone 4.0.x has been dropped.\n [mbaechtold]\n\n\n1.0.5 (2015-08-03)\n------------------\n\n- Fixed calendar icon for Plone 4.3 sites.\n [phgross]\n\n\n1.0.4 (2014-02-12)\n------------------\n\n- Moved package to GitHub.\n [lknoepfel]\n\n\n1.0.3 (2012-11-28)\n------------------\n\n- Adjust javscripts: Use $ instead of deprecated jq.\n [phgross]\n\n\n1.0.2 (2012-09-11)\n------------------\n\n- Converter: Added additional date form patterns for swiss-french format.\n Issue #223 Kalender in der franz. Version\n https://extranet.4teamwork.ch/support/ph-vs/tracker/223\n [philippegross]\n\n\n1.0.1 (2012-02-24)\n------------------\n\n- Added some French translations\n [ttschanz]\n\n- Fix date parsing for french language (support lowercase month names).\n [jone]\n\n\n1.0 (2011-11-17)\n----------------\n\n- Final release.\n [phgross]\n\n\n1.0a10 (2011-09-29)\n-------------------\n\n- Fixed changelog, and make it zest.releaser friendly.\n [phgross]\n\n\n1.0a9 (2011-09-29)\n------------------\n\n- Issue #1176 alle translatinos mit from zope.i18n import translate\n https://extranet.4teamwork.ch/projects/opengever-kanton-zug/sprint-backlog/1176\n [eschmutz]\n\n- added test-buildout for plone 4.1\n [eschmutz]\n\n1.0a8\n-----\n\n- fixed test: added zope.schema.Field() to text.form\n [7.7.2011, elio.schmutz]\n\n1.0a7\n-----\n\n- added Translation for DateTimeParseError\n [ttschanz]\n\n1.0a6\n-----\n\n- fixed bug that ftw.datepicker fails when a date is lowercase\n [ttschanz]\n\n1.0a5\n-----\n\n- Removed inline import of jquery.ui.all.css and installing\n collective.js.jqueryui on installation instead\n [01.12.2010, fsprenger]\n\n1.0a4\n-----\n\n\n1.0a3\n-----\n\n- When installing the profile, the datepicker is configured as default widget.\n [jbaumann]\n\n1.0a2\n-----\n\n\n1.0\n---\n\n- Initial release", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/4teamwork/ftw.datepicker", "keywords": "ftw 4teamwork widget date picker", "license": "GPL2", "maintainer": "Thomas Buchberger", "maintainer_email": "", "name": "ftw.datepicker", "package_url": "https://pypi.org/project/ftw.datepicker/", "platform": "", "project_url": "https://pypi.org/project/ftw.datepicker/", "project_urls": { "Homepage": "https://github.com/4teamwork/ftw.datepicker" }, "release_url": "https://pypi.org/project/ftw.datepicker/1.4.0/", "requires_dist": null, "requires_python": "", "summary": "A z3c.form datepicker widget (Maintainer Thomas Buchberger)", "version": "1.4.0" }, "last_serial": 5823427, "releases": { "1.0.4": [ { "comment_text": "", "digests": { "md5": "60ed9866bcd267df8ea24e8ee8bda73d", "sha256": "57dc8f1507a6279013837f2d5d92c8ea4ad704aaa5c3fa272a8136375a506716" }, "downloads": -1, "filename": "ftw.datepicker-1.0.4.zip", "has_sig": false, "md5_digest": "60ed9866bcd267df8ea24e8ee8bda73d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22570, "upload_time": "2014-02-12T12:09:27", "url": "https://files.pythonhosted.org/packages/7e/24/3e65d1c3d4ee989cd0a5fc4ffb4aec10745d346b551a72af80725e6d0967/ftw.datepicker-1.0.4.zip" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "98086e271453a11d102c9a15d65ca313", "sha256": "4829938962fca122668941b8c78eea3d26c63c284d84fc532d37e4f31a2e10e8" }, "downloads": -1, "filename": "ftw.datepicker-1.0.5.zip", "has_sig": false, "md5_digest": "98086e271453a11d102c9a15d65ca313", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22628, "upload_time": "2015-08-03T07:08:45", "url": "https://files.pythonhosted.org/packages/53/40/60295c1148d9712024a3fc06227b95a6e85cd13567b8aaecd910721c9067/ftw.datepicker-1.0.5.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "aef955709ecdbbf547d6e414e3a52fcc", "sha256": "d50d8b6aedef2ba0f8f1c219dad58d482d6f89a3fc1285e725216a3bcd90a283" }, "downloads": -1, "filename": "ftw.datepicker-1.1.0.tar.gz", "has_sig": false, "md5_digest": "aef955709ecdbbf547d6e414e3a52fcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217728, "upload_time": "2015-09-30T14:06:32", "url": "https://files.pythonhosted.org/packages/b8/54/2d8c224708159d5f61eb8e64f385cff19ddd536ce9a1474d52f51ba7586d/ftw.datepicker-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "a56d176eb8ec806d8f815cff8241886a", "sha256": "d87bd754efe870d55dd5d5373ccc87402f90ade7c6f7c7edbf523cfce52e9387" }, "downloads": -1, "filename": "ftw.datepicker-1.1.1.zip", "has_sig": false, "md5_digest": "a56d176eb8ec806d8f815cff8241886a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236087, "upload_time": "2015-12-04T10:32:33", "url": "https://files.pythonhosted.org/packages/d1/d7/70996ce517d9ceb76b60d64151ccdf5238de58c0e83bf576024abd59d47c/ftw.datepicker-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "50a6ff135054bb2fbddc9a0dcad4259d", "sha256": "3f94ef0a2bc6d669b08753e3b76a2bfbc8b24476a76ce6e87d449e2cf19b5a63" }, "downloads": -1, "filename": "ftw.datepicker-1.1.2.tar.gz", "has_sig": false, "md5_digest": "50a6ff135054bb2fbddc9a0dcad4259d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218043, "upload_time": "2016-07-25T15:24:56", "url": "https://files.pythonhosted.org/packages/f6/95/9948a9e48baff4ab9147f4d2727fdc5c4a2cbd60fe94c5510f4f512be613/ftw.datepicker-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ea48947f8b6d325bb84a5348e1624c1b", "sha256": "74cf62aba8bab2bc9f63ffa56cc8f127900feb89dfadac2f6f74f15a4b93da82" }, "downloads": -1, "filename": "ftw.datepicker-1.2.0.tar.gz", "has_sig": false, "md5_digest": "ea48947f8b6d325bb84a5348e1624c1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219070, "upload_time": "2017-02-22T08:04:46", "url": "https://files.pythonhosted.org/packages/0b/7d/45f44956ed23e9d9212408c1fd0ccf20f133d5f89d76eef95716e3b66a5a/ftw.datepicker-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "ef0ff43e20d482b0f3581505d92082e7", "sha256": "2ad1971e8e74fade3f992441e8570058b7bc65dfe0a5021ad410483a8d895fce" }, "downloads": -1, "filename": "ftw.datepicker-1.2.1.tar.gz", "has_sig": false, "md5_digest": "ef0ff43e20d482b0f3581505d92082e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219242, "upload_time": "2017-06-22T10:24:42", "url": "https://files.pythonhosted.org/packages/cc/e6/1004e79a4d14e07e488cc1220aa17c444dc95a39ea4c91aed64d8b8a30c2/ftw.datepicker-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "629bc120c66b544d0f5bbde2368ed7f6", "sha256": "33bbf315e520e99571003056e80d9e39539c834cc1e06263241874c9eaa3f1c1" }, "downloads": -1, "filename": "ftw.datepicker-1.3.0.tar.gz", "has_sig": false, "md5_digest": "629bc120c66b544d0f5bbde2368ed7f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128027, "upload_time": "2018-03-19T07:37:21", "url": "https://files.pythonhosted.org/packages/22/d7/edd783f3dbebe318296c22df5a843172a25695d32f55cebfc12c85c4215f/ftw.datepicker-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "565838b6ee1a5eb2eeb41cf411ecec14", "sha256": "bcebce99a81d4551db31e5324ac50c938c3cebc9660ca5e3b4fd88269fc34799" }, "downloads": -1, "filename": "ftw.datepicker-1.3.1.tar.gz", "has_sig": false, "md5_digest": "565838b6ee1a5eb2eeb41cf411ecec14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147397, "upload_time": "2018-04-12T07:34:14", "url": "https://files.pythonhosted.org/packages/9d/b5/c06f6f7bca35c04b204fe558d953b92481d629e9b39ce7abeacdb841584d/ftw.datepicker-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "e116ea5052712464a591f564bd16cd82", "sha256": "318536341e21f3f98c13d3211493cf9d7bae665de004362b99d8d96f2aadc43e" }, "downloads": -1, "filename": "ftw.datepicker-1.3.2.tar.gz", "has_sig": false, "md5_digest": "e116ea5052712464a591f564bd16cd82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147457, "upload_time": "2018-04-13T18:37:05", "url": "https://files.pythonhosted.org/packages/d5/17/e5e2cc658513a87a3147e7907420dc0e6e4d14575d3bb7be14b6a85c05e8/ftw.datepicker-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "9b4f07fcd9d22bb8050794da5b44ce4d", "sha256": "bbc46af5005891edf64240187d6fd37e9ac58fe3d043aa4768c73fea9c2f8555" }, "downloads": -1, "filename": "ftw.datepicker-1.3.3.tar.gz", "has_sig": false, "md5_digest": "9b4f07fcd9d22bb8050794da5b44ce4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147585, "upload_time": "2018-05-24T15:08:50", "url": "https://files.pythonhosted.org/packages/a4/ad/61ca9331b59b166987a66d1bfedc355854b22bf6693bfec42001dba92e27/ftw.datepicker-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "14475b33ecf9948c2f172480c0af570a", "sha256": "150311e27e441ac754d65c4b70e015d2934b894310b8adc021540b8d928144dd" }, "downloads": -1, "filename": "ftw.datepicker-1.3.4.tar.gz", "has_sig": false, "md5_digest": "14475b33ecf9948c2f172480c0af570a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147650, "upload_time": "2018-07-23T11:53:56", "url": "https://files.pythonhosted.org/packages/df/02/13150720fd32b0c17c41873a337c63818a0f94b5620a8e70537da634f759/ftw.datepicker-1.3.4.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "9201877b21283f7eadc975217b9c4d40", "sha256": "a38300ab3e88880291047b498788ce72f755c211ed91b16e0b565a87e7895768" }, "downloads": -1, "filename": "ftw.datepicker-1.4.0.tar.gz", "has_sig": false, "md5_digest": "9201877b21283f7eadc975217b9c4d40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149936, "upload_time": "2019-03-20T09:01:37", "url": "https://files.pythonhosted.org/packages/fe/aa/7f5c7de825fb6dbdf4ee4fcd1b4c3417767e1eb3df973c60a6a62c80aff5/ftw.datepicker-1.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9201877b21283f7eadc975217b9c4d40", "sha256": "a38300ab3e88880291047b498788ce72f755c211ed91b16e0b565a87e7895768" }, "downloads": -1, "filename": "ftw.datepicker-1.4.0.tar.gz", "has_sig": false, "md5_digest": "9201877b21283f7eadc975217b9c4d40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149936, "upload_time": "2019-03-20T09:01:37", "url": "https://files.pythonhosted.org/packages/fe/aa/7f5c7de825fb6dbdf4ee4fcd1b4c3417767e1eb3df973c60a6a62c80aff5/ftw.datepicker-1.4.0.tar.gz" } ] }