summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/git/GitblitUploadPackFactory.java
Commit message (Collapse)AuthorAgeFilesLines
* Organize importsJames Moger2014-04-171-3/+0
|
* Revise SSH public key integration with AuthenticationManagerJames Moger2014-04-101-17/+1
|
* Authenticate SSH upload packJames Moger2014-04-101-0/+8
|
* Move Git daemon into different packageJames Moger2014-04-101-1/+3
|
* Refactor user services and separate authentication (issue-281)James Moger2013-11-291-5/+5
| | | | Change-Id: I336e005e02623fc5e11a4f8b4408bea5465a43fd
* Use Dagger to inject managers into all filters and servletsJames Moger2013-11-291-2/+6
| | | | Change-Id: I9bb2cc0cbfac9841b13bed15a474fefb24355cd4
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-261-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Remove upload pack ref filteringJames Moger2013-10-251-43/+0
| | | | Change-Id: I7ffcbf00e70eea68803eb6c046d5ddca55503b8b
* Trim trailing whitespace and organize importsJames Moger2013-09-301-7/+7
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Merge receive processing into one classJames Moger2013-09-271-3/+3
| | | | Change-Id: I603d4524914e94ec8e02c3689b65465b42c23dd7
* Do not advertise refs/gitblit/* refs to non-admin accountsJames Moger2013-06-181-5/+14
|
* Revised Git Daemon to improve thread stopping and to eliminate repository ↵James Moger2013-05-031-3/+2
| | | | name hack
* Added Git Daemon supportJames Moger2013-04-031-0/+99