summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/BranchGraphServlet.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved servlets and services to separate packagesJames Moger2013-11-291-405/+0
| | | | Change-Id: I5f0f50f4ae7d332e9f724a2e6f074fa71f646035
* Use Dagger to inject managers into all filters and servletsJames Moger2013-11-291-5/+14
| | | | Change-Id: I9bb2cc0cbfac9841b13bed15a474fefb24355cd4
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-261-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | 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-5/+5
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Fix width calculation in branch graph when there are 0 or 1 commitsJames Moger2013-09-271-24/+28
| | | | Change-Id: I68ed7e4db32fa69a13979b544e80edf3212555cd
* Improve non-visible parent lane rendering for BranchGraphServletJames Moger2013-09-181-5/+27
|
* Improve the rendering of the branch graph for summary pageJames Moger2013-09-181-3/+4
|
* Implemented a graph servlet based on EGit/JGit's PlotWalk (issue-194)James Moger2013-09-171-0/+363
The graph is generated server-side and therefore requires that the commit table row height be fixed and match the row height of the servlet. There will be layout misalignment if remotes refs are displayed. Perhaps this can be improved in the future. Change-Id: I39d0ffc7b1c3679976ce8c198c772ff86238f1a5