mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
24 lines
1.2 KiB
Plaintext
24 lines
1.2 KiB
Plaintext
CQL::Parser provides a mechanism to parse Common Query Language (CQL)
|
|
statements. The best description of CQL comes from the CQL homepage at the
|
|
Library of Congress http://www.loc.gov/z3950/agency/zing/cql/
|
|
|
|
CQL is a formal language for representing queries to information retrieval
|
|
systems such as web indexes, bibliographic catalogs and museum collection
|
|
information. The CQL design objective is that queries be human readable
|
|
and human writable, and that the language be intuitive while maintaining
|
|
the expressiveness of more complex languages.
|
|
|
|
A CQL statement can be as simple as a single keyword, or as complicated as
|
|
a set of compoenents indicating search indexes, relations, relational
|
|
modifiers, proximity clauses and boolean logic. CQL::Parser will parse CQL
|
|
statements and return the root node for a tree of nodes which describes
|
|
the CQL statement. This data structure can then be used by a client
|
|
application to analyze the statement, and possibly turn it into a query
|
|
for a local repository.
|
|
|
|
Author: Ed Summers - ehs at pobox dot com
|
|
Brian Cassidy - brian.cassidy at gmail dot com
|
|
Wilbert Hengst - W.Hengst at uva dot nl
|
|
|
|
WWW: http://search.cpan.org/dist/CQL-Parser/
|