summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/utils
Commit message (Collapse)AuthorAgeFilesLines
* Update to JGit 2.0.0James Moger2012-07-112-3/+8
|
* Persist cookies in ConfigUserService. Update LDAPUserService to generate ↵James Moger2012-07-111-1/+5
| | | | cookies.
* Adjust repository search to handle foo.git and foo/bar.git (issue 104)James Moger2012-07-101-3/+8
|
* Revised TimeUtils for localizationJames Moger2012-06-151-20/+65
| | | | | | | | TimeUtils needs to output localized strings like "5 days ago" and "6 months". In order to do this it needs a translation resource. Additionally, that resource can not be static because the single Gitblit server can handle multiple connections in different locales/languages. TimeUtils has changed from a collection of static methods to some static methods and some instance methods. A TimeUtils is instantiated with an optional resource bundle which contains the preferred translation. If the resourec bundle is null or the requested translation key does not exist, an English default will be used. This change required adjusting the signatures of several key methods and that cascaded out to adjusting those methods calls in many, many classes.
* Updated to Bootstrap 2.0.4. Responsive layout by default.James Moger2012-06-081-2/+2
|
* Try multiple encodings when working with string blobs (issue 97)James Moger2012-06-072-5/+48
|
* Expose JGit's runtime configuration settings (issue 93)James Moger2012-06-061-0/+65
|
* Possible fix for federation branch mirroring issue (issue 86)James Moger2012-06-061-0/+68
|
* Allow for admin teams with spaces in their name.unknown2012-04-241-14/+18
|
* Rework LDAP implementation with unboundid. Also allows for an LDAP server ↵John Crygier2012-04-101-0/+28
| | | | to be started with Gitblit GO (backed by an LDIF file).
* Skeleton LdapUserService based on John Cryiger's implementationJames Moger2012-04-061-0/+89
|
* Adjustments to ClientLoggerJames Moger2012-03-311-11/+56
|
* Add ClientLogger so scripts can log info / warning messages to the pushing ↵John Crygier2012-03-311-0/+32
| | | | client.
* Fixed symlink absolute path/canonical path mixup with JGit (issue 78)James Moger2012-03-282-2/+31
|
* Ensure that FederationPullExecutor resets to FETCH_HEAD for mirrorsJames Moger2012-03-241-23/+0
|
* Restore the leading hunk of the first line of a fragmentJames Moger2012-03-211-0/+26
| | | Also correctly determine the line number of a fragment.
* Properly handle renames on incremental indexingJames Moger2012-03-201-0/+4
|
* Refactored Lucene integration and fixed two index deleteDocument bugsJames Moger2012-03-151-1018/+0
|
* A bunch more Lucene workJames Moger2012-03-142-14/+54
| | | | | * Only list user-accessible repositories * Syntax-highlight matched blob fragments * Improve look and layout of search results
* Revise indexed fields and improve Lucene page usabilityJames Moger2012-03-122-16/+64
|
* Revised reindex method per JGit team recommendationJames Moger2012-03-121-91/+143
|
* Lucene adjustmentsJames Moger2012-03-101-7/+4
|
* More Lucene progressJames Moger2012-03-091-86/+175
|
* Not all GitNotes were displayed on the commit page (issue 70)James Moger2012-03-051-2/+15
|
* Draft integration of Lucene search mechanism and web uiJames Moger2012-02-281-15/+29
|
* Delete branch from index. Queue index update from the PostReceiveHook.James Moger2012-02-281-4/+25
|
* Partially working Lucene executor. Needs refactoring. (issue 16)James Moger2012-02-261-40/+169
|
* Split refs into 2 lines if there are remotes. Use more glyphicons.James Moger2012-02-251-10/+0
|
* Use proper timezone to generate all metricsJames Moger2012-02-252-4/+10
|
* Activity page now considers all local branches (issue 65)James Moger2012-02-241-47/+42
|
* Fixed nullpointer on pushing to an empty repository (issue 69)James Moger2012-02-231-20/+16
|
* Fixed UTF-8 encoding bug in diff formatter (issue 66)James Moger2012-02-232-10/+13
|
* Expand age coloring from 2 days to 30 days (issue 57)James Moger2012-02-211-2/+8
|
* Merged issues/lucene branchJames Moger2012-02-194-13/+1517
|\
| * Properly index blobs on a branchJames Moger2012-02-191-2/+72
| |
| * Implemented multi-repository Lucene searchJames Moger2012-02-171-14/+73
| |
| * Fixed date bugs on IssueModelJames Moger2012-02-171-1/+2
| |
| * Fairly functional Lucene backend for commits, blobs, and issuesJames Moger2012-01-242-1/+507
| |
| * More functional issues.James Moger2012-01-152-124/+492
| |
| * Branch for implementing distributed gb-issuesJames Moger2012-01-133-11/+511
| |
* | Setting to control display/serving non-bare repositories (issue 49)James Moger2012-02-031-14/+11
| |
* | Refactored and unit tested updating HEAD featureJames Moger2012-02-021-24/+22
| |
* | 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-281-26/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Allow administrative modification of the default branch/tag referenced by HEAD.Philip L. McMahon2012-01-261-0/+44
|/ | | | | This allows control over the default branch after clone, which is equivalent to running: git symbolic-ref HEAD refs/heads/mybranch
* New function to create an orphan branch (for future use)James Moger2012-01-091-28/+70
|
* Refactored named branch retrieval functionJames Moger2012-01-092-33/+22
|
* Documentation. Find bugs. Organized imports.James Moger2012-01-091-2/+0
|
* Support for gh-pages branch serving as /pages/repo.gitJames Moger2012-01-092-0/+37
|