Merge "Merge branch 'stable-2.9'"

This commit is contained in:
David Pursehouse
2014-03-25 02:42:55 +00:00
committed by Gerrit Code Review
5 changed files with 5 additions and 4 deletions

View File

@@ -265,7 +265,7 @@ cgit can be used by specifying `gitweb.type` to be 'cgit'.
It is also possible to define custom patterns.
=== See Also
=== SEE ALSO
* link:config-gerrit.html#gitweb[Section gitweb]
* link:http://hjemli.net/git/cgit/[cgit]

View File

@@ -145,7 +145,7 @@ passed to all hooks. Hooks started out of an SSH context (for example
the patchset-created hook) don't know the server's web URL, unless
this variable is configured.
== See Also
== SEE ALSO
* link:config-gerrit.html#hooks[Section hooks]

View File

@@ -176,7 +176,7 @@ $patchSetInfo::
A reference to the current `PatchSetInfo`.
== See Also
== SEE ALSO
* link:http://velocity.apache.org/[velocity]

View File

@@ -52,7 +52,7 @@ To convert the local username of every account to lower case:
$ java -jar gerrit.war LocalUsernamesToLowerCase -d site_path
====
== See Also
== SEE ALSO
* Configuration parameter link:config-gerrit.html#ldap.localUsernameToLowerCase[ldap.localUsernameToLowerCase]

View File

@@ -178,6 +178,7 @@ public class RelatedChanges extends TabPanel {
cherryPicksQuery.append(op("project", info.project()));
cherryPicksQuery.append(" ").append(op("change", info.change_id()));
cherryPicksQuery.append(" ").append(op("-change", info.legacy_id().get()));
cherryPicksQuery.append(" -is:abandoned");
ChangeList.query(cherryPicksQuery.toString(),
EnumSet.of(ListChangesOption.CURRENT_REVISION, ListChangesOption.CURRENT_COMMIT),
new TabChangeListCallback(Tab.CHERRY_PICKS, info.project(), revision));