Deploying to master from @ 178b1d111dc9c456485bcf02d3ad0b203eb0c67b 🚀

This commit is contained in:
Holt59
2021-02-07 19:21:20 +00:00
parent be9560dc7f
commit f96e54ace4
4 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -351,7 +351,7 @@ a valid shared pointer.</p>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.IFileTree.clear" title="mobase.IFileTree.clear"><code class="xref py py-obj docutils literal notranslate"><span class="pre">clear</span></code></a>()</p></td>
<td><p>Delete (detach) all the entries from this tree.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#mobase.IFileTree.copy" title="mobase.IFileTree.copy"><code class="xref py py-obj docutils literal notranslate"><span class="pre">copy</span></code></a>(entry[, path, policy])</p></td>
<tr class="row-even"><td><p><a class="reference internal" href="#mobase.IFileTree.copy" title="mobase.IFileTree.copy"><code class="xref py py-obj docutils literal notranslate"><span class="pre">copy</span></code></a>(entry[, path, insert_policy])</p></td>
<td><p>Move the given entry to the given path under this tree.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.IFileTree.createOrphanTree" title="mobase.IFileTree.createOrphanTree"><code class="xref py py-obj docutils literal notranslate"><span class="pre">createOrphanTree</span></code></a>([name])</p></td>
@@ -491,7 +491,7 @@ entry that cannot be deleted, this means that the tree can be partially cleared.
<dl class="method">
<dt id="mobase.IFileTree.copy">
<code class="sig-name descname">copy</code><span class="sig-paren">(</span><em class="sig-param">entry</em>, <em class="sig-param">path=''</em>, <em class="sig-param">policy=&lt;InsertPolicy.FAIL_IF_EXISTS: Ellipsis&gt;</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.IFileTree.copy" title="Permalink to this definition"></a></dt>
<code class="sig-name descname">copy</code><span class="sig-paren">(</span><em class="sig-param">entry</em>, <em class="sig-param">path=''</em>, <em class="sig-param">insert_policy=&lt;InsertPolicy.FAIL_IF_EXISTS: Ellipsis&gt;</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.IFileTree.copy" title="Permalink to this definition"></a></dt>
<dd><p>Move the given entry to the given path under this tree.</p>
<p>The entry must not be a parent tree of this tree. This method can also be used
to rename entries.</p>
@@ -508,7 +508,7 @@ entry, and to subtrees of this tree if the insert policy is MERGE.</p>
<li><p><strong>path</strong> The path to copy the entry to. If the path ends with / or , the entry will
be copied in the corresponding directory instead of replacing it. If the
given path is empty (<cite>“”</cite>), the entry is copied directly under this tree.</p></li>
<li><p><strong>policy</strong> Policy to use to resolve conflicts.</p></li>
<li><p><strong>insert_policy</strong> Policy to use to resolve conflicts.</p></li>
</ul>
</dd>
<dt class="field-even">Returns</dt>
+3 -3
View File
@@ -296,7 +296,7 @@
<col style="width: 90%" />
</colgroup>
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.SaveGameInfo.getMissingAssets" title="mobase.SaveGameInfo.getMissingAssets"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getMissingAssets</span></code></a>(filepath)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.SaveGameInfo.getMissingAssets" title="mobase.SaveGameInfo.getMissingAssets"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getMissingAssets</span></code></a>(save)</p></td>
<td><p>Retrieve missing assets from the save.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#mobase.SaveGameInfo.getSaveGameWidget" title="mobase.SaveGameInfo.getSaveGameWidget"><code class="xref py py-obj docutils literal notranslate"><span class="pre">getSaveGameWidget</span></code></a>(parent)</p></td>
@@ -307,11 +307,11 @@
<p class="rubric">Methods Documentation</p>
<dl class="method">
<dt id="mobase.SaveGameInfo.getMissingAssets">
<em class="property">abstract </em><code class="sig-name descname">getMissingAssets</code><span class="sig-paren">(</span><em class="sig-param">filepath</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.SaveGameInfo.getMissingAssets" title="Permalink to this definition"></a></dt>
<em class="property">abstract </em><code class="sig-name descname">getMissingAssets</code><span class="sig-paren">(</span><em class="sig-param">save</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.SaveGameInfo.getMissingAssets" title="Permalink to this definition"></a></dt>
<dd><p>Retrieve missing assets from the save.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><p><strong>filepath</strong> The save to find missing assets for.</p>
<dd class="field-odd"><p><strong>save</strong> The save to find missing assets for.</p>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><p>A collection of missing assets and the modules that can supply those assets.</p>
+3 -3
View File
@@ -323,7 +323,7 @@
</dl>
</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.VersionInfo.parse" title="mobase.VersionInfo.parse"><code class="xref py py-obj docutils literal notranslate"><span class="pre">parse</span></code></a>(value[, scheme, manual_input])</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="#mobase.VersionInfo.parse" title="mobase.VersionInfo.parse"><code class="xref py py-obj docutils literal notranslate"><span class="pre">parse</span></code></a>(value[, scheme, is_manual])</p></td>
<td><p>Update this VersionInfo by parsing the given string using the given scheme.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#mobase.VersionInfo.scheme" title="mobase.VersionInfo.scheme"><code class="xref py py-obj docutils literal notranslate"><span class="pre">scheme</span></code></a>()</p></td>
@@ -389,14 +389,14 @@ and [4,inf) for major/minor/subminor/subsubminor. This only versions with a regu
<dl class="method">
<dt id="mobase.VersionInfo.parse">
<code class="sig-name descname">parse</code><span class="sig-paren">(</span><em class="sig-param">value</em>, <em class="sig-param">scheme=&lt;VersionScheme.DISCOVER: Ellipsis&gt;</em>, <em class="sig-param">manual_input=False</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.VersionInfo.parse" title="Permalink to this definition"></a></dt>
<code class="sig-name descname">parse</code><span class="sig-paren">(</span><em class="sig-param">value</em>, <em class="sig-param">scheme=&lt;VersionScheme.DISCOVER: Ellipsis&gt;</em>, <em class="sig-param">is_manual=False</em><span class="sig-paren">)</span><a class="headerlink" href="#mobase.VersionInfo.parse" title="Permalink to this definition"></a></dt>
<dd><p>Update this VersionInfo by parsing the given string using the given scheme.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>value</strong> String to parse.</p></li>
<li><p><strong>scheme</strong> Scheme to use to parse the string.</p></li>
<li><p><strong>manual_input</strong> True if the given string should be treated as user input.</p></li>
<li><p><strong>is_manual</strong> True if the given string should be treated as user input.</p></li>
</ul>
</dd>
</dl>
+1 -1
View File
File diff suppressed because one or more lines are too long