branch develop updated (980ad7d -> ffd0656)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository bow. See http://git.chorem.org/bow.git from 980ad7d - new BowAdd bookmarklet - add shell script to generate password as bookmarklet new ffd0656 fixes #963: Rendre la recherche par tag insensible à la casse The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit ffd0656cd44ed4a119249dc940b53719d5bff21d Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Fri Jul 31 23:46:58 2015 +0200 fixes #963: Rendre la recherche par tag insensible à la casse Summary of changes: bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See http://git.chorem.org/bow.git commit ffd0656cd44ed4a119249dc940b53719d5bff21d Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Fri Jul 31 23:46:58 2015 +0200 fixes #963: Rendre la recherche par tag insensible à la casse --- bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java b/bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java index 2159893..ed3439e 100644 --- a/bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java +++ b/bow-ui/src/main/java/org/chorem/bow/BookmarkUtils.java @@ -55,7 +55,8 @@ public class BookmarkUtils { protected final static WikittyQueryParser queryParser = new WikittyQueryParser(); static { - queryParser.addAlias("tag:", BowBookmark.FQ_FIELD_WIKITTYLABEL_LABELS + "=" ); + queryParser.addAlias("tag:", BowBookmark.FQ_FIELD_WIKITTYLABEL_LABELS + "~" ); + queryParser.addAlias("tag=", BowBookmark.FQ_FIELD_WIKITTYLABEL_LABELS + "=" ); queryParser.addAlias("date:([^ $]+)", BowBookmark.FQ_FIELD_BOWBOOKMARK_CREATIONDATE + "=[date($1/DAY) TO date($1/DAY+1DAY)]"); queryParser.addAlias("before:([^ $]+)", BowBookmark.FQ_FIELD_BOWBOOKMARK_CREATIONDATE + "<date($1)"); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm