Merge branch 'stable-2.12'

* stable-2.12:
  Add 2.12 release notes to release notes index
  Make email validation case insensitive
  Add tooltip with subject message in related changes tab
  Correct timezone logged for DST changes
  Add hmac-sha2-256 and hmac-sha2-512 as MACs for sshd
  Fix double slash on URL when switching account.
  commit-msg: Do not add Change-Id to temp commits
  Use image instead of Unicode Character for Copy Button

Change-Id: I6dc9c93e0962a19e2c32dbcf86f0389b5e2a7acc
This commit is contained in:
David Pursehouse
2015-11-12 09:39:52 -08:00
16 changed files with 200 additions and 17 deletions

View File

@@ -54,7 +54,7 @@ public class UserPopupPanel extends PopupPanel {
switchAccount.setHref(Gerrit.info().auth().switchAccountUrl());
} else if (Gerrit.info().auth().isDev()
|| Gerrit.info().auth().isOpenId()) {
switchAccount.setHref(Gerrit.selfRedirect("/login/"));
switchAccount.setHref(Gerrit.selfRedirect("/login"));
} else {
switchAccount.removeFromParent();
switchAccount = null;

View File

@@ -292,6 +292,7 @@ class RelatedChangesTab implements IsWidget {
if (url.startsWith("#")) {
sb.setAttribute("onclick", OPEN);
}
sb.setAttribute("title", info.commit().subject());
if (showProjects) {
sb.append(info.project()).append(": ");
}