From bb55f5aec092b22ee4b86152c0e0111df48eb34e Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 02 Aug 2012 15:53:51 -0400 Subject: [PATCH] Compile regex patterns once and use matches instead of find (issue 103) --- groovy/sendmail.groovy | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/groovy/sendmail.groovy b/groovy/sendmail.groovy index 888f664..8d223ef 100644 --- a/groovy/sendmail.groovy +++ b/groovy/sendmail.groovy @@ -59,6 +59,9 @@ * url Base url for Gitblit String * logger Logs messages to Gitblit org.slf4j.Logger * clientLogger Logs messages to Git client com.gitblit.utils.ClientLogger + * + * Accessing Gitblit Custom Fields: + * def myCustomField = repository.customFields.myCustomField * */ -- Gitblit v1.9.1