summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/servlet
Commit message (Collapse)AuthorAgeFilesLines
* Use startManager(X) from startManager(Injector, Class)James Moger2014-12-031-3/+1
|
* Allows starting an already instantiated managerLuca Milanesio2014-11-291-0/+6
| | | | | | When a manager is injected through other means, (e.g. using a different GuiceModule and injector in Gerrit) we need a way to start it without having to necessarily passing through the injection process again.
* Ensure that pretty-printed files are served as text/plain in Raw servletJames Moger2014-11-241-3/+12
|
* Extract WAR data resources if they do not exist in ${baseFolder}James Moger2014-11-241-4/+2
|
* Add support for image/svg+xml content type to raw servletJames Moger2014-11-191-3/+10
|
* Merge branch 'ticket/211' into developJames Moger2014-10-261-3/+2
|\
| * Fix raw servlet trashing paths with spacesJames Moger2014-10-261-3/+2
| |
* | Merge branch 'ticket/203' into developJames Moger2014-10-071-1/+1
|\|
| * Bug in the rawservlet in extracting the repository out of the path. TheRobbert Noordzij2014-10-071-1/+1
| | | | | | | | | | offset for finding the next slash should be the current slash + 1, not the last offset + the offset of the current slash.
* | Merge branch 'ticket/129' into developJames Moger2014-09-301-1/+1
|\|
| * Remove Wicket references from non-Wicket packagesJames Moger2014-09-301-1/+1
| |
* | Merge branch 'ticket/193' into developJames Moger2014-09-301-12/+27
|\|
| * Support GITBLIT_HOME as a system property and environment variableJames Moger2014-09-301-12/+27
| |
* | Allow authentication providers to control user and team role changesJames Moger2014-09-261-189/+190
| |
* | Merge branch 'ticket/185' into developJames Moger2014-09-241-3/+3
|\|
| * Fix GITBLIT_HOME environment variable baseFolder supportJames Moger2014-09-241-3/+3
| |
* | Merge branch 'ticket/169' into developJames Moger2014-09-084-8/+46
|\|
| * Improve bad request handling in branch graph, zip, & syndication servletsJames Moger2014-09-084-8/+46
| |
* | Merge branch 'ticket/161' into developJames Moger2014-09-081-1/+1
|\|
| * Expose setting to control Lucene repository indexing frequencyJames Moger2014-09-081-1/+1
| |
* | Merge branch 'ticket/163' into developJames Moger2014-09-051-4/+1
|\|
| * Fix NPE in raw servlet for long project namesJames Moger2014-09-051-4/+1
| |
* | Merge branch 'ticket/154' into developJames Moger2014-09-042-36/+42
|\|
| * Fix raw serving of files/directories that do not exist in a branch/refJames Moger2014-09-042-36/+42
| |
* | Merge branch 'ticket/148' into developJames Moger2014-09-042-96/+119
|\|
| * Do not stamp raw servlet responses with cache-control headersJames Moger2014-09-042-7/+30
| |
* | Merge branch 'ticket/141' into developJames Moger2014-09-041-1/+1
|\|
| * Allow gitblit baseFolder to be defined by a system propertyKoen Serry2014-08-031-1/+1
| |
| * Merge branch 'ticket/139'James Moger2014-07-051-5/+2
| |\ | | | | | | | | | | | | Conflicts: src/main/java/com/gitblit/servlet/RawServlet.java
| * \ Merged #139 "Raw link blob paths do not respect web.forwardSlashCharacter"James Moger2014-07-051-5/+6
| |\ \
| * \ \ Merged #137 "NPE in RawServlet#L265"James Moger2014-07-051-0/+9
| |\ \ \
* | \ \ \ Merge branch 'ticket/139' into developJames Moger2014-07-051-5/+2
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | Conflicts: src/main/java/com/gitblit/servlet/RawServlet.java
| * | | | Fix raw servlet blob paths not respecting web.forwardSlashCharacterJames Moger2014-07-051-10/+8
| | | | |
* | | | | Merge branch 'ticket/139' into developJames Moger2014-07-051-5/+6
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Fix raw servlet blob paths not respecting web.forwardSlashCharacterJames Moger2014-07-051-5/+6
| |/ / /
* | | | Merge branch 'ticket/137' into developJames Moger2014-07-051-0/+9
|\ \ \ \ | | |_|/ | |/| |
| * | | Fix possible NPE in RawServletJames Moger2014-07-051-0/+9
| |/ /
* | | Extract ticket service into an injectable object with a custom providerJames Moger2014-07-031-0/+2
| | |
* | | Extract services manager into a top-level injectable managerJames Moger2014-07-031-0/+2
| | |
* | | Use forked guice-servlet jar rather than stock jar from GoogleJames Moger2014-07-031-6/+2
| | |
* | | Use Guice annotations, not javax.inject annotationsJames Moger2014-07-0320-40/+40
| | |
* | | Dropped WebListener annotationJames Moger2014-07-031-2/+0
| | |
* | | Use Guice-Servlet rather than custom code and expose the InjectorJames Moger2014-07-033-287/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Replace Dagger with Guice 4.0 beta and update Guava to 16.0.1James Moger2014-07-031-15/+15
| | |
* | | Move the DaggerModule to the Dagger packageJames Moger2014-07-031-1/+1
| | |
* | | Embrace @Inject for Managers, Servlets, and FiltersJames Moger2014-07-0323-159/+295
| | |
* | | Return of Servlet3 servlet and filter loadingJames Moger2014-07-032-18/+287
| |/ |/| | | | | This is a quick return of the servlet3-style code which was reverted mid-December 2013. It is not completely tested, but a casual review was done and it's looks good. The next steps should be to restore `@Inject` annotations, simplify *DaggerModule* boilerplate, and run this on a JEE container with CDI - like JBoss AS 7.
* | Use consistent keys for repository cache lookupsJames Moger2014-06-271-0/+3
|/
* Merge branch 'ticket/100' into release-v1.6.0James Moger2014-06-121-8/+0
|\
| * Fix cloning repositories with + in their namesJames Moger2014-06-121-8/+0
| |