summaryrefslogtreecommitdiffstats
path: root/src/main/bugtraq
Commit message (Collapse)AuthorAgeFilesLines
* bugtraq: Fallback to UTF-8 if commit encoding is unsupportedFlorian Zschocke2022-11-111-1/+15
| | | | | | | Reading the encoding of a commit can result in a Unsupported- or IllegalCharsetException. This happens when for whatever reason the commit has an encoding recorded that the system doesn't understand. Instead of completely failing, fallback to UTF-8.
* Update Bugtraq to v0.4Florian Zschocke2022-11-074-12/+116
| | | | Sync with upstream @ https://github.com/mstrap/bugtraq
* Bump to JGit 4.0.0Luca Milanesio2015-06-121-1/+1
| | | | | JGit 4.0.0 fixes a memory leak but introduces a non-compatible change for closing the RevWalk: before it was release() but now is close()
* issue-527: Synchronize changes from upstream BugtraqJames Moger2015-02-261-12/+44
|
* Sync bugtraq support for spec v0.3James Moger2013-12-164-103/+147
| | | | Change-Id: I2c24d1201d4c36963a708b178e780c1828707269
* Simplify bare repository bugtraq config loadingJames Moger2013-12-031-36/+12
| | | | Change-Id: I223df72df371ad6e5559f57da16167e56b1e66ad
* Add support for per-repository bugtraq configurationJames Moger2013-12-037-0/+723
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