Extension:AskQ
| The author of this extension is no longer maintaining it! Meaning any reports for additional features and/or bugfixes will more than likely be ignored. Volunteers are encouraged to take on the task of developing and maintaining it. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
|
AskQ Release status: experimental |
|
|---|---|
| Implementation | Search, Special page |
| Description | An extension for use with Semantic MediaWiki that lets users do semantic queries without using Ask syntax, and provides a facet browser on top of Special:Ask. |
| Author(s) | Michael White Daniel Herzig |
| Database changes | no |
| License | GPL |
| Download | https://svn.aifb.uni-karlsruhe.de/external/atwl |
| Example | http://www.aifb.kit.edu/web/Spezial:KeywordSearch/en |
| Check usage and version matrix | |
Contents |
Description [edit]
AskQ! is an extension for Semantic MediaWiki that aims to make it easier for users to perform semantic queries without having to know the Ask query syntax. In addition, it modifies Special:Ask to provide a facet browser on top of the normal results display. A list of the most-used properties for pages in the result set is shown, with the ability to select and de-select properties and have the result reload dynamically.
A running demo is avaiable at: [1]
The development of AskQ is sponsored by Active.
Download [edit]
AskQ! can currently be downloaded via SVN at https://svn.aifb.uni-karlsruhe.de/external/atwl/extensions/atwl
- username: askq
- password: askq
Installation [edit]
AskQ! requires Semantic MediaWiki to be installed first. After downloading AskQ! from the link above, add the following to your LocalSettings.php:
include_once("$IP/extensions/atwl/ATWL.php");
Usage [edit]
AskQ! works by splitting a user's query into words and phrases and trying to find matching pages, categories, and properties in the SMW database for possible permutations of elements. The most likely interpretation is then converted to the Ask query syntax, and the user is shown a standard Special:Ask page with additional AJAX faceted browsing capabilities, allowing the full range of Semantic Result Formats to be used. It does not currently have much support for dealing with misspellings or spelling variations of terms that exist in the database, and the types of queries that it can process is finite. User input is not case-sensitive. Some structures handled include:
- A Category (or Concept) followed by some properties:
- "person email homepage"
- A Page followed by some properties:
- "Germany population"
- The query doesn't need to specify a subject:
- "located in Germany"
- Properties can specify values:
- "tool status stable license GPL homepage" (will result in [[Category:Tool]] [[Status::stable]] [[License::GPL]] [[Homepage::+]] ?Status ?License ?Homepage, although see below for how to disable [[Homepage::+]])
- Support for wildcards and comparators:
- "tool license not GPL" or "country population less than 100000" or "person name like Dan" or "actor born in *"
Settings [edit]
A few PHP variables in keywordsearch/SKS_Settings.php affect AskQ's behavior.
- $sksgExampleQueries controls the example queries that are shown to the user on the search input page.
- $sksgEnableLogging enables logging of queries and result choices using MediaWiki's logging facility
- $sksgPrintoutsMustExist adds [[Property::+]] to the query for all detected properties if true (the default). So, "person email homepage" will only show pages in Category:People with both Property:Email and Property:Homepage values existing.
- $sksgPrintoutConstrainedProperties adds ?Property to the query for every [[Property::X]] in the interpreted query. Thus, "software license GPL" will display the property License for every page in the result. This is true by default.