Task #3950 (closed)
SCM: Evalute emails displayed on trac due to git
| Reported by: | jamoore | Owned by: | jamoore |
|---|---|---|---|
| Priority: | critical | Milestone: | OMERO-Beta4.3 |
| Component: | General | Version: | n.a. |
| Keywords: | n.a. | Cc: | |
| Resources: | n.a. | Referenced By: | n.a. |
| References: | n.a. | Remaining Time: | 0.0d |
| Sprint: | 2011-01-27 (4) |
Description
Change History (8)
comment:1 Changed 9 years ago by jmoore
- Owner set to jmoore
comment:2 Changed 9 years ago by jmoore
- Remaining Time set to 0.25
comment:3 Changed 9 years ago by jmoore
- Status changed from new to accepted
comment:4 Changed 9 years ago by Josh Moore <josh@…>
comment:5 Changed 9 years ago by jmoore
False alarm. All emails are stripped when the not logged in. Removing obfuscation change from omero_svn_hooks.py:
diff --git a/omero_svn_hooks.py b/omero_svn_hooks.py
index b3a1561..8b09ac4 100755
--- a/omero_svn_hooks.py
+++ b/omero_svn_hooks.py
@@ -34,6 +34,7 @@ __all__ = ['AgiloSVNPreCommit', 'AgiloSVNPostCommit']
# Commands definition and regular expressions .....................................
+OBFUSCATE_EMAIL = re.compile("@(.*)[.]")
CLOSE_COMMANDS = ['close', 'closed', 'closes', 'fix', 'fixed', 'fixes']
REFER_COMMANDS = ['addresses', 're', 'references', 'refs', 'see']
REMAIN_COMMANDS = ['remaining', 'still', 'rem_time', 'time', 'rem']
@@ -194,7 +195,7 @@ class AgiloSVNPostCommit(object):
except Exception, e:
print >> sys.stderr, "Impossible to open revision: %s, due to the following error: %s" % (rev, to_unicode(e))
sys.exit(1)
- self.author = self.changeset.author
+ self.author = OBFUSCATE_EMAIL.sub("@...", self.changeset.author)
comment:6 Changed 9 years ago by jmoore
- Status changed from accepted to new
comment:7 Changed 9 years ago by jmoore
- Remaining Time changed from 0.25 to 0
- Resolution set to fixed
- Status changed from new to closed
comment:8 Changed 8 years ago by Josh Moore <josh@…>
(In [a9c4be23f875c2c6bca501b98823a8e207303307/ome.git]on branches master, develop, feature/5252-import-cancel, fix/4463, python-gateway) Removing unused policy file as test (See #3950)
Note: See
TracTickets for help on using
tickets.
You may also have a look at Agilo extensions to the ticket.
(In [a9c4be23f875c2c6bca501b98823a8e207303307/ome.git]) Removing unused policy file as test (See #3950)