summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/git/RepositoryResolver.java
Commit message (Collapse)AuthorAgeFilesLines
* [findbugs] Fix user assignment for clone permission check in repository resolverJames Moger2014-04-171-2/+1
|
* Rename & simplify SshSession->SshDaemonClientJames Moger2014-04-101-11/+11
|
* Revise SSH public key integration with AuthenticationManagerJames Moger2014-04-101-4/+2
|
* Move Git daemon into different packageJames Moger2014-04-101-0/+1
|
* SSHD: Add support for git pack commandsDavid Ostrovsky2014-04-101-0/+10
| | | | | | | | | | | Add git-upload-pack and git-receive-pack commands. Conflicts: src/main/java/com/gitblit/manager/ServicesManager.java src/main/java/com/gitblit/transport/ssh/CommandDispatcher.java src/main/java/com/gitblit/transport/ssh/SshCommandFactory.java Change-Id: I8c057b41f1dfad6d004e6aa91f96c8c673be9be2
* Flattened IGitblitManager, GitblitManager, and GitBlit classesJames Moger2013-11-291-3/+3
| | | | Change-Id: Id6deb27306e0034898673bf5d5d76a4ed012ced6
* Renamed Gitblit to GitBlit to not break existing Groovy hooksJames Moger2013-11-291-3/+3
| | | | Change-Id: Id5286ed1b9d7e92644cacf857096e6dd273c8f05
* Create a Gitblit aggregate manager delegate for git upload/receive tasksJames Moger2013-11-291-14/+7
| | | | Change-Id: I2c4a5ddf051f228c0bd949c6cd4fd44c3da81d26
* Use Dagger to inject managers into all filters and servletsJames Moger2013-11-291-6/+11
| | | | Change-Id: I9bb2cc0cbfac9841b13bed15a474fefb24355cd4
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-261-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | These manager interfaces define how the GitBlit singleton will eventually be split into smaller component managers. The Wicket app and all servlets have been updated to request the needed managers. There are _very_ few method signature changes - although there are a handful. This is a surgical sharding of responsibility based on a proof of concept refactor. Instead of random references to GittBlit.self() there are now precise references to the manager interface required to accomplish some task. Some tasks may require references to multiple managers. The code is now littered with calls to GitBlit.getManager(class) and those familiar with the code-base will no doubt notice the duplication of methods from IUserService in IUserManager and the addition of implementation methods in the GitBlit context class. When the GitBlit class is broken apart and the existing external authentication user service classes are refactored to AuthenticationService classes, this will again simplify and flatten. But in order to safely and cleanly modularize the stable code-base we will have to live with a little duplication for a short while. Change-Id: I7314ec8acaab2dcc6092785ed4434cc09fdbbe16
* Trim trailing whitespace and organize importsJames Moger2013-09-301-7/+7
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Revised Git Daemon to improve thread stopping and to eliminate repository ↵James Moger2013-05-031-5/+13
| | | | name hack
* Added Git Daemon supportJames Moger2013-04-031-0/+105