doc/
authorMarcus Brinkmann <mb@g10code.com>
Thu, 27 Jun 2002 16:34:10 +0000 (16:34 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 27 Jun 2002 16:34:10 +0000 (16:34 +0000)
2002-06-27  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.texi (Information About Keys): Fix documentation for IDX.
(Information About Trust Items): Likewise.

gpgme/
2002-06-27  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.h: Fix documentation of key attribute retrieval functions.

doc/ChangeLog
doc/gpgme.texi
gpgme/ChangeLog
gpgme/gpgme.h

index fcf65e30e966217d8483e01e204bd9ff0238dae3..aaace19c9d552824270533589633bba4db28f764 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-27  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.texi (Information About Keys): Fix documentation for IDX.
+       (Information About Trust Items): Likewise.
+
 2002-06-26  Werner Koch  <wk@gnupg.org>
 
        * gpgme.texi (Importing Keys): Document the return value -1 of
index 24e9f9287b3ef9a7bdb9cce5d2e35e541ca046f3..e3bbfe9134861759abd739811711355e18265d05 100644 (file)
@@ -1731,10 +1731,10 @@ validity is ``u''.
 @deftypefun {const char *} gpgme_key_get_string_attr (@w{GpgmeKey @var{key}}, @w{GpgmeAttr @var{what}}, @w{const void *@var{reserved}}, @w{int @var{idx}})
 The function @code{gpgme_key_get_string_attr} returns the value of the
 string-representable attribute @var{what} of key @var{key}.  If the
-attribute occurs more than once in the key, the index is specified by
-@var{idx}.  This applies to attributes of sub keys and user IDs.  The
-argument @var{reserved} is reserved for later use and should be
-@code{NULL}.
+attribute is an attribute of a sub key or an user ID, @var{idx}
+specifies the sub key or user ID of which the attribute value is
+returned.  The argument @var{reserved} is reserved for later use and
+should be @code{NULL}.
 
 The string returned is only valid as long as the key is valid.
 
@@ -1746,10 +1746,10 @@ or @var{reserved} not @code{NULL}.
 @deftypefun {unsigned long} gpgme_key_get_ulong_attr (@w{GpgmeKey @var{key}}, @w{GpgmeAttr @var{what}}, @w{const void *@var{reserved}}, @w{int @var{idx}})
 The function @code{gpgme_key_get_ulong_attr} returns the value of the
 number-representable attribute @var{what} of key @var{key}.  If the
-attribute occurs more than once in the key, the index is specified by
-@var{idx}.  This applies to attributes of sub keys and user IDs.  The
-argument @var{reserved} is reserved for later use and should be
-@code{NULL}.
+attribute is an attribute of a sub key or an user ID, @var{idx}
+specifies the sub key or user ID of which the attribute value is
+returned.  The argument @var{reserved} is reserved for later use and
+should be @code{NULL}.
 
 The function returns @code{0} if the attribute can't be returned as a
 number, @var{key} is not a valid pointer, @var{idx} out of range,
@@ -2030,10 +2030,8 @@ attributes.  @xref{Information About Keys}.
 @deftypefun {const char *} gpgme_trust_item_get_string_attr (@w{GpgmeTrustItem @var{item}}, @w{GpgmeAttr @var{what}}, @w{const void *@var{reserved}}, @w{int @var{idx}})
 The function @code{gpgme_trust_item_get_string_attr} returns the value
 of the string-representable attribute @var{what} of trust item
-@var{item}.  If the attribute occurs more than once in the trust
-items, the index is specified by @var{idx}.  However, currently no
-such attributes exists, so @var{idx} should be @code{0}.  The argument
-@var{reserved} is reserved for later use and should be @code{NULL}.
+@var{item}.  The arguments @var{idx} and @var{reserved} are reserved
+for later use and should be @code{0} and @code{NULL} respectively.
 
 The string returned is only valid as long as the key is valid.
 
@@ -2223,7 +2221,7 @@ This function is similar to @code{gpgme_get_sig_status} but may be used
 to retrieve more detailed information.  @var{ctx} should be the context
 used for the last signature verification, @var{idx} is used to enumerate
 over all signatures starting with @code{0} and @var{whatidx} should be
-@code{0} for unless otherwise stated.
+@code{0} unless otherwise stated.
 
 The following values may be used for @var{what}:
 @table @code
@@ -2244,7 +2242,7 @@ This function is similar to @code{gpgme_get_sig_string_attr} but used
 for attributes which can be represented by an @code{unsigned long} data
 type.  @var{ctx} should be the context used for the last signature
 verification, @var{idx} is used to enumerate over all signatures
-starting with @code{0} and @var{whatidx} should be @code{0} for unless
+starting with @code{0} and @var{whatidx} should be @code{0} unless
 otherwise stated.
 
 The following values may be used for @var{what}:
index 4ae404685275afa48502526fa0b264822a8e2548..e49e8f96d5584e938ca3a7abdec7ce97315061ca 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-27  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.h: Fix documentation of key attribute retrieval functions.
+
 2002-06-26  Werner Koch  <wk@gnupg.org>
 
        * engine-gpgsm.c (map_assuan_error): Map No_Data_Available to EOF.
index a29602e3cd6964e7d52f6614616d484915994500..1ac0e5e91355e8ff495e9c148942fa014b0d0272 100644 (file)
@@ -493,14 +493,14 @@ void gpgme_key_release (GpgmeKey key);
 char *gpgme_key_get_as_xml (GpgmeKey key);
 
 /* Return the value of the attribute WHAT of KEY, which has to be
-   representable by a string.  IDX specifies a running index if the
-   attribute appears more than once in the key.  */
+   representable by a string.  IDX specifies the sub key or
+   user ID for attributes related to sub keys or user IDs.  */
 const char *gpgme_key_get_string_attr (GpgmeKey key, GpgmeAttr what,
                                       const void *reserved, int idx);
 
 /* Return the value of the attribute WHAT of KEY, which has to be
-   representable by an unsigned integer.  IDX specifies a running
-   index if the attribute appears more than once in the key.  */
+   representable by an unsigned integer.  IDX specifies the sub key or
+   user ID for attributes related to sub keys or user IDs.  */
 unsigned long gpgme_key_get_ulong_attr (GpgmeKey key, GpgmeAttr what,
                                        const void *reserved, int idx);
 
@@ -508,8 +508,7 @@ unsigned long gpgme_key_get_ulong_attr (GpgmeKey key, GpgmeAttr what,
 void gpgme_trust_item_release (GpgmeTrustItem item);
 
 /* Return the value of the attribute WHAT of ITEM, which has to be
-   representable by a string.  IDX specifies a running index if the
-   attribute appears more than once in the key.  */
+   representable by a string.  */
 const char *gpgme_trust_item_get_string_attr (GpgmeTrustItem item,
                                              GpgmeAttr what,
                                              const void *reserved, int idx);