Bug fixes:
- Fix rare case of "non friendly" token lookup in plone.app.vocabularies.ReallyUserFriendlyTypes [petschki] (#99)
- Fix DeprecationWarnings. [maurits] (#4090)
Bug fixes:
- Implemented sorting of ReallyUserFriendlyTypes using unidecode. [rohnsha0] (#3985)
Breaking changes:
- Remove usage of
portal_properties
. IngetForbiddenContentTypes
we used to checkportal_properties.site_properties.forbidden_contenttypes
. Now we return nothing, so deprecategetForbiddenContentTypes
, to be removed in Plone 7. [maurits] (#125)
Internal:
- Update configuration files. [plone devs] (cfffba8c)
Bug fixes:
- Fix the untranslated table-column-heading "Title" in listing_tabular for collections and folders. [pbauer] (#82)
Bug fixes:
- Fix a circular dependency to plone.app.querystring. Move .catalog.CatalogVocabularyFactory to plone.app.querystring.vocabularies, move the ZCML to register the factory, move the the test and put BBB code with deprecation wanring into place. Move .utils.parse_query with new name parseAndModifyFormquery to plone.app.querystring.queryparser and put BBB code with deprecation wanring into place. [@jensens] (fix-circular-dep-paquerstring)
Bug fixes:
- Import navigation root specific from plone.base. And so remove transitive circular dependency on plone.app.layout. [jensens] (#74)
Internal:
- Update configuration files. [plone devs] (b2d5d4a5)
Bug fixes:
- Final release. [gforcada] (#600)
New features:
- Remove dependency on CMFPlone (use plone.base). In images vocab use utility instead of import. isort/black (pure) and pyupgrade --py37-plus`. Remove traces of six. Bump version to 5.0. [jensens] (#72)
New features:
- Add new
StaticCatalogVocabulary
class providing a simplified mechanism for creating queryable content vocabularies. Allows use of e.g. AJAXSelectWidget for fields that store Relations or UUIDs. (#66)
Bug fixes:
- Change vocabulary tokens to use
base64.urlsafe_b64encode()
. No newlines and safe to use as an xml attribute. See community post. [flipmcf] (#64)
Bug fixes:
- Fixed deprecation warning for zope.site.hooks. (#3130)
New features:
- Add new plone.app.vocabularies.MetadataFields vocabulary. [vincentfretin] (#62)
Bug fixes:
- Minor packaging updates. (#1)
Bug fixes:
- Principals vocabularies: Fixed handling of results from multiple PAS plugins (like pasldap and mutable_properties). (#60)
New features:
- Overhaul of the groups-vocabulary
plone.app.vocabularies.Groups
, a refined version of the users-vocabularyplone.app.vocabularies.Users
, a new principals vocabulary combining users and groupsplone.app.vocabularies.Principals
. Ability to apply a filter to the vocabularies in subclasses. Moved all toprincipals.py
, bbb import are in place (user.py
,security,py
). Deprecated theUserSource
andGroupsSource
implementations. Documented new vocabulary inREADME.rst
. Move doctests to unittests and added more tests. Benefits: 200x faster validation of groups; less and cleaner code; unified code for all three vocabularies. [jensens] (#56)
Bug fixes:
- Python 3 support [ale-rt, pbauer]
Bug fixes:
- Do not wake up all the users when no query is submitted [ale-rt]
Bug fixes:
- Fix test that breaks when catalog is not registered as a utility in CMF 2.3+ [pbauer]
- Add Python 2 / 3 compatibility [vincero]
Bug fixes:
- Let
plone.app.vocabularies.SupportedContentLanguages
return the language title in native language. [thet] - Remove unittest2 dependency [kakshay21]
Bug fixes:
- return empty vocabulary when no imagescales defined [fgrcon]
Bug fixes:
- plone/Products.CMFPlone#1794: use permissive vocabulary type for numeric-indexed weekday and month vocabularies to avoid breaking GenericSetup import. [seanupton]
- plone/Products.CMFPlone#1268: use permissive vocabulary type for ReallyUserFriendlyTypes, to avoid insertion of new types in plone.displayed_types (registry) from breaking GenericSetup profiles in add-ons. [seanupton]
Bug fixes:
- Fix problem in ParseError fallback introduced in 4.0 [jensens]
Breaking changes:
- Make zope.formlib optional. [gforcada]
- Mark vocabularies based on zope.formlib as deprecated. [gforcada]
Bug fixes:
- Adapt code to follow Plone styleguide. [gforcada]
- Fix in catalog: If ZCTextIndex catches a ParseError, try w/o SearchableText if there is one given.
Often
Query contains only common words
happen (only stop words given) and results are not fetched. Semantically this means that we want all results. [jensens]
Breaking changes:
- CatalogVocabulary now takes a query for it's constructor instead of a LazyMap of brains and lazy loads terms. Also, in __contains__, do a UID query instead of checking the entire contents of the result. This prevents potential DOS with custom code where the whole contents of the catalog would get loaded with terms created for it on every validation attempt. [vangheem]
New features:
- Optional allow to filter keyword vocabulary to a current section based on the current context.
The class was build for easy subclassing - and still is.
It allows to override the section fetching logic in a subclass.
The default logic is first to look in the controlpanel if there is a
IEditingSchema.subjects_of_navigation_root
boolean. If itsTrue
thegetNavigationRootObject
is used as the section and only keywords used in this section are part of the vocabulary. Otherwise all keywords in the index are displayed. [jensens]
New features:
- Refactor
KeywordsVocabulary
logic of term construction from dirty values out into own functions. Document functions in README. [jensens]
Bug fixes:
- Import getAllowedSizes from CMFPlone to avoid dependency on plone.app.imaging. [davisagli]
- Fix bug where queries would not be parsed correctly for date queries on the catalog vocabulary [vangheem]
New:
- Add ImagesScales vocabulary. [bsuttor]
Fixes:
- increase readability of code in CatalogSource. [jensens]
New:
- Vocabulary for permissions [ebrehault]
- Vocabulary for portal action categories [ebrehault]
Fixes:
- Restrict Catalog vocabulary to search current Navigation Root unless path is specified. [alecm]
Fixes:
- Make user vocabulary handle non-ASCII characters. This fixes plone/plone.app.widgets#120 [davisagli]
Fixes:
- Updated version to 2.2.0, as the previous release introduced an incompatibility with Plone 4.3. [maurits]
- Pull default_charset value from the configuration registry. [esteele]
- Pull available_editors values from the configuration registry. [esteele]
- Cleanup: PEP8, decorators for zca, et al. Also pimped the README. [jensens]
- Fixed SyndicatableFeedItems to allow unicode characters in objects titles. [Gagaro]
- change CatalogSource to be able to validate path strings in addition to UIDs [vangheem]
- default to having english with AvailableContentLanguageVocabularyFactory to fix issue that happens sometimes when setting language and multilingual is not installed [vangheem]
- Fix issue with missing context in plone.app.vocabularies.Users. [pbauer]
- Added the missing Authenticated and Anonymous roles within the RolesVocabulary`. [ichim-david]
- Cleanup. [thet]
- Make
KeywordsVocabulary
more customizable using ankeyword_index
class variable to allow users to inherit and just override that attribute to build their own keyword vocabularies. [saily] - Add datetime related vocabularies: timezones, weekdays, months.
This are moved from
plone.app.event
and extended by to be more complete. [yenzenz] - Add catalog source which can eventually replace the vocabulary. [davisagli]
- Add actions vocabulary. [giacomos]
- provide proper contains method for catalog results [vangheem]
- fallback to getSite for grabbing portal_catalog [vangheem]
- catalog vocabulary query could be None [garbas]
- getTerm and getTermByToken were not really checking if item is in the vocabulary list [garbas]
- use sort_on and sort_order in catalog vocabulary [vangheem]
- Add documentation to SlicableVocabulary, fix handling of internal structure [do3cc]
- SlicableVocabulary context is not needed when initialing [garbas]
- KeywordsVocabularyFactory now accepts query which filters keywords listed in vocabulary [garbas]
- add support for a catalog vocabulary [vangheem]
- UsersVocabulary should search on fullname . [garbas]
- adding users vocabulary (lazy loading of users) also supports searching over users. [garbas]
- Make KeywordsVocabulary work with unicode and non-unicode vocabularies. [thet]
- Fix exceptions with workflow states/transitions titles when their titles contained encoded characters [ericof]
- Fix exception with workflow vocabulary when workflow titles contained UTF-8 encoded characters [miohtama]
- Add syndication feed types vocabulary [vangheem]
- Depend on zope.formlib instead of zope.app.form. [davisagli]
- Remove hard dependency on Archetypes. [davisagli]
- Made our mock queryUtility in the tests more life like. This avoids test failures in combination with zope.pagetemplate 3.6.0 or higher. [maurits]
- Ensure that the keywords vocabulary term titles are unicode values, as per zope.schema.interfaces.ITitledTokenizedTerm. [mj]
- Ensure that the keywords vocabulary term tokens are 7-bit values, as per zope.schema.interfaces.ITokenizedTerm. [mj]
- Roles vocabulary is translated and sorted by translated role id. Fixes http://dev.plone.org/plone/ticket/11958. [WouterVH]
- Types vocabularies are sorted by translated titles. [thomasdesvenain]
- Add MANIFEST.in. [WouterVH]
- Transitions vocabulary is translated and sorted by transition id. [thomasdesvenain]
- Exclude 'text/x-plone-outputfilters-html' from the allowable content types vocabulary. [davisagli]
- Remove "Discussion Item" from BAD_TYPES vocabulary. [timo]
- Translation of workflow states vocabularies didn't work in some contexts. [thomasdesvenain]
- Update license to GPL version 2 only. [hannosch]
- Internationalized editor label (especially for 'None' value). [thomasdesvenain]
- Use the standard libraries doctest module. [hannosch]
- Add a vocabulary to list all Keywords (via the Subject index). [esteele]
- Avoid ConstraintNotSatisfied-error when GS-importing the default navigation portlet. Fixes https://dev.plone.org/plone/ticket/8380 [WouterVH]
- In the skins vocabulary, give the 'Plone Default' skin the title '(Unstyled)' to reduce confusion, now that Sunburst is actually the default. [davisagli]
- Added missing zope.browser dependency. [hannosch]
- Avoid the last use of
SimpleVocabulary.fromItems
. This refs http://dev.plone.org/plone/ticket/6480. [hannosch] - Removed funky Acquisition handling for vocabularies inside addforms. This closes http://dev.plone.org/plone/ticket/9408. [hannosch]
- Avoid dependencies on zope.app.pagetemplate and zope.app.schema. [hannosch]
- Added AvailableEditors vocabulary. [robgietema]
- Removed ChangeSet from the BAD_TYPES as this is not a portal type anymore. [maurits]
- Use the ITerms interface from the new zope.browser package. [hannosch]
- Specified package dependencies. [hannosch]
- Made the tests forward-compatible with Python 2.6. [hannosch]
- The QuerySearchableTextSourceView made terms with string titles. However zope.app.form.browser.source assumes it to be unicode, with the result that you get unicode errors if you have non-ascii characters. [regebro]
- Documentation updates. [hannosch]
- Added option to omit the current folder in a browse query, this is used for the UberSelectionWidget. [fschulze]
- Added tests for the catalog, groups and users sources. Fixed three bugs, where a LookupError was not raised. [hannosch]
- Added tests for the special term classes. [hannosch]
- Added tests for the language, security, skins, types and workflow vocabularies. [hannosch]
- Fixed invalid context argument passed into the translation machinery in the workflow state vocabulary. This fixes http://dev.plone.org/plone/ticket/7492. [hannosch]
- Added optional default query string to searchable text source. [fschulze]
- Correct name for attributes. [wichert]
- Fixed catalog vocabulary when dealing with the degenerate-case of an empty value. This makes it work better with the UberSelectionWidget. [optilude]
- Made catalog vocabulary less fragile for simple/short queries. [optilude]
- Fixed ReallyUserFriendlyTypesVocabulary to include the Messages for type names. This refs http://dev.plone.org/plone/ticket/6911. [hannosch]
- Fixed missing history. [hannosch]
- Fixed to return localized workflow state names. [deo]
- Added new ReallyUserFriendlyTypes and a BAD_TYPES list, which are used to filter out types which are not content types at all. [hannosch]
- Added new AvailableContentLanguages and SupportedContentLanguages vocabularies. [hannosch]
- If we have a users vocabulary, we should have a groups one :) [optilude]
- Make use of description-aware terms [optilude]
- Allow parameterisation of the query, so that we can restrict to folders-only, for example. [optilude]
- Add a user source, so that we can use the UberSelectionWidget on users. [optilude]
- Back to getToolByName we go. [wichert]
- Replaced getToolByName with getUtility. [hannosch]
- Added workflow vocabulary. [optilude]
- Added UserFriendlyTypes vocabulary. [hannosch]
- Some initial vocabularies. [hannosch, optilude]
- Initial package structure. [zopeskel]