Implement the getDataOrigin method for the FlareContentListingObject that plone.app.contentlisting defines and that plone.app.search expects to exist.

This commit is contained in:
Timo Stollenwerk 2013-06-20 10:42:33 +02:00
parent 8929977d1e
commit 7e57ab1071
2 changed files with 24 additions and 2 deletions

View File

@ -4,10 +4,14 @@ Changelog
4.0 - unreleased
------------------
- Implement the getDataOrigin method for the FlareContentListingObject that
plone.app.contentlisting defines and that plone.app.search expects to exist.
[timo]
- Use tika for extracting binary content.
[tom_gross]
- Plone 4.3 compatibility of search view
- Plone 4.3 compatibility of search view
[tom_gross]
- Introduce ICheckIndexable-adapter for checking if an object is indexable.
@ -19,9 +23,10 @@ Changelog
- Drop dependency on elementree (in favour of lxml).
[tom_gross]
3.1 - 2013-02-16
----------------
- Add datehandler support for python date objects.
[jcbrand]
@ -34,6 +39,7 @@ Changelog
- Add inthandler support for not indexing Integers that are None.
[do3cc]
3.0 - 2012-02-06
----------------
@ -41,6 +47,7 @@ Changelog
https://github.com/Jarn/collective.solr/issues/12
[mj]
3.0b5 - 2011-12-07
------------------
@ -60,6 +67,7 @@ Changelog
- Fix control panel adapter to save the search_pattern as utf-8.
[ggozad]
3.0b4 - 2011-11-10
------------------
@ -67,6 +75,7 @@ Changelog
like the membrane catalogs.
[hannosch]
3.0b3 - 2011-11-09
------------------
@ -80,6 +89,7 @@ Changelog
- Tweak search form to better match sunburst proportions.
[elro]
3.0b2 - 2011-10-05
------------------
@ -88,6 +98,7 @@ Changelog
for the facet field with the same name.
[mj]
3.0b1 - 2011-09-27
------------------
@ -95,6 +106,7 @@ Changelog
to keep up with the default field settings of the text field.
[hannosch, mj]
3.0a5 - 2011-09-26
------------------
@ -105,6 +117,7 @@ Changelog
- Include CMFCore's `permissions.zcml`.
[witekdev, hannosch]
3.0a4 - 2011-08-22
------------------
@ -112,6 +125,7 @@ Changelog
explicitly.
[hannosch]
3.0a3 - 2011-08-22
------------------
@ -135,6 +149,7 @@ Changelog
* Standardize on `solr` as the i18n domain.
[hannosch]
3.0a2 - 2011-07-10
------------------
@ -164,6 +179,7 @@ Changelog
its new ICU-based text field.
[hannosch]
3.0a1 - 2011-06-23
------------------
@ -211,6 +227,7 @@ Changes
* Updated example config to collective.recipe.solrinstance 3.1 and Solr 3.2.
[hannosch]
2.0 - 2011-06-04
----------------
@ -218,6 +235,7 @@ Changes
Solr works and how we integrate with it.
[hannosch]
2.0b2 - 2011-05-18
------------------
@ -235,6 +253,7 @@ Changes
* Avoid using the deprecated `five:implements` directive.
[hannosch]
2.0b1 - 2011-04-06
------------------

View File

@ -19,6 +19,9 @@ class FlareContentListingObject(object):
def getObject(self):
return self.flare.getObject()
def getDataOrigin(self):
return self.flare.getObject()
def getPath(self):
return self.flare.getPath()