Support for compound limit expressions
authorNiels Erik G. Nielsen <nielserik@indexdata.com>
Tue, 17 Dec 2013 03:00:07 +0000 (22:00 -0500)
committerNiels Erik G. Nielsen <nielserik@indexdata.com>
Tue, 17 Dec 2013 03:00:07 +0000 (22:00 -0500)
commitaa58bd0cb2ea65a2cf5cc826012ce169d94312d1
treea237f844e81de47f013ba3ff01b300bceaf6b504
parent429817e42147508ec910ec7f21d720959c50aecb
Support for compound limit expressions

Limits with multiple comma-separated expressions were not
properly tokenized due to the existance of literal commas
in the individual expressions as well.

Now literal commas most be escaped by the client of the
mkjsf library, as in 'steinbeck\, john'

ie: limit=author=steinbeck\, john,date=1947
src/main/java/com/indexdata/mkjsf/pazpar2/commands/FilterParameter.java
src/main/java/com/indexdata/mkjsf/pazpar2/commands/LimitParameter.java
src/main/java/com/indexdata/mkjsf/pazpar2/commands/SearchCommand.java