summaryrefslogtreecommitdiffstats
path: root/src/com
Commit message (Collapse)AuthorAgeFilesLines
...
* Improved look of Lucene pageJames Moger2012-03-022-4/+6
|
* Whoops. x2. LucenePage.htmlJames Moger2012-03-021-0/+22
|
* Whoops. Missed adding LucenePage.James Moger2012-03-021-0/+109
|
* Draft integration of Lucene search mechanism and web uiJames Moger2012-02-284-27/+51
|
* Delete branch from index. Queue index update from the PostReceiveHook.James Moger2012-02-284-8/+50
|
* Partially working Lucene executor. Needs refactoring. (issue 16)James Moger2012-02-263-40/+356
|
* Split refs into 2 lines if there are remotes. Use more glyphicons.James Moger2012-02-2517-38/+95
|
* Use proper timezone to generate all metricsJames Moger2012-02-256-9/+17
|
* Activity page now considers all local branches (issue 65)James Moger2012-02-244-64/+97
|
* Fixed nullpointer on pushing to an empty repository (issue 69)James Moger2012-02-233-22/+18
|
* Fixed UTF-8 encoding bug in diff formatter (issue 66)James Moger2012-02-232-10/+13
|
* Account for null real path from servlet container (issue 67)James Moger2012-02-231-4/+8
|
* Allow specifying a timezone in gitblit.properties/web.xml (issue 54)James Moger2012-02-214-14/+49
|
* Fixed activity page timezone bug (issue 54)James Moger2012-02-211-3/+2
|
* Expand age coloring from 2 days to 30 days (issue 57)James Moger2012-02-213-6/+12
|
* Update to JGit 1.3.0James Moger2012-02-211-8/+8
|
* Workaround 1 sec resolution of File.lastModified on Linux (issue-55)James Moger2012-02-203-3/+23
| | | | | | | Shockingly, File.lastModified() does not always support millisecond resolution on all platforms even if the underlying filesystem supports it. Added a forceReload flag (in addition to last modified checks) to ensure that user backends and configuration properties are properly reloaded.
* Updated MarkdownPapers 1.2.7James Moger2012-02-191-4/+4
|
* Merged issues/lucene branchJames Moger2012-02-197-13/+2101
|\
| * Properly index blobs on a branchJames Moger2012-02-192-3/+75
| |
| * Implemented multi-repository Lucene searchJames Moger2012-02-172-15/+76
| |
| * Fixed date bugs on IssueModelJames Moger2012-02-172-2/+8
| |
| * Fairly functional Lucene backend for commits, blobs, and issuesJames Moger2012-01-245-1/+565
| |
| * More functional issues.James Moger2012-01-153-173/+748
| |
| * Change build identifiersJames Moger2012-01-131-2/+2
| |
| * Merge branch 'master' into issuesJames Moger2012-01-132-4/+4
| |\
| * | Branch for implementing distributed gb-issuesJames Moger2012-01-134-11/+821
| | |
* | | Update to Bootstrap 2.0James Moger2012-02-1631-181/+190
| | |
* | | Reversed the order of buttons on all forms so that default is submitJames Moger2012-02-094-4/+4
| | |
* | | Rearranged button order to properly set default (issue 60)James Moger2012-02-092-2/+4
| | | | | | | | | Also indicate password change aborted if it is canceled.
* | | Added AJP connector and some documentation on how to use it (issue 59)James Moger2012-02-092-3/+41
| | |
* | | Fixed session fixation vulnerability (issue 62)James Moger2012-02-092-2/+8
| | |
* | | Indicate WORKING COPY on repository pages (issue 49)James Moger2012-02-044-2/+14
| | |
* | | Clarify that log page/panel displays HEAD ref by defaultJames Moger2012-02-043-5/+10
| | |
* | | Show HEAD on metrics page if objectid is not specifiedJames Moger2012-02-031-1/+6
| | |
* | | Show a ! in the swatch of a repository with a working copy (issue 49)James Moger2012-02-031-2/+8
| | |
* | | Setting to control display/serving non-bare repositories (issue 49)James Moger2012-02-032-18/+14
| | |
* | | Block pushes to a repository with a working copy (issue 49)James Moger2012-02-037-5/+78
| | |
* | | Return to Users page after add/edit teamJames Moger2012-02-031-4/+2
| | |
* | | Prevent add/edit team with no selected repositories (issue 56)James Moger2012-02-031-0/+4
| | |
* | | Disallow browser autocomplete on add/edit pagesJames Moger2012-02-033-0/+12
| | |
* | | Change default long date/time formats (issue 50)James Moger2012-02-032-2/+2
| | |
* | | Refactored and unit tested updating HEAD featureJames Moger2012-02-027-54/+49
| | |
* | | Added support to Manager for relinking HEAD via JSON-RPCJames Moger2012-02-021-49/+92
| | |
* | | Added some logging for relinking HEADJames Moger2012-02-021-2/+10
| | |
* | | Fixed bug in repository creation related to relinking head featureJames Moger2012-02-021-2/+7
| | |
* | | Drop -javadoc jar dependencies, they are unnecessaryJames Moger2012-02-021-1/+1
| | |
* | | Do not traverse unaccessible subdirectories (issue 51)lemval2012-01-311-1/+1
| | |
* | | RepositoryModel will use String rather than RefModel to track the currentPhilip L. McMahon2012-01-286-67/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | symbolic head and available heads. Added convenience methods to JGitUtils to support retrieving available heads as List<String>. When resolving the symbolic head target as a String, if the head is detached, attempt to match the commit SHA1 against the known tags, using the most recent tag if more than one matches. Revised error messaging to better reflect actual outcome. Adjusted tab indexes on edit repository page to include default head combo box. Updated message key for default head combo box to use uppercase "HEAD".
* | | Correct update of HEAD symbolic reference when target is a tag.Philip L. McMahon2012-01-261-6/+22
| | | | | | | | | | | | | | | Revised update results which are considered successful and improved error messaging.