ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html

changeset 29
76d04dd67367
parent 26
2dd206cd1aa2
child 32
fd79d080b065
diff -r df55ca77e25f -r 76d04dd67367 ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html
--- a/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html	Sun Oct 13 18:31:28 2013 +0200
+++ b/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html	Fri Oct 25 18:50:04 2013 +0200
@@ -35,6 +35,9 @@
 </tr><tr>
 <td><a href="#Project">Project</a></td>
 <td>Class implementing the Django project support.</td>
+</tr><tr>
+<td><a href="#QProcess">QProcess</a></td>
+<td>Class transforming the call arguments in case of gnome-terminal.</td>
 </tr>
 </table>
 <h3>Functions</h3>
@@ -392,7 +395,8 @@
             (string)
 </dd><dt><i>isGlobal</i></dt>
 <dd>
-flag indicating a standalone Django application (boolean)
+flag indicating a standalone Django application
+            (boolean)
 </dd>
 </dl><dl>
 <dt>Returns:</dt>
@@ -432,13 +436,14 @@
 <h4>Project.__databaseFlush</h4>
 <b>__databaseFlush</b>(<i></i>)
 <p>
-        Private slot to return all database tables to the state just after their
-        installation.
+        Private slot to return all database tables to the state just after
+        their installation.
 </p><a NAME="Project.__databaseInspect" ID="Project.__databaseInspect"></a>
 <h4>Project.__databaseInspect</h4>
 <b>__databaseInspect</b>(<i></i>)
 <p>
-        Private slot to introspect the database and output a Django model module.
+        Private slot to introspect the database and output a Django model
+        module.
 </p><a NAME="Project.__databaseSqlCreateEverything" ID="Project.__databaseSqlCreateEverything"></a>
 <h4>Project.__databaseSqlCreateEverything</h4>
 <b>__databaseSqlCreateEverything</b>(<i></i>)
@@ -567,9 +572,9 @@
 </dl><dl>
 <dt>Returns:</dt>
 <dd>
-list of full executable names, if the executable file is accessible
-            via the searchpath defined by the PATH environment variable, or an
-            empty list otherwise.
+list of full executable names, if the executable file is
+            accessible via the searchpath defined by the PATH environment
+            variable, or an empty list otherwise.
 </dd>
 </dl><a NAME="Project.__getLocale" ID="Project.__getLocale"></a>
 <h4>Project.__getLocale</h4>
@@ -778,7 +783,8 @@
 <h4>Project.__runTestServer</h4>
 <b>__runTestServer</b>(<i></i>)
 <p>
-        Private slot to run a development server with data from a set of fixtures.
+        Private slot to run a development server with data from a set of
+        fixtures.
 </p><a NAME="Project.__runTestSuite" ID="Project.__runTestSuite"></a>
 <h4>Project.__runTestSuite</h4>
 <b>__runTestSuite</b>(<i></i>)
@@ -794,12 +800,7 @@
 <b>__selectSite</b>(<i></i>)
 <p>
         Private method to select a site to work with.
-</p><dl>
-<dt>Returns:</dt>
-<dd>
-selected site (string)
-</dd>
-</dl><a NAME="Project.__serverProcFinished" ID="Project.__serverProcFinished"></a>
+</p><a NAME="Project.__serverProcFinished" ID="Project.__serverProcFinished"></a>
 <h4>Project.__serverProcFinished</h4>
 <b>__serverProcFinished</b>(<i></i>)
 <p>
@@ -1079,5 +1080,76 @@
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
+<hr /><hr />
+<a NAME="QProcess" ID="QProcess"></a>
+<h2>QProcess</h2>
+<p>
+    Class transforming the call arguments in case of gnome-terminal.
+</p>
+<h3>Derived from</h3>
+QProcessPyQt
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#QProcess.start">start</a></td>
+<td>Static method to start the given program (cmd) in a new process, if none is already running, passing the command line arguments in args.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+<table>
+<tr>
+<td><a href="#QProcess.startDetached">startDetached</a></td>
+<td>Static method to start the given program (cmd) in a new process, if none is already running, passing the command line arguments in args.</td>
+</tr>
+</table>
+<a NAME="QProcess.start" ID="QProcess.start"></a>
+<h4>QProcess.start</h4>
+<b>start</b>(<i>cmd, args=[], mode=QProcessPyQt.ReadWrite</i>)
+<p>
+        Static method to start the given program (cmd) in a new process, if
+        none is already running, passing the command line arguments in args.
+</p><dl>
+<dt><i>cmd</i></dt>
+<dd>
+start the given program cmd (string)
+</dd><dt><i>args=</i></dt>
+<dd>
+list of parameters (list of strings)
+</dd><dt><i>mode=</i></dt>
+<dd>
+access mode (QIODevice.OpenMode)
+</dd>
+</dl><a NAME="QProcess.startDetached" ID="QProcess.startDetached"></a>
+<h4>QProcess.startDetached (static)</h4>
+<b>startDetached</b>(<i>args=[], path=''</i>)
+<p>
+        Static method to start the given program (cmd) in a new process, if
+        none is already running, passing the command line arguments in args.
+</p><dl>
+<dt><i>cmd</i></dt>
+<dd>
+start the given program cmd (string)
+</dd><dt><i>args=</i></dt>
+<dd>
+list of parameters (list of strings)
+</dd><dt><i>path=</i></dt>
+<dd>
+new working directory (string)
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+tuple of successful start and process id (boolean, integer)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
 <hr />
 </body></html>
\ No newline at end of file

eric ide

mercurial