-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use selection.all for portal_types, review_state and Creator operations.
- Loading branch information
Showing
6 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<registry xmlns:i18n="http://xml.zope.org/namespaces/i18n" | ||
i18n:domain="plone"> | ||
|
||
<records interface="plone.app.querystring.interfaces.IQueryField" | ||
prefix="plone.app.querystring.field.portal_type"> | ||
<value key="title" i18n:translate="">Type</value> | ||
<value key="description" i18n:translate="">An item's type (e.g. Event)</value> | ||
<value key="enabled">True</value> | ||
<value key="sortable">False</value> | ||
<value key="operations"> | ||
<element>plone.app.querystring.operation.selection.any</element> | ||
</value> | ||
<value key="vocabulary">plone.app.vocabularies.ReallyUserFriendlyTypes</value> | ||
<value key="group" i18n:translate="">Metadata</value> | ||
</records> | ||
|
||
<records interface="plone.app.querystring.interfaces.IQueryField" | ||
prefix="plone.app.querystring.field.review_state"> | ||
<value key="title" i18n:translate="">Review state</value> | ||
<value key="description" i18n:translate="">An item's workflow state (e.g.published)</value> | ||
<value key="enabled">True</value> | ||
<value key="sortable">True</value> | ||
<value key="operations"> | ||
<element>plone.app.querystring.operation.selection.any</element> | ||
</value> | ||
<value key="vocabulary">plone.app.vocabularies.WorkflowStates</value> | ||
<value key="group" i18n:translate="">Metadata</value> | ||
</records> | ||
|
||
<records interface="plone.app.querystring.interfaces.IQueryField" | ||
prefix="plone.app.querystring.field.Creator"> | ||
<value key="title" i18n:translate="">Creator</value> | ||
<value key="description" i18n:translate="">The person that created an item</value> | ||
<value key="enabled">True</value> | ||
<value key="sortable">True</value> | ||
<value key="operations"> | ||
<element>plone.app.querystring.operation.string.is</element> | ||
<element>plone.app.querystring.operation.selection.any</element> | ||
<element>plone.app.querystring.operation.string.currentUser</element> | ||
</value> | ||
<value key="group" i18n:translate="">Metadata</value> | ||
</records> | ||
|
||
</registry> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters