SEO
Dec 21, 2011
Plone SEO? collective.perseo!
The package collective.perseo has just been released. collective.perseo is a package for Search Engine Optimization and offers several kind of SEO features
why collective.perseo?
collective.perseo was born during a collaboration with Irene Capatti, Federica D'Elia and SEO Specialist Andrea Pernici. The product quintagroup.seoptimaizer is very useful, but Andrea needed something more.
Features
With collective.perseo you can manage:
-
globally (configurations applied to each page of the site), through “PerSEO” tool under Add-on Configuration:
-
Webmaster Tools (Google Webmaster Tools, Yahoo Site Explorer, Bing Webmaster Tools)
-
tag title, description and keywords meta tags, separately for:
-
Disable the indexing of resources using noindex and nofollow, separately for:
-
Search page
-
Login and Registration pages
-
Administration pages
-
Single pages
-
Event
-
File
-
Folder
-
Image
-
Link
-
News Item
-
Topic
-
(also handle noodp, noydir, noarchive, nosnippet)
-
-
Content types included in the sitemap.xml.gz

-
Ping sites (Google, Bing, Ask) automatically when the Site Map is updated
-
Indexing RSS feeds
-
Add itemscope and itemtype attributes to body tag (if you install the extension collective.perseoschema for Schema.org)
-
-
one by one, through “SEO” tab on each content of the site (allows you to change SEO settings for that specific content):
-
tag title and description and Keywords meta tags
-
Meta Robots Follow Tag (follow/nofollow)
-
Meta Robots Index Tag (index/noindex)
-
Meta Robots Advanced Tag (noodp, noydir, noarchive, nosnippet)
-
Canonical URL
-
Content included in the sitemap.xml.gz (yes/no).
-
Priority of content in sitemap.xml.gz
-
itemtype attribute (if you install the extension collective.perseoschema for Schema.org)
-

Useful links
http://pypi.python.org/pypi/collective.perseo
http://pypi.python.org/pypi/collective.perseoschema
Sep 07, 2009
Solr explanations in collective.solr search results
If you are using Solr score boost configuration, sometimes you need to know how certain document has been scored. Now you can see Solr explanation in Plone search results.
I'm still working on collective.solr branch. To help our customer to understand how certain documents has been scored, I've included in Plone search results an configurable option - debug query.

Using it you can check directly in Plone, Solr score explanation (it's toggled by jQuery).
hidden:

and unfold:

Sep 03, 2009
Solr score in collective.solr
I've recently created a branch merging rt.solr with collective.solr. You can now boost search results' relevancy directly from Plone configuration
For one of our customer we have been developing Solr score configuration in Plone. After a short discussion with witsch we have decided to contribute our efforts and merge everything to collective.solr branch. This is just a simple configuration panel with additional score query builder. Every score-boost entry has 3 fields: index, value and score. In current implementation if you leave value empty - it will be populated with SearchableText index value - when building the query. This approach allows flexibility our customer needs.
Let's assume you want to sort results as follow:
- Description has a query boost 10.0
- portal_type=Document has a query boost 15.0
- review_state=published has a query boost 20.0
In this way you can boost Description index (for which the value will be taken from SearchableText) and portal_type index (for which you can define the value manualy) at the same time.
to-do: we would like to add as an option Solr score explanation in search results (for users who want to know why certain document has certain score).
We have found also some problems with Lucene proximity algorithm which can give some problems (it should be configurable in Solr 1.4.0).
Aug 26, 2009
How to use Solr score's in plone search
For one of our customers we need to implement more sophisticated search, then the default plone one. Using collective.solr and rt.solr it's quite easy.

Description:%(searchterm)s^10 Title:%(searchterm)s^20 portal_type:Folder^10 portal_type:Document^30 review_state:published^100



