diff --git a/ChangeLog b/ChangeLog
index 6ad181ff..b36a9446 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2010-09-19 Tatsuhiro Tsujikawa
+
+ Added keys parameter to aria2.tellStatus, aria2.tellActive,
+ aria2.tellWaiting and aria2.tellStopped XML-RPC method. 'keys' is
+ array of string. If it is specified, the response contains only
+ keys in 'keys' array. If 'keys' is empty or not specified, the
+ response contains all keys. This is useful when you just want
+ specific keys and avoid unnecessary transfers. For example,
+ *aria2.tellStatus*("1", ["gid", "status"]) returns 'gid' and
+ 'status' key. Made get*Param() functions XmlRpcRequest's
+ methods and changed portions of the code that were affected by
+ this change.
+ * doc/aria2c.1.txt
+ * src/Makefile.am
+ * src/XmlRpcMethodImpl.cc
+ * src/XmlRpcMethodImpl.h
+ * src/XmlRpcRequest.cc
+ * src/XmlRpcRequest.h
+ * test/XmlRpcMethodTest.cc
+
2010-09-15 Tatsuhiro Tsujikawa
Release 1.10.3
diff --git a/doc/aria2c.1 b/doc/aria2c.1
index 26e25bd2..59b8cc15 100644
--- a/doc/aria2c.1
+++ b/doc/aria2c.1
@@ -2,12 +2,12 @@
.\" Title: aria2c
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.75.2
-.\" Date: 09/15/2010
+.\" Date: 09/19/2010
.\" Manual: Aria2 Manual
.\" Source: Aria2 1.10.3
.\" Language: English
.\"
-.TH "ARIA2C" "1" "09/15/2010" "Aria2 1\&.10\&.3" "Aria2 Manual"
+.TH "ARIA2C" "1" "09/19/2010" "Aria2 1\&.10\&.3" "Aria2 Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -2858,9 +2858,9 @@ This method changes the status of the download denoted by \fIgid\fR from "paused
.sp
This method is equal to calling \fBaria2\&.unpause\fR for every active/waiting download\&. This methods returns "OK" for success\&.
.sp
-\fBaria2\&.tellStatus\fR \fIgid\fR
+\fBaria2\&.tellStatus\fR \fIgid[, keys]\fR
.sp
-This method returns download progress of the download denoted by \fIgid\fR\&. \fIgid\fR is of type string\&. The response is of type struct and it contains following keys\&. The value type is string\&.
+This method returns download progress of the download denoted by \fIgid\fR\&. \fIgid\fR is of type string\&. \fIkeys\fR is array of string\&. If it is specified, the response contains only keys in \fIkeys\fR array\&. If \fIkeys\fR is empty or not specified, the response contains all keys\&. This is useful when you just want specific keys and avoid unnecessary transfers\&. For example, \fBaria2\&.tellStatus\fR("1", ["gid", "status"]) returns \fIgid\fR and \fIstatus\fR key\&. The response is of type struct and it contains following keys\&. The value type is string\&.
.PP
gid
.RS 4
@@ -3125,13 +3125,13 @@ Download speed (byte/sec)
.RE
.RE
.sp
-\fBaria2\&.tellActive\fR
+\fBaria2\&.tellActive\fR \fI[keys]\fR
.sp
-This method returns the list of active downloads\&. The response is of type array and its element is the same struct returned by \fBaria2\&.tellStatus\fR method\&.
+This method returns the list of active downloads\&. The response is of type array and its element is the same struct returned by \fBaria2\&.tellStatus\fR method\&. For \fIkeys\fR parameter, please refer to \fBaria2\&.tellStatus\fR method\&.
.sp
-\fBaria2\&.tellWaiting\fR \fIoffset, num\fR
+\fBaria2\&.tellWaiting\fR \fIoffset, num, [keys]\fR
.sp
-This method returns the list of waiting download, including paused downloads\&. \fIoffset\fR is of type integer and specifies the offset from the download waiting at the front\&. \fInum\fR is of type integer and specifies the number of downloads to be returned\&.
+This method returns the list of waiting download, including paused downloads\&. \fIoffset\fR is of type integer and specifies the offset from the download waiting at the front\&. \fInum\fR is of type integer and specifies the number of downloads to be returned\&. For \fIkeys\fR parameter, please refer to \fBaria2\&.tellStatus\fR method\&.
.sp
If offset is a positive integer, this method returns downloads in the range of [\fIoffset\fR, \fIoffset\fR+\fInum\fR)\&.
.sp
@@ -3141,9 +3141,9 @@ For example, imagine that three downloads "A","B" and "C" are waiting in this or
.sp
The response is of type array and its element is the same struct returned by \fBaria2\&.tellStatus\fR method\&.
.sp
-\fBaria2\&.tellStopped\fR \fIoffset, num\fR
+\fBaria2\&.tellStopped\fR \fIoffset, num, [keys]\fR
.sp
-This method returns the list of stopped download\&. \fIoffset\fR is of type integer and specifies the offset from the oldest download\&. \fInum\fR is of type integer and specifies the number of downloads to be returned\&.
+This method returns the list of stopped download\&. \fIoffset\fR is of type integer and specifies the offset from the oldest download\&. \fInum\fR is of type integer and specifies the number of downloads to be returned\&. For \fIkeys\fR parameter, please refer to \fBaria2\&.tellStatus\fR method\&.
.sp
\fIoffset\fR and \fInum\fR have the same semantics as \fBaria2\&.tellWaiting\fR method\&.
.sp
diff --git a/doc/aria2c.1.html b/doc/aria2c.1.html
index 6738a388..680cf627 100644
--- a/doc/aria2c.1.html
+++ b/doc/aria2c.1.html
@@ -3338,9 +3338,14 @@ download.
This method is equal to calling aria2.unpause for every active/waiting
download. This methods returns "OK" for success.
-
+aria2.tellStatus gid[, keys]
This method returns download progress of the download denoted by
-gid. gid is of type string. The response is of type struct and it
+gid. gid is of type string. keys is array of string. If it is
+specified, the response contains only keys in keys array. If keys
+is empty or not specified, the response contains all keys. This is
+useful when you just want specific keys and avoid unnecessary
+transfers. For example, aria2.tellStatus("1", ["gid", "status"])
+returns gid and status key. The response is of type struct and it
contains following keys. The value type is string.
-
@@ -3779,15 +3784,17 @@ downloadSpeed
-
+
This method returns the list of active downloads. The response is of
type array and its element is the same struct returned by
+aria2.tellStatus method. For keys parameter, please refer to
aria2.tellStatus method.
-aria2.tellWaiting offset, num
+aria2.tellWaiting offset, num, [keys]
This method returns the list of waiting download, including paused
downloads. offset is of type integer and specifies the offset from
the download waiting at the front. num is of type integer and
-specifies the number of downloads to be returned.
+specifies the number of downloads to be returned. For keys
+parameter, please refer to aria2.tellStatus method.
If offset is a positive integer, this method returns downloads in the
range of [offset, offset+num).
offset can be a negative integer. offset == -1 points last
@@ -3800,10 +3807,11 @@ in this order. aria2.tellWaiting(0, 1) returns
aria2.tellWaiting(-1, 2) returns ["C", "B"].
The response is of type array and its element is the same struct
returned by aria2.tellStatus method.
-aria2.tellStopped offset, num
+aria2.tellStopped offset, num, [keys]
This method returns the list of stopped download. offset is of type
integer and specifies the offset from the oldest download. num is of
-type integer and specifies the number of downloads to be returned.
+type integer and specifies the number of downloads to be returned.
+For keys parameter, please refer to aria2.tellStatus method.
offset and num have the same semantics as aria2.tellWaiting
method.
The response is of type array and its element is the same struct
@@ -4404,7 +4412,7 @@ files in the program, then also delete it here.