Tags: gitblit-org/gitblit

v1.10.0

Toggle v1.10.0's commit message
Gitblit 1.10.0 release

v1.9.3

Toggle v1.9.3's commit message
Gitblit 1.9.3 release

v1.9.2

Toggle v1.9.2's commit message
Gitblit 1.9.2 release

v1.9.1

Toggle v1.9.1's commit message
Gitblit 1.9.1 release

r1.9.1

Toggle r1.9.1's commit message
Run release for 1.9.1

v1.9.0

Toggle v1.9.0's commit message
Gitblit 1.9.0 release

r1.9.0

Toggle r1.9.0's commit message

merged--secureCookies

Toggle merged--secureCookies's commit message
Set secure session cookies when redirecting from HTTP to HTTPS.

So far for session cookies the secure property was only set when no
HTTP port was opened. This changes to also set it when HTTP is redirected
to the HTTPS port.

merged--fixMentionsInTickets-985

Toggle merged--fixMentionsInTickets-985's commit message
Fix user mention regular expression and group replacement.

The regular expression used for user mentions used to work
only inside sentences. Also, since it tested for whitespace, the
whitespace would get replaced, too, which would join lines together.

Instead the new regex uses boundary matchers to match against
word boundaires. As these are not capturing only the actual user
mention can be captured and is then replaced. Also, this way the
regex can ignore punctuation like in "@jim, look at this."

Since Gibtlit now requires Java 7 we can use named capture groups.
This makes the use of a centrally defined regular expression much
safer. The (admittedly only) group to capture the user name is named
"user" and can be referenced by this name. By using the name instead
of a group number, the regex could be changed without the code using
it breaking because the group number changed.

A simple test is added for user mentions, which unfortunately
has to deal with the full markdown replacement, too.

Fixes #985

merged--sshLdapAuthenticator

Toggle merged--sshLdapAuthenticator's commit message
Extend documentation in default.properties and LdapKeyManager.java.