Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = Gerrit Code Review - Mail Templates |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 2 | |
David Pursehouse | 98b6003 | 2017-04-04 15:19:59 +0900 | [diff] [blame] | 3 | Gerrit uses link:https://developers.google.com/closure/templates/[Closure Templates] |
| 4 | (Soy) for the bulk of the standard mails it sends out. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 5 | There are builtin default templates which are used if they are not overridden. |
| 6 | These defaults are also provided as examples so that administrators may copy |
| 7 | them and easily modify them to tweak their contents. |
| 8 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 9 | *Compatibility Note:* previously, Velocity Template Language (VTL) was used as |
David Pursehouse | cb65978 | 2017-10-03 13:02:14 +0100 | [diff] [blame] | 10 | the template language for Gerrit emails. Support for VTL has now been removed |
| 11 | in favor of Soy, and Velocity templates that modify text emails are no longer |
| 12 | supported. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 13 | |
David Pursehouse | 14b2d62 | 2018-05-01 15:45:39 +0900 | [diff] [blame] | 14 | == Template Locations and Extensions |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 15 | |
| 16 | The default example templates reside under: `'$site_path'/etc/mail` and are |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 17 | terminated with the double extension `.soy.example`. Modifying these example |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 18 | files will have no effect on the behavior of Gerrit. However, copying an |
| 19 | example template to an equivalently named file without the `.example` extension |
| 20 | and modifying it will allow an administrator to customize the template. |
| 21 | |
David Pursehouse | 14b2d62 | 2018-05-01 15:45:39 +0900 | [diff] [blame] | 22 | == Supported Mail Templates |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 23 | |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 24 | Each mail that Gerrit sends out is controlled by at least one template. These |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 25 | are listed below. Change emails are influenced by two additional templates, |
| 26 | one to set the subject line, and one to set the footer which gets appended to |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 27 | all the change emails (see `ChangeSubject.soy` and `ChangeFooter.soy` below.) |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 28 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 29 | Many types of Gerrit email message support HTML in addition to plain-text. Where |
| 30 | both are supported, templates to control the HTML part have `...Html` appended |
| 31 | in their file names. For example, for "Abandoned" emails, the `Abandoned.soy` |
| 32 | template determines the text part of the message, whereas `AbandonedHtml.soy` |
| 33 | determines the HTML part. |
Martin Fick | 40ed99f | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 34 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 35 | === Abandoned.soy and AbandonedHtml.soy |
Martin Fick | 40ed99f | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 36 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 37 | The "Abandoned" templates will determine the contents of the email related to a |
| 38 | change being abandoned. It is a `ChangeEmail`: see `ChangeSubject.soy` and |
| 39 | ChangeFooter. |
Doug Kelly | 251b157 | 2015-08-25 11:02:04 -0500 | [diff] [blame] | 40 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 41 | === AddKey.soy and AddKeyHtml.soy |
Doug Kelly | 251b157 | 2015-08-25 11:02:04 -0500 | [diff] [blame] | 42 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 43 | AddKey templates will determine the contents of the email related to SSH and GPG |
| 44 | keys being added to a user account. This notification is not sent when the key |
| 45 | is administratively added to another user account. |
Martin Fick | 82bd12c | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 46 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 47 | === ChangeFooter.soy and ChangeFooterHtml.soy |
Martin Fick | 82bd12c | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 48 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 49 | The ChangeFooter templates will determine the contents of the footer that will |
| 50 | be appended to emails related to changes (all `ChangeEmail`s). |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 51 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 52 | === ChangeSubject.soy |
| 53 | |
| 54 | The `ChangeSubject.soy` template will determine the contents of the email |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 55 | subject line for ALL emails related to changes. |
| 56 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 57 | === Comment.soy |
Martin Fick | 382e0a8 | 2010-07-27 17:09:33 -0600 | [diff] [blame] | 58 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 59 | The `Comment.soy` template will determine the contents of the email related to |
Martin Fick | 382e0a8 | 2010-07-27 17:09:33 -0600 | [diff] [blame] | 60 | a user submitting comments on changes. It is a `ChangeEmail`: see |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 61 | `ChangeSubject.soy`, ChangeFooter and CommentFooter. |
David Pursehouse | 85287c1 | 2012-09-24 20:58:21 +0900 | [diff] [blame] | 62 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 63 | === CommentFooter.soy and CommentFooterHtml.soy |
David Pursehouse | 85287c1 | 2012-09-24 20:58:21 +0900 | [diff] [blame] | 64 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 65 | The CommentFooter templates will determine the contents of the footer text that |
| 66 | will be appended to emails related to a user submitting comments on changes. |
| 67 | See `ChangeSubject.soy`, Comment and ChangeFooter. |
Martin Fick | 382e0a8 | 2010-07-27 17:09:33 -0600 | [diff] [blame] | 68 | |
Paladox none | 04a1704 | 2019-04-22 13:47:29 +0000 | [diff] [blame] | 69 | === DeleteKey.soy and DeleteKeyHtml.soy |
| 70 | |
| 71 | DeleteKey templates will determine the contents of the email related to SSH or GPG keys |
| 72 | being deleted from a user account. This notification is not sent when the key is |
| 73 | administratively deleted from another user account. |
| 74 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 75 | === DeleteVote.soy and DeleteVoteHtml.soy |
Khai Do | f6b479a | 2015-12-08 23:44:34 -0800 | [diff] [blame] | 76 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 77 | The DeleteVote templates will determine the contents of the email related to |
| 78 | removing votes on changes. It is a `ChangeEmail`: see `ChangeSubject.soy` |
| 79 | and ChangeFooter. |
Khai Do | f6b479a | 2015-12-08 23:44:34 -0800 | [diff] [blame] | 80 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 81 | === DeleteReviewer.soy and DeleteReviewerHtml.soy |
Khai Do | 2710a88 | 2015-12-10 10:42:03 -0800 | [diff] [blame] | 82 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 83 | The DeleteReviewer templates will determine the contents of the email related to |
| 84 | a user removing a reviewer (with a vote) from a change. It is a |
| 85 | `ChangeEmail`: see `ChangeSubject.soy` and ChangeFooter. |
Khai Do | 2710a88 | 2015-12-10 10:42:03 -0800 | [diff] [blame] | 86 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 87 | === Footer.soy and FooterHtml.soy |
David Pursehouse | 7a1d7c0 | 2013-06-05 12:22:45 +0900 | [diff] [blame] | 88 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 89 | The Footer templates will determine the contents of the footer text appended to |
| 90 | the end of all outgoing emails after the ChangeFooter and CommentFooter. |
David Pursehouse | 7a1d7c0 | 2013-06-05 12:22:45 +0900 | [diff] [blame] | 91 | |
Paladox none | d189897 | 2019-04-22 14:39:33 +0000 | [diff] [blame] | 92 | === HttpPasswordUpdate.soy and HttpPasswordUpdateHtml.soy |
| 93 | |
| 94 | HttpPasswordUpdate templates will determine the contents of the email related to adding, |
| 95 | changing or deleting the HTTP password on a user account. |
| 96 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 97 | === Merged.soy and MergedHtml.soy |
Martin Fick | 7305be4 | 2010-07-23 17:31:26 -0600 | [diff] [blame] | 98 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 99 | The Merged templates will determine the contents of the email related to a |
| 100 | change successfully merged to the head. It is a `ChangeEmail`: see |
| 101 | `ChangeSubject.soy` and ChangeFooter. |
Martin Fick | 7305be4 | 2010-07-23 17:31:26 -0600 | [diff] [blame] | 102 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 103 | === NewChange.soy and NewChangeHtml.soy |
Martin Fick | 679fc37 | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 104 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 105 | The NewChange templates will determine the contents of the email related to a |
| 106 | user submitting a new change for review. This includes changes created by |
| 107 | actions made by the user in the Web UI such as cherry picking a commit or |
| 108 | reverting a change. It is a `ChangeEmail`: see `ChangeSubject.soy` and |
| 109 | ChangeFooter. |
Martin Fick | 679fc37 | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 110 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 111 | === RegisterNewEmail.soy |
Martin Fick | 679fc37 | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 112 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 113 | The `RegisterNewEmail.soy` template will determine the contents of the email |
Martin Fick | 679fc37 | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 114 | related to registering new email accounts. |
| 115 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 116 | === ReplacePatchSet.soy and ReplacePatchSetHtml.soy |
Martin Fick | 679fc37 | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 117 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 118 | The ReplacePatchSet templates will determine the contents of the email related |
| 119 | to a user submitting a new patchset for a change. This includes patchsets |
| 120 | created by actions made by the user in the Web UI such as editing the commit |
| 121 | message, cherry picking a commit, or rebasing a change. It is a `ChangeEmail`: |
| 122 | see `ChangeSubject.soy` and ChangeFooter. |
Martin Fick | 40ed99f | 2010-07-21 11:46:21 -0600 | [diff] [blame] | 123 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 124 | === Restored.soy and RestoredHtml.soy |
Martin Fick | 7759a6f | 2011-06-27 10:25:38 -0600 | [diff] [blame] | 125 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 126 | The Restored templates will determine the contents of the email related to a |
| 127 | change being restored. It is a `ChangeEmail`: see `ChangeSubject.soy` and |
| 128 | ChangeFooter. |
Martin Fick | 7759a6f | 2011-06-27 10:25:38 -0600 | [diff] [blame] | 129 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 130 | === Reverted.soy and RevertedHtml.soy |
David Pursehouse | 8f4e01f | 2012-09-27 20:53:22 +0900 | [diff] [blame] | 131 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 132 | The Reverted templates will determine the contents of the email related to a |
| 133 | change being reverted. It is a `ChangeEmail`: see `ChangeSubject.soy` and |
| 134 | ChangeFooter. |
Martin Fick | 7759a6f | 2011-06-27 10:25:38 -0600 | [diff] [blame] | 135 | |
Edwin Kempin | 49ab6f5 | 2016-12-07 10:40:32 +0100 | [diff] [blame] | 136 | === SetAssignee.soy and SetAssigneeHtml.soy |
| 137 | |
| 138 | The SetAssignee templates will determine the contents of the email related to a |
| 139 | user being assigned to a change. It is a `ChangeEmail`: see `ChangeSubject.soy` |
| 140 | and ChangeFooter. |
| 141 | |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 142 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 143 | == Mail Variables and Methods |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 144 | |
| 145 | Mail templates can access and display objects currently made available to them |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 146 | via the Soy context. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 147 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 148 | === Warning |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 149 | |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 150 | Be aware that modifying templates can cause them to fail to parse and therefore |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 151 | not send out the actual email. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 152 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 153 | === All OutgoingEmails |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 154 | |
| 155 | All outgoing emails have the following variables available to them: |
| 156 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 157 | $email.settingsUrl:: |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 158 | + |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 159 | The URL to view the user's settings in the Gerrit web UI. |
| 160 | |
| 161 | $email.gerritHost:: |
| 162 | + |
| 163 | The name of the Gerrit instance. |
| 164 | |
| 165 | $email.gerritUrl:: |
| 166 | + |
| 167 | The URL to the Gerrit web UI. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 168 | |
| 169 | $messageClass:: |
| 170 | + |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 171 | A String containing the messageClass. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 172 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 173 | === Change Emails |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 174 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 175 | Change related emails have the following template data available to them, in |
| 176 | addition to what's available to all outgoing emails. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 177 | |
| 178 | $changeId:: |
| 179 | + |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 180 | Id of the current change (a `Change.Key`). |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 181 | |
| 182 | $coverLetter:: |
| 183 | + |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 184 | The text of the `ChangeMessage`. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 185 | |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 186 | $fromName:: |
| 187 | + |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 188 | The name of the from user. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 189 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 190 | $email.unifiedDiff:: |
| 191 | + |
| 192 | The diff of the change. |
| 193 | |
| 194 | $email.changeDetail:: |
| 195 | + |
| 196 | The details of the change, including the commit message. |
| 197 | |
| 198 | $email.changeUrl:: |
| 199 | + |
| 200 | The URL to the change in the web UI. |
| 201 | |
| 202 | $email.includeDiff:: |
| 203 | + |
| 204 | Whether the Gerrit instance is configured to include diffs in emails. |
| 205 | |
| 206 | $change.subject:: |
| 207 | + |
| 208 | The subject of the current change. |
| 209 | |
| 210 | $change.originalSubject:: |
| 211 | + |
| 212 | The subject corresponding to the first patch set of the current change. |
| 213 | |
| 214 | $change.shortSubject:: |
| 215 | + |
Orgad Shaneh | 6add177 | 2017-06-15 14:30:59 +0300 | [diff] [blame] | 216 | The subject limited to 72 characters, with an ellipsis if it exceeds that. |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 217 | |
Wyatt Allen | ea10a239 | 2017-10-30 13:15:34 -0700 | [diff] [blame] | 218 | $change.shortOriginalSubject:: |
| 219 | + |
| 220 | The original subject limited to 72 characters, with an ellipsis if it exceeds |
| 221 | that. |
| 222 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 223 | $change.ownerEmail:: |
| 224 | + |
| 225 | The email address of the owner of the change. |
| 226 | |
| 227 | $branch.shortName:: |
| 228 | + |
| 229 | The name of the branch targeted by the current change. |
| 230 | |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 231 | $projectName:: |
| 232 | + |
David Pursehouse | 221d4f6 | 2012-06-08 17:38:08 +0900 | [diff] [blame] | 233 | The name of this change's project. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 234 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 235 | $shortProjectName:: |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 236 | + |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 237 | The project name with the path abbreviated. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 238 | |
xchangcheng | bfd7538 | 2018-04-30 14:04:55 +0000 | [diff] [blame] | 239 | $instanceAndProjectName:: |
Maxime Guerreiro | 8d129d4 | 2018-03-21 18:59:27 +0100 | [diff] [blame] | 240 | + |
xchangcheng | bfd7538 | 2018-04-30 14:04:55 +0000 | [diff] [blame] | 241 | The Gerrit instance name, followed by the short project name |
Maxime Guerreiro | 8d129d4 | 2018-03-21 18:59:27 +0100 | [diff] [blame] | 242 | |
Maxime Guerreiro | e7cc57d | 2018-04-24 18:15:04 +0000 | [diff] [blame] | 243 | $addInstanceNameInSubject:: |
| 244 | + |
| 245 | Whether the instance name should be included in the email subject. |
| 246 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 247 | $sshHost:: |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 248 | + |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 249 | SSH hostname for the Gerrit instance. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 250 | |
Wyatt Allen | bf0502c | 2016-10-18 13:47:43 -0700 | [diff] [blame] | 251 | $patchSet.patchSetId:: |
| 252 | + |
| 253 | The current patch set number. |
| 254 | |
| 255 | $patchSet.refname:: |
| 256 | + |
| 257 | The refname of the patch set. |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 258 | |
Wyatt Allen | f668f87 | 2017-10-12 14:19:57 -0700 | [diff] [blame] | 259 | $patchSetInfo.authorName:: |
| 260 | + |
| 261 | The name of the author of the patch set. |
| 262 | |
| 263 | $patchSetInfo.authorEmail:: |
| 264 | + |
| 265 | The email address of the author of the patch set. |
| 266 | |
Martin Fick | b7f3b2d | 2010-07-23 10:23:03 -0600 | [diff] [blame] | 267 | GERRIT |
| 268 | ------ |
| 269 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 270 | |
| 271 | SEARCHBOX |
| 272 | --------- |