summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornags <nags@nags-desktop.(none)>2009-07-30 20:29:39 -0700
committernags <nags@nags-desktop.(none)>2009-07-30 20:29:39 -0700
commit70688feb279c9b88670b292201e5eebad4f5efd6 (patch)
treea515871977b488873d75893e88b7104c71444446
parent953dcf25d39be426b583644b9e13f1f72174f391 (diff)
Updated doc for doesrowexist function to have partial match.
-rw-r--r--doc/pyldtp-doc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/pyldtp-doc.h b/doc/pyldtp-doc.h
index 555af3e..13cdda3 100644
--- a/doc/pyldtp-doc.h
+++ b/doc/pyldtp-doc.h
@@ -3786,11 +3786,14 @@
/** \page doesrowexist doesrowexist
* \section Syntax
*
- * doesrowexist ('\<window name\>', '\<table name\>', '\<string to be matched\>', no of matches)
+ * doesrowexist ('\<window name\>', '\<table name\>', '\<string to be
+ * matched\>'[, \<partial match = False\>])
*
* \section Description
*
- * Checks whether the table contains any row with any of its cell containing the given string as its value.Please note that it checks for an exact match.
+ * Checks whether the table contains any row with any of its cell
+ * containing the given string as its value.Please note that it checks
+ * for an exact match, if partial match is set to False.
*
* \section ImplementationDetails
*
@@ -3805,6 +3808,8 @@
* With respect to the message list table in Evolution Mailer, the following call will return 1 if there is atleast one mail in the list with the given string in the subject field or sender field or in any other field for that matter.
*
* doesrowexist ('dlgContactListMembers', 'tblContacts', 'Sample subject')
+ *
+ * doesrowexist ('dlgContactListMembers', 'tblContacts', 'Sample', True)
*
* \author Manu <manunature@rediffmail.com>
*/