summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/pages/CommitDiffPage.java
Commit message (Collapse)AuthorAgeFilesLines
* Process bugtraq configuration in markup document renderingJames Moger2014-03-041-1/+1
|
* 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
* Eliminate nearly all direct GitBlit singleton references in WicketJames Moger2013-11-261-2/+1
| | | | | | | | | | 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
* 修改中文显示问题及raw默认属性kxyfyh2013-11-181-0/+1
|
* Add raw link to commit, commitdiff, and compare pages (issue-319)James Moger2013-10-161-0/+3
| | | | Change-Id: Ifc878cb59fe66674e6dfdc6d233fa26be1f4d605
* Trim trailing whitespace and organize importsJames Moger2013-09-301-3/+5
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Add normalized diffstats to the commit, commitdiff, and compare pagesJames Moger2013-09-271-7/+17
| | | | Change-Id: I8f26746a611e9ab955efe8b2597cc81db48fb085
* Added GitNotes to the commitdiff pageJames Moger2013-09-181-0/+25
|
* Removed GitWeb-style diff rendererJames Moger2013-09-181-5/+1
|
* Add support for rendering Markdown commit messages (issue-203)Bret K. Ikehara2013-09-181-1/+1
|
* Implemented optional page cachingJames Moger2013-07-191-5/+3
|
* Display full message on commitdiff page (issue-258)James Moger2013-06-201-0/+7
|
* Removed commitdiff code code for comparing ranges (issue-133)James Moger2013-05-231-42/+3
| | | | | This feature was incomplete, reported incorrect information, and has been replaced by the compare page (issue-75).
* Match commit page change path section logicJames Moger2013-05-231-4/+11
|
* Support relative links in commitdiff page and polish cssJames Moger2013-05-231-8/+4
|
* Overhauled navigation and flattened lookJames Moger2013-05-191-0/+5
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+192
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.