{ "info": { "author": "Plone Foundation", "author_email": "plone-developers@lists.sourceforge.net", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 5.0", "Framework :: Plone :: 5.1", "Programming Language :: Python", "Programming Language :: Python :: 2.7" ], "description": "Introduction\n============\n\nA z3c.form-based widget for composing a Query string/search.\n\nThis widget is used by the contentlisting tile and the dexterity-based version\nof plone.app.collection (>2.0), to make selections, and 'build' your query. It\nstores a list of dictionaries containing the query you've build. This query is\nbeing parsed by using plone.app.collection and that used\nplone.app.contentlisting to display the results in the tile.\n\n\nInstallation\n============\n\nIf you install plone.formwidget.querystring, you probably want to use it in\nan add-on product for Plone. Therefore you can add it to the setup.py of your\npackage::\n\n install_requires=[\n 'plone.formwidget.querystring',\n ...\n ],\n\nYou probably want to also use it to the list of dependencies in your generic\nsetup profile (profiles/default/metadata.xml)::\n\n \n 1\n \n profile-plone.formwidget.querystring:default\n \n \n\n\nDexterity Widget\n================\n\nTo assign the plone.formwidget.querystring widget to a field in your custom\ncontent type, you can use a plone.autoform directive in the interfaces\ndefinition (interfaces.py)::\n\n\n from plone.formwidget.querystring.widget import QueryStringFieldWidget\n\n\n class IMyDexteritySchema(form.Schema):\n\n form.widget(query=QueryStringFieldWidget)\n query = schema.List(\n title=_(u'label_query', default=u'Search terms'),\n description=_(u\"\"\"Define the search terms for the items you want to\n list by choosing what to match on.\n The list of results will be dynamically updated\"\"\"),\n value_type=schema.Dict(value_type=schema.Field(),\n key_type=schema.TextLine()),\n required=False\n )\n\n\n.. note::\n\n See:: See\n https://github.com/plone/plone.app.collection/blob/master/plone/app/collection/interfaces.py#L16\n and\n https://github.com/plone/plone.app.contentlistingtile/blob/master/plone/app/contentlistingtile/tile.py#L18\n for further examples of how to use plone.formwidget.querystring.\n\n\nCredits\n=======\n\n * Kim Chee Leong\n * Ralph Jacobs\n * Jonas Baumann\n * Hanno Schlichting\n * Timo Stollenwerk\n\nChangelog\n=========\n\n1.1.10 (2017-08-09)\n-------------------\n\nBug fixes:\n\n- Recent Plone 4.3 versions have a change in the base href calculation. Fix\n calculation of the baseUrl in updating the queryresults in the widgets if\n /edit is part of the base href.\n [fredvd, maurits]\n\n\n1.1.9 (2017-05-06)\n------------------\n\nBug fixes:\n\n- Make \"Remove line\" from input.pt translatable\n\n\n1.1.8 (2016-12-19)\n------------------\n\nBug fixes:\n\n- Prevent ASCII error for encode/decode in utf8 into converter.\n [bsuttor]\n\n\n1.1.7 (2016-08-15)\n------------------\n\nBug fixes:\n\n- Use zope.interface decorator.\n [gforcada]\n\n\n1.1.6 (2016-05-10)\n------------------\n\nFixes:\n\n- Fix way to decode utf-8 into template.\n [bsuttor]\n\n\n1.1.5 (2015-07-18)\n------------------\n\n- Conditionally setup zope.app.form field.\n [vangheem]\n\n\n1.1.4 (2014-11-05)\n------------------\n\n- Fix criteria checkbox rendering if value contains non ASCII characters.\n [rnixx]\n\n\n1.1.3 (2014-11-01)\n------------------\n\n- Fixed sort index selection which was not preserved when editing collection\n criteria.\n [naro]\n\n- make compatible with jQuery >= 1.9\n [petschki]\n\n\n1.1.2 (2014-04-05)\n------------------\n\n- Fixed label for \"Add Criteria\" (missing id=\"addindex\")\n [djay]\n\n\n1.1.1 (2014-02-23)\n------------------\n\n- Avoid `TypeError: 'NoneType' object is not iterable` when the query\n of the collection is still `None`, like is the case when adding one.\n [maurits]\n\n\n1.1.0 (2013-11-14)\n------------------\n\n- Change javascript to work on ``form-widgets-ICollection`` fields instead of\n ``form-widgets``.\n [maurits, kaselis]\n\n\n1.0b4 (unreleased)\n------------------\n\n- If we set background to 'white' we should set foreground to 'black' to avoid\n people getting white font on white background if they use white font color\n for their plone sites. [saily]\n\n- Add handling of the RelativeDateWidget, already expected to exist in\n p.a.querystring.\n [tmog]\n\n- Add jquery dateinput to dateWidget and dateRangeWidget.\n [tmog]\n\n\n1.0b3 (2013-02-04)\n------------------\n\n- Fixed context for getting ajax results\n [kroman0]\n\n- Fixed conditional initialization of querywidget,\n see http://dev.plone.org/ticket/12529\n [kroman0]\n\n- The widget can now be hidden, when clicking on the\n window or the widget. The event is only effective\n when the widget is displayed.\n [bosim]\n\n- Translations are now in Plone domain\n [bosim]\n\n- Made the widget a bit more resistent to missing entries, i.e. vocabularies\n or in other way indexes. The problem occur if an option is deleted from the\n registry but not deleted from the collections in before hand.\n [bosim]\n\n- Update import path for pagetemplate. Now only works with 4.1 and higher\n [do3cc]\n\n\n1.0b2 (2012-03-19)\n------------------\n\n- Fix sort-reversed checkbox javascript.\n [timo]\n\n- Move docs/HISTORY.txt to CHANGES.txt to apply to Plone conventions.\n [timo]\n\n\n1.0b1 (2012-03-09)\n------------------\n\n- Stop hardcoding the field name so it works with other field names and\n prefixes.\n [davisagli]\n\n- Rename ArcheTypesQueryWidget to Querywidget to avoid confusion.\n [timo]\n\n- Several JSLint fixes on querywidget.js\n [timo]\n\n- Make sure the sorting settings are actually stored on the collection.\n [timo]\n\n\n1.0a1 (2011-10-28)\n------------------\n\n- Initial release.\n [ralphjacobs, kcleong, jbaumann, hannosch, timo]", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/plone/plone.formwidget.querystring", "keywords": "form widget querystring search collection", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "plone.formwidget.querystring", "package_url": "https://pypi.org/project/plone.formwidget.querystring/", "platform": "", "project_url": "https://pypi.org/project/plone.formwidget.querystring/", "project_urls": { "Homepage": "https://github.com/plone/plone.formwidget.querystring" }, "release_url": "https://pypi.org/project/plone.formwidget.querystring/1.1.10/", "requires_dist": null, "requires_python": "", "summary": "A widget for composing a Query string/search.", "version": "1.1.10" }, "last_serial": 3084241, "releases": { "1.0a1": [ { "comment_text": "", "digests": { "md5": "fa9f6eca34bc079fd9bd028339c0b0a2", "sha256": "8216301350902161277ad08a563ef96b212fdf882c327dcc71840207ae4cd6a5" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.0a1.zip", "has_sig": false, "md5_digest": "fa9f6eca34bc079fd9bd028339c0b0a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18431, "upload_time": "2011-10-28T06:58:21", "url": "https://files.pythonhosted.org/packages/33/e1/5d48a56adff987460b21fe2c484a995e4213d4b1ed403cf4c777d7e33c2a/plone.formwidget.querystring-1.0a1.zip" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "b92d7680b623ebe53ecd1faa43ca69fa", "sha256": "72b3cefcb0ff9c4985fec20a7ac443fa6d999eab8101db377f54fbc2e31d5bc8" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.0b1.zip", "has_sig": false, "md5_digest": "b92d7680b623ebe53ecd1faa43ca69fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19094, "upload_time": "2012-03-09T10:46:34", "url": "https://files.pythonhosted.org/packages/ac/e2/c877e214e684470b2dbeeac396d2ffb9d3dd88f1ed06611a873d84f0827d/plone.formwidget.querystring-1.0b1.zip" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "8baa89a63d953f73a3bf02ac38be5180", "sha256": "4f27dee95c2f9708fca8bcc9ac5e36113c64ef1f56f4b860fbbd018e05b3dd37" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.0b2.zip", "has_sig": false, "md5_digest": "8baa89a63d953f73a3bf02ac38be5180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19312, "upload_time": "2012-03-19T16:00:31", "url": "https://files.pythonhosted.org/packages/19/eb/eacd87268bee9096ac2dd0620b126b2708f866febdeb8f6aaef4e0dfbd9a/plone.formwidget.querystring-1.0b2.zip" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "1a7edd8fe94f7066d89eae5045ea786c", "sha256": "25c4adc1fcc90a3736a22a1a8c2a2fdd8071a0107f5e7e46d8ce9751cec1fce7" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.0b3.zip", "has_sig": false, "md5_digest": "1a7edd8fe94f7066d89eae5045ea786c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20707, "upload_time": "2013-02-04T15:04:49", "url": "https://files.pythonhosted.org/packages/11/a0/7a9023a507a84f349a096b190f9edf6b27f2c9bb22af94305e394cddc58f/plone.formwidget.querystring-1.0b3.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9a4fcd5962004d8608a73034f8a03235", "sha256": "4e1c97078f78367f18dfdcf93ff658567564be38854e5517b0e53287a8a9ecd5" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.0.zip", "has_sig": false, "md5_digest": "9a4fcd5962004d8608a73034f8a03235", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22232, "upload_time": "2013-11-14T20:07:35", "url": "https://files.pythonhosted.org/packages/1a/0b/a9982de76c450c6c60f1cf81e6c69d88f3196a938c7560755e1160ee05c7/plone.formwidget.querystring-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "4d19ce32c4c3ed61b211538439490029", "sha256": "722f991d4d8c51319e4efb1b57c0bc70c9cf80d405ce4d8e8caf80e15cca8163" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.1.zip", "has_sig": false, "md5_digest": "4d19ce32c4c3ed61b211538439490029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22728, "upload_time": "2014-02-23T15:21:12", "url": "https://files.pythonhosted.org/packages/ca/61/bb6c981b79f670d240985db8eb086982ba3b60535ab025a24d8f686b2ade/plone.formwidget.querystring-1.1.1.zip" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "55775c1aa66dd7a021c10a606fa61519", "sha256": "5b658313cfb9717ee599c7354baff394c1acd6aa985cabea546a1492dca0fcb6" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.10.tar.gz", "has_sig": false, "md5_digest": "55775c1aa66dd7a021c10a606fa61519", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15662, "upload_time": "2017-08-09T15:28:56", "url": "https://files.pythonhosted.org/packages/8b/2b/537f5e632e79e1a7fcb0d1189ebf50a634d8506091c2ec5255e5341be991/plone.formwidget.querystring-1.1.10.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "42ccb2354578b8203e6771128b18138f", "sha256": "6621fc3680843805c81c2e74b0673146b5588e74a98843be12ca7adbebc3e733" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.2.zip", "has_sig": false, "md5_digest": "42ccb2354578b8203e6771128b18138f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22878, "upload_time": "2014-04-05T13:29:52", "url": "https://files.pythonhosted.org/packages/b0/8b/48f2d963b2c89199b7b30841cb23e4b5eb26223abe9b464fe41683bd05ab/plone.formwidget.querystring-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "d8fa847f9faf331159456e1ddc5ebfdd", "sha256": "502a2cef3bf6a4c74192c43198e056539e143972d5bcedd5a9b34be06ef87999" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.3.zip", "has_sig": false, "md5_digest": "d8fa847f9faf331159456e1ddc5ebfdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23310, "upload_time": "2014-11-01T10:36:51", "url": "https://files.pythonhosted.org/packages/2c/91/bdcda4d90fe399f8b03fa48b408ba3caf52e3d9554edd99894e78636ae26/plone.formwidget.querystring-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "864da1b8ca55f3a005b21fa121bef16b", "sha256": "8a821ee982658106acbbb0caec09dafaeed33d208099f4f10e1fddb9ee4d923b" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.4.zip", "has_sig": false, "md5_digest": "864da1b8ca55f3a005b21fa121bef16b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23275, "upload_time": "2014-11-05T22:54:59", "url": "https://files.pythonhosted.org/packages/80/77/c3539fbe2c6792c24cae91bfdbddd38671d4846ec0dd281c26ff766de9fd/plone.formwidget.querystring-1.1.4.zip" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "a4fcaab94c201f98687d7ebae0a807ae", "sha256": "8e329a5ab19576b313b868ea86aaec720077c759ef3751a99c0b86e9bb877a90" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.5.tar.gz", "has_sig": false, "md5_digest": "a4fcaab94c201f98687d7ebae0a807ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14659, "upload_time": "2015-07-18T07:39:25", "url": "https://files.pythonhosted.org/packages/48/6f/fc19204d0abf7bd1676aeec09c637e989367cd0d7d5c6a7d855d400dd192/plone.formwidget.querystring-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "ceb548fd0df65d91e1176412e4199180", "sha256": "6ca18228741078d1d8a0274b77a3ece54ce6f20cfa25196e584782a8739d0641" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.6.tar.gz", "has_sig": false, "md5_digest": "ceb548fd0df65d91e1176412e4199180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14986, "upload_time": "2016-05-10T21:48:52", "url": "https://files.pythonhosted.org/packages/6f/81/63f8a106e1b472a592ce48e6892590ebb051c405086f6abf36502e554b76/plone.formwidget.querystring-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "fd747744ed6d42161e79d62df8be2525", "sha256": "61f79d51b39d8171d8e7768fb56210dd8bbc7c9760377f2152eca2797e802a0b" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.7.tar.gz", "has_sig": false, "md5_digest": "fd747744ed6d42161e79d62df8be2525", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15127, "upload_time": "2016-08-15T20:36:47", "url": "https://files.pythonhosted.org/packages/72/9e/cc4b8a08e326fd7628fb42b9ae3812d7c03a4ecfe2d98da406b07f0d4c2c/plone.formwidget.querystring-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "6392043db202115199a3146492ca7d2f", "sha256": "bb90a0495a110d2bb662a4ed875ccb35e96ef28b55c8929e547e398e1ef96366" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.8.tar.gz", "has_sig": false, "md5_digest": "6392043db202115199a3146492ca7d2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15258, "upload_time": "2016-12-19T17:01:26", "url": "https://files.pythonhosted.org/packages/b9/ad/f4fb34f6b78d13875132666a9319848ba5610cf35ff978e6e129a0982835/plone.formwidget.querystring-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "de17cb9e67ee832c6ec60ea3e4e05b73", "sha256": "3d153d4cc8912db1aabd748823add478b08875e8be0d0e931d44d8b795dbb3c5" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.9.tar.gz", "has_sig": false, "md5_digest": "de17cb9e67ee832c6ec60ea3e4e05b73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15430, "upload_time": "2017-05-07T01:06:42", "url": "https://files.pythonhosted.org/packages/95/58/bcc7bd5a31b53b4d3eb44ddd2a587e06ec9f8831d4ffbe447eae413dea91/plone.formwidget.querystring-1.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "55775c1aa66dd7a021c10a606fa61519", "sha256": "5b658313cfb9717ee599c7354baff394c1acd6aa985cabea546a1492dca0fcb6" }, "downloads": -1, "filename": "plone.formwidget.querystring-1.1.10.tar.gz", "has_sig": false, "md5_digest": "55775c1aa66dd7a021c10a606fa61519", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15662, "upload_time": "2017-08-09T15:28:56", "url": "https://files.pythonhosted.org/packages/8b/2b/537f5e632e79e1a7fcb0d1189ebf50a634d8506091c2ec5255e5341be991/plone.formwidget.querystring-1.1.10.tar.gz" } ] }