summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/pages/LuceneSearchPage.java
Commit message (Collapse)AuthorAgeFilesLines
* Update link target to Lucene 5.5 query syntax, moving the link to the page.Florian Zschocke2017-03-051-0/+4
| | | | | | | | | | | | | | | Update the link target to the query parser syntax page of the 5.5 version. Refactor the `LuceneSearchPage` to use an `ExternalLink` for the link to the lucene page, so that the link target is kept and updated in the Java code. Move the link out of the language files. This was way too cumbersome to update the link target (which is probably why no one ever did). The query help text is changed to contain a variable: `gb.queryHelp = here be some ${querySyntax} help`, which is replaced by Wicket with a link. The link text is a new lange file property: `gb.querySyntax`.
* fixes #966 to prevent always searching all reposPaul Martin2016-04-161-3/+6
|
* Ensure a repository is only searched onceJames Moger2015-10-051-3/+6
|
* Add "all repositories" parameterVitaliy Filippov2015-10-011-9/+18
|
* Eliminate nearly all direct GitBlit singleton references in WicketJames Moger2013-11-261-5/+4
| | | | | | | | | | This is the first step towards modularization and injection. All direct references to the GitBlit singleton within the Wicket pages and panels have been replaced to proxy methods in the GitBlitWebApp singleton. There are still two Wicket classes which rely on the GitBlit singleton; those require manual instantiation (servlet 3). Change-Id: I0cdbbcf87959d590c446c99abb09c07c87c737bc
* Trim trailing whitespace and organize importsJames Moger2013-09-301-19/+21
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Remove issue artifacts from classes missed in previous purgeJames Moger2013-09-301-8/+0
| | | | Change-Id: Ie0b7d1e11d634577e943c8e4dbab080b0078f1b4
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+257
This is a massive commit which reorganizes the entire project structure (although it is still monolithic), removes the Build classes, and switches to Moxie, a smarter Ant build tookit based on the original Gitblit Build classes. The Ant build script will likely require additional fine-tuning, but this is big step forward.