summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/utils/MessageProcessor.java
Commit message (Collapse)AuthorAgeFilesLines
* Process bugtraq configuration in markup document renderingJames Moger2014-03-041-171/+0
|
* Launch bugtraq links in a new tabJames Moger2014-03-011-1/+1
|
* Add support for per-repository bugtraq configurationJames Moger2013-12-031-7/+52
| | | | | | | | | | | | | | | | | | | 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
* Eliminate nearly all direct GitBlit singleton references in WicketJames Moger2013-11-261-0/+126
This is the first step towards modularization and injection. All direct references to the GitBlit singleton within the Wicket pages and panels have been replaced to proxy methods in the GitBlitWebApp singleton. There are still two Wicket classes which rely on the GitBlit singleton; those require manual instantiation (servlet 3). Change-Id: I0cdbbcf87959d590c446c99abb09c07c87c737bc