summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 13:16:10 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 13:16:10 +0000
commit28faefb111318d3820da0d68711eebfff6c4a9c8 (patch)
treebb5bbda0d8317725b8152bf462554520823c8be6
parent63c4a388d995223b2f401e5d129f19a0a0eaa712 (diff)
INTEGRATION: CWS rt16 (1.14.206); FILE MERGED
2006/08/03 15:46:08 rt 1.14.206.1: #137260# Method 'milestone_removed' added for WSM script 'remove_minors'. Actually that scripts uses Cws.pm from R-Drive instead of this one, but I try to keep them in sync.
-rwxr-xr-xsolenv/bin/modules/Cws.pm33
1 files changed, 31 insertions, 2 deletions
diff --git a/solenv/bin/modules/Cws.pm b/solenv/bin/modules/Cws.pm
index 218f9c1aa34a..2a0e9be7ee05 100755
--- a/solenv/bin/modules/Cws.pm
+++ b/solenv/bin/modules/Cws.pm
@@ -4,9 +4,9 @@
#
# $RCSfile: Cws.pm,v $
#
-# $Revision: 1.15 $
+# $Revision: 1.16 $
#
-# last change: $Author: hr $ $Date: 2006-08-14 17:01:35 $
+# last change: $Author: ihi $ $Date: 2006-08-29 14:16:10 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -505,6 +505,18 @@ sub get_current_milestone
return $self->get_current_milestone_from_eis($master);
}
+# Declare milestone 'removed'
+# This triggers EIS to send emails to all (SO-internal) CWS owners
+# with living CWSs based on that milestone.
+sub milestone_removed
+{
+ my $self = shift;
+ my $master = shift;
+ my $milestone = shift;
+
+ return $self->set_milestone_removed_in_eis($master, $milestone);
+}
+
# Get all child workspaces which have been integrated on a
# given master and milestone.
sub get_integrated_cws
@@ -1172,6 +1184,23 @@ sub get_current_milestone_from_eis
return $result;
}
+sub set_milestone_removed_in_eis
+{
+ my $self = shift;
+ my $master = shift;
+ my $milestone = shift;
+
+ $master = Eis::to_string($master);
+ $milestone = Eis::to_string($milestone);
+
+ my $eis = Cws::eis();
+ eval { $eis->minorRemoved( $master, $milestone ) };
+ if ( $@ ) {
+ carp("ERROR: set_current_milestone(): EIS database transaction failed. Reason:\n$@\n");
+ }
+ return;
+}
+
sub is_milestone_registered_with_eis
{
my $self = shift;