summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/manager/IRuntimeManager.java
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'ticket/164' into developJames Moger2014-09-071-0/+8
|\
| * Create infrastructure for XSS sanitizationJames Moger2014-09-071-0/+8
| |
* | Extract services manager into a top-level injectable managerJames Moger2014-07-031-36/+0
| |
* | Use Guice-Servlet rather than custom code and expose the InjectorJames Moger2014-07-031-0/+3
|/ | | | | | | | | | | | | | | This is a fairly functional variation of Gitblit with one notable exception: The security filters are not working properly. This is a design flaw in Guice that I have reported upstream [1]. The general idea is that Guice-Servlet filters are not properly wrapping the ServletRequest. This has historically been a problem for Guice-Servlet servlets but Google has fixed most of those issues. Unfortunately, all the same flaws reported against the servlet delegation also exist in Guice-Servlet filter delegation. :( [1]: https://code.google.com/p/google-guice/issues/detail?id=807
* Add a basic SSH public key management UIJames Moger2014-06-051-0/+27
|
* Fix forcing default locale to en or LANG_CC for web uiJames Moger2014-04-281-0/+9
|
* Update javadocJames Moger2014-04-171-0/+15
|
* Extract RuntimeManager from GitBlit singletonJames Moger2013-11-291-1/+1
| | | | Change-Id: I5358389396f816da979ec18a31421c2d2b67b3d9
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-261-0/+103
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