querypath 6.x-1.6
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.6.tar.gz | 64.72 KB | 4008946b80cab12d9478bbfba96b4d11 |
| querypath-6.x-1.6.zip | 81.47 KB | 7fcd84210bcffadb0c14924bb56b3e1e |
Release notes
Fixed #1028562: Parse error: syntax error, unexpected ')' in querypath/querypath.module on line 19 reported by ClearXS. (The fix had actually been checked in for a long time, but I forgot to cut a release.)
querypath 7.x-2.0
| Download | Size | md5 hash |
|---|---|---|
| querypath-7.x-2.0.tar.gz | 64.8 KB | 5b60ec293d875c40b46e4e20509a6825 |
| querypath-7.x-2.0.zip | 81.66 KB | 370dd4f73ef538eb2e53ae48c6fdc05e |
Release notes
Fixed #996604: Fatal syntax error, extra ) on line 19 of module. (duplicate #1025268: Fresh install of the rc gives a fatal error, extra ) on line 19)
Now that D7 is released, this module is ready for a final release.
querypath 6.x-1.6-rc1
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.6-rc1.tar.gz | 64.7 KB | faae39543f740a38ee7c51d36df7a8cd |
| querypath-6.x-1.6-rc1.zip | 80.74 KB | 3a1632ba83c772489d72204fe5b4d0b1 |
Release notes
Update to QueryPath 2.1
querypath 7.x-2.0-rc1
| Download | Size | md5 hash |
|---|---|---|
| querypath-7.x-2.0-rc1.tar.gz | 64.8 KB | 16f39f71e7241f5477cbbe4201be7b4e |
| querypath-7.x-2.0-rc1.zip | 80.96 KB | 6a30fcdd7e633c857d9ec35ef7406828 |
Release notes
Updated to QueryPath 2.1.
querypath 7.x-2.x-dev
| Download | Size | md5 hash |
|---|---|---|
| querypath-7.x-2.x-dev.tar.gz | 59.65 KB | 21749e61a704ffaa2f47980f565b7012 |
| querypath-7.x-2.x-dev.zip | 80.46 KB | fd16de8ddd5ea1b963d7129254f097c1 |
Release notes
This version includes QueryPath 2.1 Alpha 1.
querypath 6.x-1.5
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.5.tar.gz | 55.1 KB | 58a89a0c605dfb61b1154bd9acfad242 |
| querypath-6.x-1.5.zip | 67.91 KB | cc14aba3bf69e420496bd14b1129685f |
Release notes
Minor bug updates, and QueryPath 2.0.1 support.
Pebosi's contributed fixes are included, as is a compacted version of QueryPath released especially for Drupal.
querypath 6.x-1.4
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.4.tar.gz | 29.12 KB | 12f03daaa32ceb2f2bec2236f9642ea5 |
| querypath-6.x-1.4.zip | 37.89 KB | 34109aaabcb1208b38e0a80877806e77 |
Release notes
Two schema errors in QP Cache have been fixed:
1. The crckey field was accidentally set to unsigned. CRCs are signed.
2. The hashkey unique key was incorrectly defined. This will not affect most installations.
Both have been corrected.
querypath 6.x-1.3
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.3.tar.gz | 28.81 KB | 108facd26a83f4f10741ef2022dbc0c9 |
| querypath-6.x-1.3.zip | 37.67 KB | e8adfb9f3c40c444d629875947a3bc28 |
Release notes
This release adds QP Cache support.
QP Cache is a cache system optimized for XML storage with arbitrary keys (objects, strings, whatever). Cache lookups are very fast, and cache maintenance is left to the implementor. (In other words, Drupal cache clears have no impact on this cache -- by design). The main use case, it is anticipated, is to store local copies of documents retrieved from a remote service.
querypath 6.x-1.2
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.2.tar.gz | 21.58 KB | 9816ac855350caa3b88cd9fd9560f4da |
| querypath-6.x-1.2.zip | 32.8 KB | 9c07deb0bbc9a12104a0f43297001729 |
Release notes
- Added SPARQL and Linked Data example.
- Fixed help text in the installer.
querypath 6.x-1.x-dev
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.x-dev.tar.gz | 59.53 KB | 7893ec557cd09c037b115b294333ba9d |
| querypath-6.x-1.x-dev.zip | 80.21 KB | 07380c2903daad4f63fdcaa6c1079e0b |
Release notes
The developer release tends to have more examples. Sometimes it will have new features as well.
querypath 6.x-1.1
| Download | Size | md5 hash |
|---|---|---|
| querypath-6.x-1.1.tar.gz | 19.55 KB | 55b0b3c452c30c0b00cd8b645a6c17d0 |
| querypath-6.x-1.1.zip | 30.73 KB | ab7447a371afccffd0a3e2ef89a3aa5b |
Release notes
This is the first official release of the Drupal QueryPath module. Along with this module, you will also need to download the QueryPath library from http://querypath.org.
The QueryPath module is a developer-centered tool. This module provides three things:
- It loads the QueryPath library on boot.
- It provides several examples of how Drupal and QueryPath can work together (see querypath_examples.module).
- It provides database integration with the Drupal database library so that you can do things like this:
<?php
// The SQL we will run:
$sql = 'SELECT title FROM {node} WHERE sticky = 1';
$ul = qp(QueryPath::HTML_STUB, 'body')
->query($sql)
->withEachRow()
->appendColumn('title', '<li/>')
->writeHTML();
?>(That creates an HTML page containing a bulleted list of the titles of every sticky node.)
When should I use this module?
This module is good for importing XML, manipulating any XML or HTML markup (including well-formed files containing PHP), and accessing remote XML feeds. This library has been used for HTML, XHTML, RSS, Atom, Twitter API, Flickr API, RDF, and other arbitrary XML formats.
If you are looking for a library that will make dealing with XML and HTML as easy as writing a few lines of jQuery-like PHP, this is the module for you.
Read more