summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNagappan Alagappan <nagappan@gmail.com>2013-08-16 16:58:18 -0700
committerNagappan Alagappan <nagappan@gmail.com>2013-08-16 16:58:18 -0700
commitc9e720eae7bd4a8272c0e4873b295955ec1273e1 (patch)
treeee64eb2ef579a2d663f839292d7fbec9edab56ec
parentc9c09463cd06392f204809ee32b820e71ed9f628 (diff)
moin2mdwn: convert page waittillguinotexist
-rw-r--r--waittillguinotexist.mdwn24
-rw-r--r--waittillguinotexist.moin19
2 files changed, 24 insertions, 19 deletions
diff --git a/waittillguinotexist.mdwn b/waittillguinotexist.mdwn
new file mode 100644
index 0000000..b13af31
--- /dev/null
+++ b/waittillguinotexist.mdwn
@@ -0,0 +1,24 @@
+
+
+## Syntax
+
+waittillguinotexist ('<window name>')
+
+
+## Description
+
+If the given window name does not exist, this function returns 1. If window exist, then this function returns 0. Difference between [[guiexist|guiexist]] and waitguinotexist is, waitguinotexist waits for maximum 30 seconds. Still the window does not disappear, then 0 is returned. We can set the environment variable 'GUI_TIMEOUT' to change the default waiting time.
+
+Ref: [[ldtp.c|http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/ldtp.c]]
+
+
+## Implementation
+
+returns 1 on success and 0 on no existing window
+
+
+## Example
+
+waittillguinotexist ('dlgOpen')
+
+This function will be useful, when some event is fired and after that if an existing window should close, we can use this function to wait till the window closes.
diff --git a/waittillguinotexist.moin b/waittillguinotexist.moin
deleted file mode 100644
index 56b6c9d..0000000
--- a/waittillguinotexist.moin
+++ /dev/null
@@ -1,19 +0,0 @@
-== Syntax ==
-
-waittillguinotexist ('<window name>')
-
-== Description ==
-
-If the given window name does not exist, this function returns 1. If window exist, then this function returns 0. Difference between [[guiexist]] and waitguinotexist is, waitguinotexist waits for maximum 30 seconds. Still the window does not disappear, then 0 is returned. We can set the environment variable 'GUI_TIMEOUT' to change the default waiting time.
-
-Ref: [[http://forge.novell.com/modules/xfmod/cvs/cvsbrowse.php/ldtp/pyldtp/ldtp.c|ldtp.c]]
-
-== Implementation ==
-
-returns 1 on success and 0 on no existing window
-
-== Example ==
-
-waittillguinotexist ('dlgOpen')
-
-This function will be useful, when some event is fired and after that if an existing window should close, we can use this function to wait till the window closes.