Fri, 01 May 2015 11:32:13 +0200
Regenerated source docu.
--- a/APIs/Python3/eric6.api Fri May 01 11:27:32 2015 +0200 +++ b/APIs/Python3/eric6.api Fri May 01 11:32:13 2015 +0200 @@ -1814,6 +1814,10 @@ eric6.Globals.settingsNameGlobal?7 eric6.Globals.settingsNameOrganization?7 eric6.Globals.settingsNameRecent?7 +eric6.Globals.toBool?4(value) +eric6.Globals.toByteArray?4(value) +eric6.Globals.toDict?4(value) +eric6.Globals.toList?4(value) eric6.Graphics.ApplicationDiagramBuilder.ApplicationDiagramBuilder.buildDiagram?4() eric6.Graphics.ApplicationDiagramBuilder.ApplicationDiagramBuilder.getPersistenceData?4() eric6.Graphics.ApplicationDiagramBuilder.ApplicationDiagramBuilder.parsePersistenceData?4(version, data) @@ -9079,6 +9083,7 @@ eric6.install.main?4(argv) eric6.install.modDir?7 eric6.install.platBinDir?7 +eric6.install.prepareInfoFile?4(fileName) eric6.install.progLanguages?7 eric6.install.progName?7 eric6.install.pyModDir?7
--- a/Documentation/Help/source.qhp Fri May 01 11:27:32 2015 +0200 +++ b/Documentation/Help/source.qhp Fri May 01 11:32:13 2015 +0200 @@ -13348,6 +13348,7 @@ <keyword name="pbkdf2" id="pbkdf2" ref="eric6.Utilities.crypto.py3PBKDF2.html#pbkdf2" /> <keyword name="pendingWrite" id="pendingWrite" ref="eric6.DebugClients.Ruby.AsyncFile.html#pendingWrite" /> <keyword name="pep8 (Module)" id="pep8 (Module)" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pep8.html" /> + <keyword name="prepareInfoFile" id="prepareInfoFile" ref="eric6.install.html#prepareInfoFile" /> <keyword name="prepareProcess" id="prepareProcess" ref="eric6.Plugins.VcsPlugins.vcsMercurial.HgUtilities.html#prepareProcess" /> <keyword name="prepareQtMacBundle" id="prepareQtMacBundle" ref="eric6.Utilities.__init__.html#prepareQtMacBundle" /> <keyword name="prepareUninstall" id="prepareUninstall" ref="eric6.Plugins.PluginVcsMercurial.html#prepareUninstall" /> @@ -13497,10 +13498,14 @@ <keyword name="thread_list" id="thread_list" ref="eric6.DebugClients.Ruby.Debuggee.html#thread_list" /> <keyword name="thread_list_all" id="thread_list_all" ref="eric6.DebugClients.Ruby.Debuggee.html#thread_list_all" /> <keyword name="timeString" id="timeString" ref="eric6.Helpviewer.Download.DownloadUtilities.html#timeString" /> + <keyword name="toBool" id="toBool" ref="eric6.Globals.__init__.html#toBool" /> <keyword name="toBool" id="toBool" ref="eric6.Preferences.__init__.html#toBool" /> <keyword name="toBool" id="toBool" ref="eric6.Utilities.__init__.html#toBool" /> + <keyword name="toByteArray" id="toByteArray" ref="eric6.Globals.__init__.html#toByteArray" /> <keyword name="toByteArray" id="toByteArray" ref="eric6.Preferences.__init__.html#toByteArray" /> + <keyword name="toDict" id="toDict" ref="eric6.Globals.__init__.html#toDict" /> <keyword name="toDict" id="toDict" ref="eric6.Preferences.__init__.html#toDict" /> + <keyword name="toList" id="toList" ref="eric6.Globals.__init__.html#toList" /> <keyword name="toList" id="toList" ref="eric6.Preferences.__init__.html#toList" /> <keyword name="toNativeSeparators" id="toNativeSeparators" ref="eric6.Utilities.__init__.html#toNativeSeparators" /> <keyword name="toSecondLevelDomain" id="toSecondLevelDomain" ref="eric6.Helpviewer.AdBlock.AdBlockRule.html#toSecondLevelDomain" />
--- a/Documentation/Source/eric6.Globals.__init__.html Fri May 01 11:27:32 2015 +0200 +++ b/Documentation/Source/eric6.Globals.__init__.html Fri May 01 11:32:13 2015 +0200 @@ -63,6 +63,18 @@ </tr><tr> <td><a href="#setConfigDir">setConfigDir</a></td> <td>Module function to set the name of the directory storing the config data.</td> +</tr><tr> +<td><a href="#toBool">toBool</a></td> +<td>Module function to convert a value to bool.</td> +</tr><tr> +<td><a href="#toByteArray">toByteArray</a></td> +<td>Module function to convert a value to a byte array.</td> +</tr><tr> +<td><a href="#toDict">toDict</a></td> +<td>Module function to convert a value to a dictionary.</td> +</tr><tr> +<td><a href="#toList">toList</a></td> +<td>Module function to convert a value to a list.</td> </tr> </table> <hr /><hr /> @@ -200,5 +212,77 @@ </dd> </dl> <div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="toBool" ID="toBool"></a> +<h2>toBool</h2> +<b>toBool</b>(<i>value</i>) +<p> + Module function to convert a value to bool. +</p><dl> +<dt><i>value</i></dt> +<dd> +value to be converted +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +converted data +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="toByteArray" ID="toByteArray"></a> +<h2>toByteArray</h2> +<b>toByteArray</b>(<i>value</i>) +<p> + Module function to convert a value to a byte array. +</p><dl> +<dt><i>value</i></dt> +<dd> +value to be converted +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +converted data +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="toDict" ID="toDict"></a> +<h2>toDict</h2> +<b>toDict</b>(<i>value</i>) +<p> + Module function to convert a value to a dictionary. +</p><dl> +<dt><i>value</i></dt> +<dd> +value to be converted +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +converted data +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="toList" ID="toList"></a> +<h2>toList</h2> +<b>toList</b>(<i>value</i>) +<p> + Module function to convert a value to a list. +</p><dl> +<dt><i>value</i></dt> +<dd> +value to be converted +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +converted data +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> <hr /> </body></html> \ No newline at end of file
--- a/Documentation/Source/eric6.install.html Fri May 01 11:27:32 2015 +0200 +++ b/Documentation/Source/eric6.install.html Fri May 01 11:32:13 2015 +0200 @@ -91,6 +91,9 @@ <td><a href="#main">main</a></td> <td>The main function of the script.</td> </tr><tr> +<td><a href="#prepareInfoFile">prepareInfoFile</a></td> +<td>Function to prepare an Info.py file when installing from source.</td> +</tr><tr> <td><a href="#pyName">pyName</a></td> <td>Local function to create the Python source file name for the compiled .ui file.</td> </tr><tr> @@ -376,6 +379,19 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> +<a NAME="prepareInfoFile" ID="prepareInfoFile"></a> +<h2>prepareInfoFile</h2> +<b>prepareInfoFile</b>(<i>fileName</i>) +<p> + Function to prepare an Info.py file when installing from source. +</p><dl> +<dt><i>fileName</i></dt> +<dd> +name of the Python file containing the info (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> <a NAME="pyName" ID="pyName"></a> <h2>pyName</h2> <b>pyName</b>(<i>py_dir, py_file</i>)