summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/servlet/SyndicationServlet.java
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #922: RSS feed link ignores forward-slash characterJames Moger2015-09-281-3/+3
|
* Merge branch 'ticket/169' into developJames Moger2014-09-081-3/+3
|\
| * Improve bad request handling in branch graph, zip, & syndication servletsJames Moger2014-09-081-3/+3
| |
* | Use Guice annotations, not javax.inject annotationsJames Moger2014-07-031-2/+2
| |
* | Embrace @Inject for Managers, Servlets, and FiltersJames Moger2014-07-031-9/+15
|/
* Change enum name and unit test RSS tag queriesJames Moger2014-05-081-3/+3
|
* Updated the SyndicationServlet to provide an additional option to return ↵Gerard Smyth2014-05-081-44/+91
| | | | | | | | details of the tags in the repository instead of the commits. This uses a new 'ot' request parameter to indicate the object type of the content to return, which can be ither TAG or COMMIT. If this is not provided, then COMMIT is assumed to maintain backwards compatability. If tags are returned, then the paging parameters, 'l' and 'pg' are still supported, but searching options are currently ignored.
* Process bugtraq configuration in markup document renderingJames Moger2014-03-041-2/+2
|
* New canonical base url setting for repository urls and notificationsJames Moger2013-12-301-1/+4
| | | | Change-Id: I86a1eb61c2351d1cf3f6b3becf00f2a36d5c8ed6
* Rollback to Servlet 2.5James Moger2013-12-111-16/+12
| | | | | | | | | | | | | | | | | Combining Dagger and Servlet 3 works really well on stock Tomcat and Jetty but it is a troublesome combination on JEE containers with their own ideas on how to instantiate classes. JBoss AS 7 has been particularly nasty and it is just simpler to scaleback and stay with Servlet 2.5 than it is to fight all permuations of containers. Instead of using constructor DI, the servlets and filters each have an inject(ObjectGaph) method which is automatically called during initialization. Each servlet or filter is responsible for retrieving the required dependency from the graph. The Dagger object graph is created in the context listener and stuffed into the context as an attribute. Change-Id: Ib5714584fe73e2a6b9c6fda12af080a43356cbda
* Remove @Inject references because they confuse JEE containersJames Moger2013-12-101-4/+0
| | | | Change-Id: I2e4a8e7424e7c62d1e89ca62a91423fdf3e36ac8
* Add support for per-repository bugtraq configurationJames Moger2013-12-031-1/+1
| | | | | | | | | | | | | | | | | | | Imported the reference implementation contributed by syntevo which is used in their SmartGit product. You may create a bugtraq config section inf your .git/config file OR you may add a .gitbugtraq file to the root of your repository. Example: [bugtraq "issues"] url = http://code.google.com/p/gitblit/issues/detail?id=%BUGID% logRegex = "[Ii]ssue[-#:\\s]{1}\\d+" logRegex1 = "\\d+" [bugtraq "[pullrequests"] url = "https://github.com/gitblit/gitblit/pull/%BUGID%" logRegex = "(?:pull request|pull|pr)\\s*[-#]?([0-9]+)" Change-Id: Iaba305bf4280d08cc4d1abf533c2f1365470a43f
* Moved servlets and services to separate packagesJames Moger2013-11-291-0/+352
Change-Id: I5f0f50f4ae7d332e9f724a2e6f074fa71f646035