This module implements the Russian stemming algorithm to improve Russian-language searching with the Drupal built-in search.module D6 and Search API for Drupal 7.
Stemming attempts to reduce a word to its stem or root form. This generally results in more relevant results.
Nodefeedback provides a form on the node view pages to answer/vote on custom questions. It should be useful for Knowledge Base / Wiki sites and/or some others needing users input on the content.
Supported question types are:
- radio buttons (answers are stored in the Voting API DB as the votes on the question tags)
- text-areas (answers are stored in the custom table).
Permissions system: 2 global permissions:
'administer nodefeedback' - administrative permissions to setup the module
'use PHP input for nodefeedback options' - security permission to explicitly allow to use PHP for questions configuration (required to implement custom questions) 2 per node_type permissions:
'provide feedback on node_type content' - permission to provide feedback on the nodes of this node_type
'see feedback on node_type content' - permission to see the results/feedback directly on the node view pages
Requirements:Voting API
Awesome Voting API module is used to record answers to the radio-button questions and tailor results for these questions. It also provides Views integration for these questions.
OpenLayers Proximity enables geographical proximity search for the OpenLayers module (6.x-2.x). The module exposes a filter to the Views module where users can specify starting point and radius of the proximity search. The starting point can be specified by simply providing the name of its location. Search radius can be given in kilometers or miles and it's easy, for external modules, to specify their own units of measurement.
Drupal 7
While this module may work for you I strongly recommend Geofield 2.x which has surpassed this module in features and is actively maintained.
Drupal 6
Views integration
OpenLayers Proximity exposes:
Square filter: it gives locations contained within a square derived by a simple latitude/longitude comparison. Less accurate, better performance
Great-circle filter: it uses the Great-circle distance formula to return locations within a circular area. More accurate, lower performance.
Distance sort criteria: used in combination with "Great-circle" filters it allows to sort nodes by distance from a given location.