Author: jvanzyl
Date: Tue Jan 3 18:42:29 2006
New Revision: 365803
URL: http://svn.apache.org/viewcvs?rev=365803&view=rev
Log:
o automatically reopen issues, even though i have the soap interface the REST
stuff is easier.
i can't believe how crap the SOAP interface is ...
Added:
maven/sandbox/issue/rissue/bin/get_issues.rb (with props)
Added: maven/sandbox/issue/rissue/bin/get_issues.rb
URL:
http://svn.apache.org/viewcvs/maven/sandbox/issue/rissue/bin/get_issues.rb?rev=365803&view=auto
==============================================================================
--- maven/sandbox/issue/rissue/bin/get_issues.rb (added)
+++ maven/sandbox/issue/rissue/bin/get_issues.rb Tue Jan 3 18:42:29 2006
@@ -0,0 +1,14 @@
+#!/usr/bin/ruby
+
+require 'rubygems'
+require_gem 'jiraruby'
+
+# all close mpa issues
+filterId = "11461"
+
+im = IssueManager.new( true )
+issues = im.getIssuesFromFilter( filterId )
+
+issues.each do | i |
+ im.reopenIssue( i, 'jason' )
+end
Propchange: maven/sandbox/issue/rissue/bin/get_issues.rb
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: maven/sandbox/issue/rissue/bin/get_issues.rb
------------------------------------------------------------------------------
svn:executable = *
Propchange: maven/sandbox/issue/rissue/bin/get_issues.rb
------------------------------------------------------------------------------
svn:keywords = "Author Date Id Revision"