summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/FederationClient.java
Commit message (Collapse)AuthorAgeFilesLines
* Git-LFS supportPaul Martin2015-10-101-1/+1
| | | | | | | | | | | | | | + Metadata maintained in append-only JSON file providing complete audit history. + Filestore menu item + Lists filestore items + Current size and availability + Link to GitBlit Filestore help page (top right) + Hooks into existing repository permissions + Uses default repository path for out-of-box operation with Git-LFS client + accessRestrictionFilter now has access to http method and auth header + Testing for servlet and manager
* Merge branch 'ticket/164' into developJames Moger2014-09-071-1/+4
|\
| * Create infrastructure for XSS sanitizationJames Moger2014-09-071-1/+4
| |
* | Extract ticket service into an injectable object with a custom providerJames Moger2014-07-031-1/+1
| |
* | Implement custom IPublicKeyManager providerJames Moger2014-07-031-189/+189
|/
* Add repository and user/team lifecycle listener extension pointsJames Moger2014-06-091-2/+2
|
* Add method to INotificationManager to return email service statusJames Moger2014-06-051-0/+5
|
* Style: changed manager order to reflect dependency chainJames Moger2014-04-101-1/+1
| | | | Managers are mostly declared in dependency order. Managers with fewer dependencies are first. They are likely to be components of other managers. Also eliminated import artifacts from the cherry-pick.
* Add plugins/extension infrastructureDavid Ostrovsky2014-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Plugins are stored in `${baseFolder}/plugins` and are loaded during startup by the PluginManager. A plugin defines it's metadata in META-INF/MANIFEST.MF: Plugin-Class: com.gitblit.plugins.cookbook.CookbookPlugin Plugin-Dependencies: foo, bar Plugin-Id: gitblit-plugin Plugin-Provider: John Doe Plugin-Version: 1.0 Plugins can define extension points that can be implemented by other plugins and they can depend on other plugins: Plugin-Dependencies: foo, bar During the load phase, a directed acyclic graph is built and the loading order of the dependency chain is reversed using a topological sort; parent followed by children. The parent plugin classloader is the combined classloader of all parent plugins. Change-Id: I738821fa2bff02a5dbe339a944cc7e3c4dd8e299
* Elevate the public key manager to a top-level managerJames Moger2014-04-101-1/+1
|
* Replace JCommander with args4jJames Moger2014-03-271-24/+19
|
* Improve notification api by introducing the Mailing modelJames Moger2014-02-281-13/+2
|
* Support customizing the "from" display name for generated emailsJames Moger2013-12-301-0/+8
| | | | Change-Id: Ibad9e2b1c12a24ad9c671a0d96aafb3365daa529
* Refactor managers and authentication for federationJames Moger2013-11-291-6/+42
| | | | Change-Id: I5ff18b2768095fb14e7fbece2e756115829abbde
* Moved servlets and services to separate packagesJames Moger2013-11-291-1/+2
| | | | Change-Id: I5f0f50f4ae7d332e9f724a2e6f074fa71f646035
* Extract Federation, Gitblit and Services manager from GitBlit singletonJames Moger2013-11-291-12/+23
| | | | Change-Id: I2b2f361a868c8eedf4b6df5939e7dfac2d5f92a9
* 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-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | 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-3/+3
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Fixed NPE in FedClient and support --baseFolder in FedClient (issue 219)James Moger2013-03-291-5/+15
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+133
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.