evenisse 2004/08/24 05:02:10
Modified: jira project.xml
jira/src/main/org/apache/maven/jira JiraDownloader.java
jira/xdocs changes.xml
Log:
MPJIRA-3. Fix jira downloading url for some jira instance like Apache.
Revision Changes Path
1.12 +1 -1 maven-plugins/jira/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven-plugins/jira/project.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- project.xml 11 Jul 2004 03:00:12 -0000 1.11
+++ project.xml 24 Aug 2004 12:02:10 -0000 1.12
@@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-jira-plugin</id>
<name>Maven JIRA Plug-in</name>
- <currentVersion>1.1.1</currentVersion>
+ <currentVersion>1.1.2-SNAPSHOT</currentVersion>
<description>This plugin download issues from Jira and create a
report.</description>
<shortDescription>Download issue from Jira</shortDescription>
<url>http://maven.apache.org/reference/plugins/jira/</url>
1.3 +1 -1
maven-plugins/jira/src/main/org/apache/maven/jira/JiraDownloader.java
Index: JiraDownloader.java
===================================================================
RCS file:
/home/cvs/maven-plugins/jira/src/main/org/apache/maven/jira/JiraDownloader.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- JiraDownloader.java 2 Mar 2004 15:07:07 -0000 1.2
+++ JiraDownloader.java 24 Aug 2004 12:02:10 -0000 1.3
@@ -112,7 +112,7 @@
int pos = url.indexOf("?");
String id = url.substring(pos+4);
url = url.substring(0, url.lastIndexOf("/"));
- link = url + "/secure/IssueNavigator.jspa?view=rss&pid=" + id +
"&sorter/field=issuekey&sorter/order=DESC&sorter/field=status&sorter/order=DESC&tempMax="
+ String.valueOf(nbEntriesMax) + "&reset=true";
+ link = url + "/secure/IssueNavigator.jspa?view=rss&pid=" + id +
"&sorter/field=issuekey&sorter/order=DESC&sorter/field=status&sorter/order=DESC&tempMax="
+ String.valueOf(nbEntriesMax) + "&reset=true&decorator=none";
}
}
1.5 +3 -0 maven-plugins/jira/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven-plugins/jira/xdocs/changes.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- changes.xml 11 Jul 2004 03:00:12 -0000 1.4
+++ changes.xml 24 Aug 2004 12:02:10 -0000 1.5
@@ -24,6 +24,9 @@
<author email="[EMAIL PROTECTED]">Brett Porter</author>
</properties>
<body>
+ <release version="1.1.2" date="In CVS">
+ <action dev="evenisse" type="fix" issue="MPJIRA-3">Fix jira downloading url
for some jira instance like Apache.</action>
+ </release>
<release version="1.1.1" date="2004-07-10">
<action dev="brett" type="update">Update commons-httpclient
dependency</action>
</release>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]