]> source.dussan.org Git - gitblit.git/log
gitblit.git
9 years agoMerged #223 "Add support for image/svg+xml content type to raw servlet"
James Moger [Wed, 19 Nov 2014 16:34:17 +0000 (10:34 -0600)]
Merged #223 "Add support for image/svg+xml content type to raw servlet"

9 years agoMerged #222 "Add a blink comparator and pixel difference to image diffs"
James Moger [Wed, 19 Nov 2014 16:26:12 +0000 (10:26 -0600)]
Merged #222 "Add a blink comparator and pixel difference to image diffs"

9 years agoAdd support for image/svg+xml content type to raw servlet 23/223/1
James Moger [Wed, 19 Nov 2014 16:17:59 +0000 (11:17 -0500)]
Add support for image/svg+xml content type to raw servlet

9 years agoAdd a blink comparator and pixel difference to image diffs 231/head 22/222/1
Tom [Mon, 17 Nov 2014 23:25:41 +0000 (00:25 +0100)]
Add a blink comparator and pixel difference to image diffs

Pixel difference uses CSS mix-blend-mode, which is supported currently
only on Firefox >= 32 and on Safari >= 7.1. Implementation is behind a
Javascript feature test.

For other browsers, there's a blink comparator.

Code changes:

* ImageDiffHandler now takes the page it's used on as argument. We need
  that to get labels. DOM generated is a
  little bit different (new controls).

* Diff pages adapted to new constructor of ImageDiffHandler.

* CSS and Javascript changes implementing the new controls, making use
  of two new static image resources. Since I felt that the new controls
  deserved tooltips, I also gave the opacity slider a tooltip: changed
  to <a>, and slider handle changed from <div> to <span>. CSS ensures
  everything still displays the same (basically display:inline-block).

* Supplied messages for English, French, and German for the new
  tooltips.

Tested on IE8, Safari 6.1.6 & 7.1, Chrome 38, FF 33.1 & FF 3.6.13

9 years agoMerge pull request #230 from tomaswolf/ticket-88-followup
James Moger [Tue, 18 Nov 2014 15:55:25 +0000 (10:55 -0500)]
Merge pull request #230 from tomaswolf/ticket-88-followup

IE < 10 does not support gradients.

9 years agoIE < 10 does not support gradients. 230/head
Tom [Mon, 17 Nov 2014 15:31:46 +0000 (16:31 +0100)]
IE < 10 does not support gradients.

Since the new imgdiff UI heavily used gradients, this leaves IE9 and
IE8 users with a complete disfunctional UI.

Replaced all gradients by simpler means:

* Vertical handle: instead of 2px wide gradient, use a 1px background
  and a white border-right

* Opacity slider: No gradient but a simple border and background-color

* All radial-gradients replaced by small pre-computed PNGs

* Checkerboard background done with a small repeated PNG

With these changes, the imgdiff UI is fully functional even in IE 8.
Visual changes in other browsers are barely discernible.

9 years agoMerged #88 "Image diff could display before & after images"
James Moger [Mon, 17 Nov 2014 14:06:34 +0000 (08:06 -0600)]
Merged #88 "Image diff could display before & after images"

9 years agoMake the sliders clickable. 229/head 88/88/1
Tom [Sat, 15 Nov 2014 19:04:48 +0000 (20:04 +0100)]
Make the sliders clickable.

Always having to drag is cumbersome. Now the slider's handle can also
be set by clicking on the slider.

Heh :-) I see the GitHub UI designers hadn't thought of that.

9 years agoMinor corrections in Javascript
Tom [Sat, 15 Nov 2014 00:09:47 +0000 (01:09 +0100)]
Minor corrections in Javascript

1. Stop running animation before starting a new one.
2. Fix ratio in animation
3. Fix div width

None of these change have any visible effect in the current use of
this script. (1) is just being safe, in (2) , the wrongly calculated
value was never used,and in (3), the div was a little too wide before.

9 years agoJavascript-based sliders styled with CSS
Tom [Fri, 14 Nov 2014 21:14:28 +0000 (22:14 +0100)]
Javascript-based sliders styled with CSS

This works better for small images. The previous CSS-resize based
attempt worked reasonably well, but had two problems on WebKit
(Safari):

1. For very small images the red resize handle would overlap the image
   itself. In that case, the image became un-draggable as soon as the
   opacity was reduced below 1.0.

2. Safari apparently doesn't send mousemove events during a CSS
   resize, so the opacity was changed only on mouseup.

Both observed on Safari 6.1.6 and 7.1. FF 33.1 had no problems.

Therefore I've switched to a Javascript slider. Since I didn't find
any that was simple, did not require HTML 5, appeared to be well
maintained, had a bug tracker and not too many outstanding bug reports,
didn't pull in umpteen other dependencies, didn't suffer from feature
bloat, was compatible with jQuery 1.7.1, and was freely licensed, I
ended up writing my own.

imgdiff.js contains a small Javascript slider (only horizontal) that is
styled completely in CSS. It reports ratios in the range [0..1] and
fires nice jQuery events 'slider:pos' on value changes. Base element
is a plain div that is positioned. It's not a general-purpose do-it-all
slider, but it's small, simple, and works for what we need it.

(imgdiff.js also sets up the ese sliders on the diff pages.)

9 years agoFix that opacity slider
Tom [Thu, 13 Nov 2014 20:57:50 +0000 (21:57 +0100)]
Fix that opacity slider

Using the browser's built-in slider doesn't work if the browser hides
scrollbars (like Firefox on Mac). So,construct our own slider with
three divs and some CSS. Event-handling Javascript changed to match
this new implementation.

9 years agoTypo in comment, and optional semicolon in JS
Tom [Thu, 13 Nov 2014 07:41:25 +0000 (08:41 +0100)]
Typo in comment, and optional semicolon in JS

9 years agoOpacity adjustments for image diffs
Tom [Wed, 12 Nov 2014 19:31:12 +0000 (20:31 +0100)]
Opacity adjustments for image diffs

* ImageDiffHandler adds the slider; styled in gitblit.css
* imgdiff.js is a little bottom-loaded Javascript that adjusts the
  opacity on sliders' scroll events.
* The three diff pages add this bottom script to the page if needed
* GitBlitDiffFormatter: center image diffs.

9 years agoHTML bug fix on the blob page
Tom [Wed, 12 Nov 2014 19:27:17 +0000 (20:27 +0100)]
HTML bug fix on the blob page

That blob page sent *two* body tags. Now that we have bottom scripts,
we can fix that easily: don't try to set body.onload, but run the
prettyprinting through a bottom script on jQuery's document.ready.

9 years agoSupport for adding bottom scripts
Tom [Wed, 12 Nov 2014 19:19:29 +0000 (20:19 +0100)]
Support for adding bottom scripts

Needed if we want to have opacity changes in image diffs because
jQuery is bottom-loaded, so we must ensure that any scripts using
jQuery are run later.

I'm not a Wicket expert; maybe there's a cleverer or cleaner way to do
this. There is a JavascriptUtils class in Wicket, but that writes to
the response -- I don't quite see how that would give me control over
the precise placement of the scripts to ensure they come after that
bottom-loaded jQuery.

9 years agoImage diffs
Tom [Tue, 11 Nov 2014 06:52:15 +0000 (07:52 +0100)]
Image diffs

Ticket 88: https://dev.gitblit.com/tickets/gitblit.git/88

Based on Lea Verou's pure CSS slider:
http://lea.verou.me/2014/07/image-comparison-slider-with-pure-css/

* Add a callback interface, pass it through DiffUtils to the
  GitBlitDiffFormatter. Is needed because the rendering needs access
  to the repositoryName and other things that are known only at higher
  levels.

* New class ImageDiffHandler responsible for rendering an image diff.
  Called for all binary diffs, doesn't do anything if it's not an
  image. HTML is generated via JSoup: no worries about forgetting to
  close a tag, not about HTML escaping, nor about XSS.

* The 3 diff pages set up such an ImageDIffHandler and pass it along.

* CSS changes: from Lea Verou, with some minor improvements.

I think in the long run there'll be no way around rewriting the
HTML diff formatter from scratch, not using the standard JGit
DiffFormatter at all.

9 years agoMerge branch 'ticket/221' into develop
James Moger [Tue, 11 Nov 2014 03:26:25 +0000 (22:26 -0500)]
Merge branch 'ticket/221' into develop

9 years agoMerged #220 "Improve the diff page"
James Moger [Tue, 11 Nov 2014 03:30:17 +0000 (21:30 -0600)]
Merged #220 "Improve the diff page"

9 years agoAdd min-width in .diff-line CSS 226/head 20/220/1
Tom [Thu, 6 Nov 2014 21:53:38 +0000 (22:53 +0100)]
Add min-width in .diff-line CSS

To ensure the line number columns never get squashed.

9 years agoFix a copy/paste error in a comment.
Tom [Wed, 29 Oct 2014 15:23:04 +0000 (16:23 +0100)]
Fix a copy/paste error in a comment.

9 years agoCSS changes.
Tom [Wed, 29 Oct 2014 13:50:52 +0000 (14:50 +0100)]
CSS changes.

- As discussed:
  - gutter a little lighter, context lines nearly but not quite
    white.
  - 2px left (and right) padding in the code column.
- I also noticed that somehow all lines were spaced vertically a little
  wider than on dev.gitblit. Added cellpadding='0' to get the old line
  height again.

9 years agoMore diff page improvements
Tom [Tue, 28 Oct 2014 20:55:21 +0000 (21:55 +0100)]
More diff page improvements

- Use git object ids as fragments and HTML element ids
- Simplify generation: don't parse the diff line, instead generate
  the table header from the DiffEntry when we process it, and just
  skip the diff lines.

9 years agoFurther diff improvements
Tom [Tue, 28 Oct 2014 10:01:50 +0000 (11:01 +0100)]
Further diff improvements

- Add the new settings to gitblit.properties
- Highlight trailing whitespace

9 years agoImprove the commitdiff.
Tom [Sun, 26 Oct 2014 17:10:13 +0000 (18:10 +0100)]
Improve the commitdiff.

* Optimize CSS: simplify selectors. That alone cuts rendering time in
  half!
* Adapt HTML generation accordingly.
* Change line number generation so that one can select only code lines.
  Also move the +/- out of the code column; it also gets in the way
  when selecting.
* Omit long diffs altogether.
* Omit diff lines for deleted files, they're not particularly
  interesting.
* Introduce a global limit on the maximum number of diff lines to show.
* Supply translations for the languages I speak for the new messages.

https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff
with nearly 300k changed lines (with more then 3000 files deleted). But
one doesn't have to have such a monster commit to run into problems. My
FF 32 become unresponsive for the 30+ seconds it takes it to render a
commitdiff with some 30000 changed lines. (90% of which are in two
generated files; the whole commit has just 20 files.) GitHub has no
problems showing a commitdiff for this commit, but omits the two large
generated files, which makes sense.

This change implements a similar thing. Files with too many diff lines
get omitted from the output, only the header and a message that the
diff is too large remains. Additionally, there's a global limit on
the length of a commitdiff; if we exceed that, the whole diff is
truncated and the files not shown are listed.

The CSS change improves performance by not using descendant selectors
for all these table cells. Instead, we assign them precise classes and
just use that in the CSS.

The line number generation thing using data attributes and a :before
selector in the CSS, which enables text selections only in the code
column, is not strictly XHTML 1.0. (Data attributes are a feature of
HTML 5.) However, reasonably modern browsers also handle this correctly
if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't
XHTML compliant anyway; I don't think a pre-element may contain divs
or even tables.

(Note that this technique could be used on other diff pages, too. For
instance on the blame page.)

9 years agoUpdate GitBlitWebApp_nl.properties 228/head 21/221/1
larsmaes [Thu, 6 Nov 2014 16:17:40 +0000 (17:17 +0100)]
Update GitBlitWebApp_nl.properties

typo in Dutch translation

9 years agoMerged #219 "Update to Guice 4.0-beta5"
James Moger [Wed, 5 Nov 2014 04:03:54 +0000 (22:03 -0600)]
Merged #219 "Update to Guice 4.0-beta5"

9 years agoMerged #218 "Update to SSHD 0.13.0"
James Moger [Wed, 5 Nov 2014 03:58:57 +0000 (21:58 -0600)]
Merged #218 "Update to SSHD 0.13.0"

9 years agoUpdate to Guice 4.0-beta5 19/219/1
James Moger [Wed, 5 Nov 2014 03:50:27 +0000 (22:50 -0500)]
Update to Guice 4.0-beta5

9 years agoUpdate to SSHD 0.13.0 18/218/1
James Moger [Wed, 5 Nov 2014 03:45:21 +0000 (22:45 -0500)]
Update to SSHD 0.13.0

9 years agoMerged #217 "Exclude SSLv3 from Gitblit GO https protocols"
James Moger [Tue, 4 Nov 2014 22:38:17 +0000 (16:38 -0600)]
Merged #217 "Exclude SSLv3 from Gitblit GO https protocols"

9 years agoMerged #216 "Whitelist the "target" link attribute in the XSS filter"
James Moger [Tue, 4 Nov 2014 22:26:07 +0000 (16:26 -0600)]
Merged #216 "Whitelist the "target" link attribute in the XSS filter"

9 years agoExclude SSLv3 from Gitblit GO https protocols
James Moger [Tue, 4 Nov 2014 22:20:31 +0000 (17:20 -0500)]
Exclude SSLv3 from Gitblit GO https protocols

9 years agoWhitelist the "target" link attribute in the XSS filter
James Moger [Tue, 4 Nov 2014 22:12:00 +0000 (17:12 -0500)]
Whitelist the "target" link attribute in the XSS filter

9 years agoExclude SSLv3 from Gitblit GO https protocols 17/217/1
James Moger [Tue, 4 Nov 2014 22:20:31 +0000 (17:20 -0500)]
Exclude SSLv3 from Gitblit GO https protocols

9 years agoWhitelist the "target" link attribute in the XSS filter 16/216/1
James Moger [Tue, 4 Nov 2014 22:12:00 +0000 (17:12 -0500)]
Whitelist the "target" link attribute in the XSS filter

9 years agoMerge pull request #227 from bviktor/develop
James Moger [Fri, 31 Oct 2014 21:05:25 +0000 (17:05 -0400)]
Merge pull request #227 from bviktor/develop

Miscellaneous fixes to the Fedora service installer script

9 years agoMiscellaneous fixes to the Fedora service installer script 227/head
Berke Viktor [Fri, 31 Oct 2014 19:04:34 +0000 (20:04 +0100)]
Miscellaneous fixes to the Fedora service installer script

9 years agoMerged #215 "Allow finer-grained determination of available transport preferences"
James Moger [Fri, 31 Oct 2014 14:50:19 +0000 (08:50 -0600)]
Merged #215 "Allow finer-grained determination of available transport preferences"

9 years agoAllow finer-grained determination of available transport preferences 15/215/1
James Moger [Fri, 31 Oct 2014 14:36:52 +0000 (10:36 -0400)]
Allow finer-grained determination of available transport preferences

9 years agoMerged #214 "Only set mutable user access permissions"
James Moger [Fri, 31 Oct 2014 14:06:17 +0000 (08:06 -0600)]
Merged #214 "Only set mutable user access permissions"

9 years agoOnly set mutable user access permissions 14/214/1
James Moger [Fri, 31 Oct 2014 13:52:02 +0000 (09:52 -0400)]
Only set mutable user access permissions

9 years agoMerged #213 "Fix exception in FileTicketService when deleting a repository"
James Moger [Fri, 31 Oct 2014 13:32:28 +0000 (07:32 -0600)]
Merged #213 "Fix exception in FileTicketService when deleting a repository"

9 years agoMerged #212 "Gracefully handle missing integration branch in ticket page"
James Moger [Fri, 31 Oct 2014 13:22:01 +0000 (07:22 -0600)]
Merged #212 "Gracefully handle missing integration branch in ticket page"

9 years agoFix exception in FileTicketService when deleting a repository 13/213/1
James Moger [Fri, 31 Oct 2014 13:19:03 +0000 (09:19 -0400)]
Fix exception in FileTicketService when deleting a repository

9 years agoGracefully handle missing integration branch in ticket page 12/212/1
James Moger [Fri, 31 Oct 2014 13:08:37 +0000 (09:08 -0400)]
Gracefully handle missing integration branch in ticket page

9 years agoMerge release 1.6.2
James Moger [Tue, 28 Oct 2014 13:55:10 +0000 (09:55 -0400)]
Merge release 1.6.2

9 years agoReset build identifiers for next point release cycle
James Moger [Tue, 28 Oct 2014 13:43:46 +0000 (09:43 -0400)]
Reset build identifiers for next point release cycle

9 years agoMerge release 1.6.2
James Moger [Tue, 28 Oct 2014 13:43:43 +0000 (09:43 -0400)]
Merge release 1.6.2

9 years agoPrepare 1.6.2 release v1.6.2
James Moger [Tue, 28 Oct 2014 13:30:18 +0000 (09:30 -0400)]
Prepare 1.6.2 release

9 years agoDocumentation
James Moger [Mon, 27 Oct 2014 15:28:03 +0000 (11:28 -0400)]
Documentation

9 years agoFix PluginManager not properly respecting --noverify
James Moger [Mon, 27 Oct 2014 14:46:05 +0000 (10:46 -0400)]
Fix PluginManager not properly respecting --noverify

9 years agoMerged #110 "Support multiple/chained config files"
James Moger [Mon, 27 Oct 2014 14:21:09 +0000 (08:21 -0600)]
Merged #110 "Support multiple/chained config files"

9 years agoAdopt chain-loading properties as the default setup 10/110/1
James Moger [Mon, 27 Oct 2014 12:58:39 +0000 (08:58 -0400)]
Adopt chain-loading properties as the default setup

9 years agoMerged #211 "Fix raw servlet trashing paths with spaces"
James Moger [Sun, 26 Oct 2014 14:30:03 +0000 (08:30 -0600)]
Merged #211 "Fix raw servlet trashing paths with spaces"

9 years agoMerge branch 'ticket/211' into develop
James Moger [Sun, 26 Oct 2014 14:20:43 +0000 (10:20 -0400)]
Merge branch 'ticket/211' into develop

9 years agoFix raw servlet trashing paths with spaces 11/211/1
James Moger [Sun, 26 Oct 2014 14:16:49 +0000 (10:16 -0400)]
Fix raw servlet trashing paths with spaces

9 years agoSupported include keys in gitblit.properties
James Moger [Sun, 26 Oct 2014 14:09:50 +0000 (10:09 -0400)]
Supported include keys in gitblit.properties

This allows you to build a hierarchy of properties files or for a properties file
to include default settings.

9 years agoMerged #209 "Plugin manager does not completely respect --noverify"
James Moger [Thu, 23 Oct 2014 21:37:07 +0000 (15:37 -0600)]
Merged #209 "Plugin manager does not completely respect --noverify"

9 years agoFix broken implementation of --noverify for installing a plugin from a url 09/209/1
James Moger [Thu, 23 Oct 2014 21:20:42 +0000 (17:20 -0400)]
Fix broken implementation of --noverify for installing a plugin from a url

9 years agoDocumentation
James Moger [Thu, 23 Oct 2014 21:15:36 +0000 (17:15 -0400)]
Documentation

9 years agoSmall adjustment to FilterableRepositoryList css classes
James Moger [Thu, 23 Oct 2014 19:40:02 +0000 (15:40 -0400)]
Small adjustment to FilterableRepositoryList css classes

9 years agoMerged #106 "Consider integrating GitHub Octicons"
James Moger [Thu, 23 Oct 2014 19:42:25 +0000 (13:42 -0600)]
Merged #106 "Consider integrating GitHub Octicons"

9 years agoIntegrate GitHub Octicons 06/106/1
James Moger [Thu, 23 Oct 2014 19:28:39 +0000 (15:28 -0400)]
Integrate GitHub Octicons

9 years agoDocumentation
James Moger [Wed, 22 Oct 2014 12:21:19 +0000 (08:21 -0400)]
Documentation

9 years agoMerged #210 "Use unicode in french translation"
James Moger [Wed, 22 Oct 2014 12:31:23 +0000 (06:31 -0600)]
Merged #210 "Use unicode in french translation"

9 years agoMerge branch 'ticket/210' into develop
James Moger [Wed, 22 Oct 2014 12:06:25 +0000 (08:06 -0400)]
Merge branch 'ticket/210' into develop

9 years agoUse unicode in french translation 224/head 10/210/1
ptemplier [Tue, 21 Oct 2014 22:27:10 +0000 (00:27 +0200)]
Use unicode in french translation

translated using native2ascii

9 years agoFix critical severity dot positioning
James Moger [Tue, 21 Oct 2014 19:02:13 +0000 (15:02 -0400)]
Fix critical severity dot positioning

9 years agoDocumentation
James Moger [Tue, 21 Oct 2014 17:41:17 +0000 (13:41 -0400)]
Documentation

9 years agoMerged #157 "Add Priority & Severity fields to the ticket model"
James Moger [Tue, 21 Oct 2014 17:43:43 +0000 (11:43 -0600)]
Merged #157 "Add Priority & Severity fields to the ticket model"

9 years agoRemove S# text, set severity in tooltip 57/157/2
James Moger [Tue, 21 Oct 2014 17:28:15 +0000 (13:28 -0400)]
Remove S# text, set severity in tooltip

9 years agoAdjust priority & severity CSS
James Moger [Tue, 21 Oct 2014 13:33:29 +0000 (09:33 -0400)]
Adjust priority & severity CSS

- Severity: more severe are ROY, less severe are GB
- Replaced first-letter of severity with S# and show # dots
- Priority: higher priorityare RO, lower priority is B

I really like the 'C, 'CA' idea but that will definitely lead to translation questions. The S# approach will still generate the same complaints, but at least it is more generic.

9 years agoTickets - Priority, Severity options 220/head
Paul Martin [Mon, 29 Sep 2014 21:10:20 +0000 (22:10 +0100)]
Tickets - Priority, Severity options

+ Severity indicated via new character indicator and color of ticket icon on ticket list
+ Priority indicated via new priority icon and color on ticket list
+ Indexed as integers to provide sorting and maintain language neutral
index
+ Colours and indicator text controlled through CSS classes priority-<x> & severity-<x>
+ UITicketTest created to generate tickets of all types to ease debugging

9 years agoMerge release-1.6.1
James Moger [Mon, 20 Oct 2014 20:42:43 +0000 (16:42 -0400)]
Merge release-1.6.1

9 years agoReset build identifiers for next point release cycle
James Moger [Mon, 20 Oct 2014 20:31:17 +0000 (16:31 -0400)]
Reset build identifiers for next point release cycle

9 years agoMerge release 1.6.1
James Moger [Mon, 20 Oct 2014 20:31:14 +0000 (16:31 -0400)]
Merge release 1.6.1

9 years agoPrepare 1.6.1 release v1.6.1
James Moger [Mon, 20 Oct 2014 20:17:39 +0000 (16:17 -0400)]
Prepare 1.6.1 release

9 years agoCorrect unit test assertion
James Moger [Mon, 20 Oct 2014 15:10:37 +0000 (11:10 -0400)]
Correct unit test assertion

9 years agoDocumentation updates
James Moger [Mon, 20 Oct 2014 13:40:31 +0000 (09:40 -0400)]
Documentation updates

9 years agoPrepare v1.6.1 documentation updates
James Moger [Mon, 20 Oct 2014 13:33:07 +0000 (09:33 -0400)]
Prepare v1.6.1 documentation updates

9 years agoMerged #206 "New Ticket Type - Maintenance"
James Moger [Mon, 20 Oct 2014 02:14:47 +0000 (20:14 -0600)]
Merged #206 "New Ticket Type - Maintenance"

9 years agoNew Ticket Type - Maintenance 06/206/1
Paul Martin [Sat, 18 Oct 2014 16:56:43 +0000 (17:56 +0100)]
New Ticket Type - Maintenance

+ Indended for identifiying and loggin maintenance of development tools
and systems to provide an integrated means to satisfy ISO requirements

+ Improved alignment of query icons via fixed width attribute

10 years agoMerged #205 "Update to JGit 3.5.1"
James Moger [Tue, 14 Oct 2014 17:48:49 +0000 (11:48 -0600)]
Merged #205 "Update to JGit 3.5.1"

10 years agoMerge branch 'ticket/205' into develop
James Moger [Tue, 14 Oct 2014 17:35:51 +0000 (13:35 -0400)]
Merge branch 'ticket/205' into develop

10 years agoUpdate to JGit 3.5.1 05/205/1
James Moger [Tue, 14 Oct 2014 17:18:58 +0000 (13:18 -0400)]
Update to JGit 3.5.1

10 years agoFix GitBlitTest.testGitblitSettings()
James Moger [Mon, 13 Oct 2014 23:08:30 +0000 (19:08 -0400)]
Fix GitBlitTest.testGitblitSettings()

10 years agoFix backslash regression in relative path determiniation
James Moger [Mon, 13 Oct 2014 22:06:28 +0000 (18:06 -0400)]
Fix backslash regression in relative path determiniation

10 years agoFix potential NPE when excluding last change author
James Moger [Mon, 13 Oct 2014 23:16:51 +0000 (19:16 -0400)]
Fix potential NPE when excluding last change author

10 years agoFix GitBlitTest.testGitblitSettings()
James Moger [Mon, 13 Oct 2014 23:08:30 +0000 (19:08 -0400)]
Fix GitBlitTest.testGitblitSettings()

10 years agoFix backslash regression in relative path determiniation
James Moger [Mon, 13 Oct 2014 22:06:28 +0000 (18:06 -0400)]
Fix backslash regression in relative path determiniation

10 years agoMerged #204 "Improve relative path determination using Java 7 Paths"
James Moger [Fri, 10 Oct 2014 16:17:31 +0000 (10:17 -0600)]
Merged #204 "Improve relative path determination using Java 7 Paths"

10 years agoMerge branch 'ticket/204' into develop
James Moger [Fri, 10 Oct 2014 16:05:54 +0000 (12:05 -0400)]
Merge branch 'ticket/204' into develop

10 years agoImprove relative path determination using Java 7 Paths 04/204/1
James Moger [Fri, 10 Oct 2014 16:04:39 +0000 (12:04 -0400)]
Improve relative path determination using Java 7 Paths

10 years agoMerged #203 "Bug in the rawservlet in extracting the repository out of the path"
James Moger [Tue, 7 Oct 2014 12:15:43 +0000 (06:15 -0600)]
Merged #203 "Bug in the rawservlet in extracting the repository out of the path"

10 years agoMerge branch 'ticket/203' into develop
James Moger [Tue, 7 Oct 2014 12:00:15 +0000 (08:00 -0400)]
Merge branch 'ticket/203' into develop

10 years agoBug in the rawservlet in extracting the repository out of the path. The 222/head 03/203/1
Robbert Noordzij [Tue, 7 Oct 2014 10:14:27 +0000 (12:14 +0200)]
Bug in the rawservlet in extracting the repository out of the path. The
offset for finding the next slash should be the current slash + 1, not
the last offset + the offset of the current slash.

10 years agoMerged #202 "Treat .ico and .jpeg files as images"
James Moger [Mon, 6 Oct 2014 18:00:24 +0000 (12:00 -0600)]
Merged #202 "Treat .ico and .jpeg files as images"

10 years agoMerge branch 'ticket/202' into develop
James Moger [Mon, 6 Oct 2014 17:49:08 +0000 (13:49 -0400)]
Merge branch 'ticket/202' into develop

10 years agoTreat .ico and .jpeg files as images 02/202/1
Berke Viktor [Fri, 3 Oct 2014 13:35:56 +0000 (15:35 +0200)]
Treat .ico and .jpeg files as images

10 years agoMerged #129 "Eliminate Wicket references from non-Wicket packages"
James Moger [Tue, 30 Sep 2014 16:54:40 +0000 (10:54 -0600)]
Merged #129 "Eliminate Wicket references from non-Wicket packages"