summaryrefslogtreecommitdiffstats
path: root/src/test/java/de
Commit message (Collapse)AuthorAgeFilesLines
* [findbugs] Fix Selenium testJames Moger2014-04-171-8/+6
|
* Replace JCommander with args4jJames Moger2014-03-271-7/+8
|
* Moved servlets and services to separate packagesJames Moger2013-11-291-3/+3
| | | | Change-Id: I5f0f50f4ae7d332e9f724a2e6f074fa71f646035
* Extract RepositoryManager from the GitBlit singletonJames Moger2013-11-291-26/+0
| | | | Change-Id: I265cfaf25e4093ffa5f53f70d8eb1c20d731b7b3
* Extract UserManager from GitBlit singletonJames Moger2013-11-291-1/+1
| | | | Change-Id: I4885255ed63aa6c4e000c3e5501675440dca3958
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-262-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Organize importsJames Moger2013-05-022-3/+0
|
* Added Git Daemon supportJames Moger2013-04-031-1/+1
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-2713-0/+1092
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.