Skip to content

Commit

Permalink
fix: Trim whitespace and line endings with ECLint (#3215)
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Mar 19, 2021
1 parent 2f79a03 commit fc36604
Show file tree
Hide file tree
Showing 172 changed files with 290 additions and 380 deletions.
1 change: 0 additions & 1 deletion files/en-us/glossary/block/scripting/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@ <h3 id="Learn_about_it">Learn about it</h3>
<ul>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Statements/block">JavaScript block statement</a></li>
</ul>

1 change: 0 additions & 1 deletion files/en-us/glossary/compile_time/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@ <h3 id="General_knowledge">General knowledge</h3>
<ul>
<li>{{Interwiki("wikipedia", "Compile time")}} on Wikipedia</li>
</ul>

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
---
<p><span class="seoSummary">A <em>CORS-safelisted response header</em> is an <a href="/en-US/docs/Web/HTTP/Headers">HTTP header</a> in a <a href="/en-US/docs/Web/HTTP/CORS">CORS</a> response that it is considered <em>safe</em> to expose to client scripts. Only safelisted response headers are made available to web pages.</span></p>

<p>By default, the safelist includes the following response headers:</p>
<p>By default, the safelist includes the following response headers:</p>
<ul>
<li>{{HTTPHeader("Cache-Control")}}</li>
<li>{{HTTPHeader("Content-Language")}}</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@ <h3 id="General_knowledge">General knowledge</h3>
<ul>
<li>{{interwiki("wikipedia", "Denial-of-service_attack", "Denial-of-service attack")}} on Wikipedia</li>
</ul>

1 change: 0 additions & 1 deletion files/en-us/glossary/grid_container/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ <h3 id="Further_reading">Further reading</h3>
<ul>
<li>CSS Grid Layout guide: <em><a href="/en-US/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout">Basic concepts of grid layout</a></em></li>
</ul>

1 change: 0 additions & 1 deletion files/en-us/glossary/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ <h2 id="See_also">See also</h2>
<li><strong><a href="/en-US/docs/Glossary">MDN Web Docs Glossary</a></strong>{{ListSubpagesForSidebar("/en-us/docs/Glossary", 1)}}</li>
</ol>
</section>

1 change: 0 additions & 1 deletion files/en-us/glossary/inheritance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ <h3 id="Learn_about_it">Learn about it</h3>
<ul>
<li><a href="/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain">Inheritance and the prototype chain</a></li>
</ul>

2 changes: 0 additions & 2 deletions files/en-us/glossary/localization/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,3 @@ <h3 id="General_knowledge">General knowledge</h3>
<li>{{Link("/en-US/docs/Mozilla/Localization")}} on MDN</li>
<li>{{interwiki("wikipedia", "Language localisation", "Localization")}} on Wikipedia</li>
</ul>


1 change: 0 additions & 1 deletion files/en-us/glossary/netscape_navigator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ <h3 id="General_Knowledge">General knowledge</h3>
<ul>
<li>{{Interwiki("wikipedia", "Netscape Navigator")}} on Wikipedia</li>
</ul>

4 changes: 2 additions & 2 deletions files/en-us/glossary/table_grid_box/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
slug: Glossary/Table_Grid_Box
tags:
- Glossary
- CSS
- Tables
- CSS
- Tables
---
<p><span class="seoSummary">The <strong>Table Grid Box</strong> is a block level box which contains all of the table internal boxes, excluding the caption. The box which includes the caption is referred to as the <a href="/en-US/docs/Glossary/Table_Wrapper_Box">Table Wrapper Box</a>.</span></p>
4 changes: 2 additions & 2 deletions files/en-us/glossary/table_wrapper_box/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
slug: Glossary/Table_Wrapper_Box
tags:
- Glossary
- CSS
- Tables
- CSS
- Tables
---
<p><span class="seoSummary">The <strong>Table Wrapper Box</strong> is the box generated around <a href="/en-US/docs/Glossary/Table_Grid_Box">table grid boxes</a> which accounts for the space needed for any caption displayed for the table. This box will become the containing block for absolutely positioned items where the table is the containing block.</span></p>
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2 id="Styling_backgrounds_in_CSS">Styling backgrounds in CSS</h2>
<pre class="brush: css">.box {
background: linear-gradient(105deg, rgba(255,255,255,.2) 39%, rgba(51,56,57,1) 96%) center center / 400px 200px no-repeat,
url(big-star.png) center no-repeat, rebeccapurple;
}
}
</pre>

<p>We'll return to how the shorthand works later in the tutorial, but first let's have a look at the different things you can do with backgrounds in CSS, by looking at the individual background properties.</p>
Expand Down Expand Up @@ -114,7 +114,7 @@ <h4 id="Positioning_the_background_image">Positioning the background image</h4>
background-image: url(star.png);
background-repeat: no-repeat;
background-position: top center;
}
}
</pre>

<p>And <a href="/en-US/docs/Web/CSS/length">Lengths</a>, and <a href="/en-US/docs/Web/CSS/percentage">percentages</a>:</p>
Expand All @@ -123,7 +123,7 @@ <h4 id="Positioning_the_background_image">Positioning the background image</h4>
background-image: url(star.png);
background-repeat: no-repeat;
background-position: 20px 10%;
}
}
</pre>

<p>You can also mix keyword values with lengths or percentages, in which case the first value must refer to the horizontal position or offset and the second vertical. For example:</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h2 id="What_is_a_CSS_value">What is a CSS value?</h2>
<pre class="brush: css">h1 {
color: black;
background-color: rgb(197,93,161);
}
}
</pre>

<p>A value type in CSS is a way to define a collection of allowable values. This means that if you see <code>&lt;color&gt;</code> as valid you don't need to wonder which of the different types of color value can be used — keywords, hex values, <code>rgb()</code> functions, etc. You can use <em>any</em> available <code>&lt;color&gt;</code> values, assuming they are supported by your browser. The page on MDN for each value will give you information about browser support. For example, if you look at the page for <code><a href="/en-US/docs/Web/CSS/color_value">&lt;color&gt;</a></code> you will see that the browser compatibility section lists different types of color value and support for them.</p>
Expand Down
1 change: 0 additions & 1 deletion files/en-us/learn/css/howto/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,3 @@ <h3 id="Layout_guides">Layout guides</h3>
<h3>The CSS Layout Cookbook</h3>
<p>We have a cookbook dedicated to <a href="/en-US/docs/Web/CSS/Layout_cookbook">CSS Layout solutions</a>, with fully worked examples and explanations of common layout tasks.</p>
</div>

2 changes: 1 addition & 1 deletion files/en-us/learn/css/styling_text/web_fonts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h3 id="Generating_the_required_code">Generating the required code</h3>
<li>Click <em>Download your kit</em>.</li>
</ol>

<p>After the generator has finished processing, you should get a ZIP file to download — save it in the same directory as your HTML and CSS.</p>
<p>After the generator has finished processing, you should get a ZIP file to download — save it in the same directory as your HTML and CSS.</p>

<p>Web services for font generation typically limit file sizes. In such a case, consider using tools such as:</p>
<ol>
Expand Down
4 changes: 2 additions & 2 deletions files/en-us/learn/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<div class="callout">
<h4 id="Looking_to_become_a_front-end_web_developer">Looking to become a front-end web
developer?</h4>

<p>We have put together a course that includes all the essential information you need to
work towards your goal.</p>

<p><a class="button primary" href="/en-US/docs/Learn/Front-end_web_developer">Get started</a>
</p>
</div>
Expand Down
16 changes: 8 additions & 8 deletions files/en-us/learn/javascript/asynchronous/async_await/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h2 id="Rewriting_promise_code_with_asyncawait">Rewriting promise code with asyn
.then(response =&gt; {
  if (!response.ok) {
    throw new Error(`HTTP error! status: ${response.status}`);
  }
  }
  return response.blob();
})
.then(myBlob =&gt; {
Expand All @@ -122,8 +122,8 @@ <h2 id="Rewriting_promise_code_with_asyncawait">Rewriting promise code with asyn

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
}

let myBlob = await response.blob();

let objectURL = URL.createObjectURL(myBlob);
Expand All @@ -146,7 +146,7 @@ <h2 id="Rewriting_promise_code_with_asyncawait">Rewriting promise code with asyn
let response = await fetch('coffee.jpg');
if (!response.ok) {
    throw new Error(`HTTP error! status: ${response.status}`);
  }
  }
  return await response.blob();

}
Expand Down Expand Up @@ -188,13 +188,13 @@ <h3 id="Adding_error_handling">Adding error handling</h3>

if (!response.ok) {
  throw new Error(`HTTP error! status: ${response.status}`);
}
}
  let myBlob = await response.blob();
  let objectURL = URL.createObjectURL(myBlob);
  let image = document.createElement('img');
  image.src = objectURL;
  document.body.appendChild(image);

} catch(e) {
console.log(e);
}
Expand All @@ -212,7 +212,7 @@ <h3 id="Adding_error_handling">Adding error handling</h3>
  throw new Error(`HTTP error! status: ${response.status}`);
}
  return await response.blob();

}

myFetch().then((blob) =&gt; {
Expand Down Expand Up @@ -255,7 +255,7 @@ <h2 id="Awaiting_a_Promise.all">Awaiting a Promise.all()</h2>
}

return content;


}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h3 id="Creating_our_new_objects">Creating our new objects</h3>
}</pre>
As discussed above, the only addition is to check if the ball exists — by using <code>balls[j].exists</code> in the <code>if</code> conditional.
</li>


</ol>

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/learn/performance/multimedia/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h4 id="The_most_optimal_format">The most optimal format</h4>
<div class="notecard note">
<h4>Note</h4>
<p>For general information on image types see the <a href="/en-US/docs/Web/Media/Formats/Image_types">Image file type and format guide</a></p>
</div>
</div>

<p>The <a href="/en-US/docs/Web/Media/Formats/Image_types#svg">SVG</a> format is more appropriate for images that have few colors and that are not photo-realistic. This requires the source to be available as in a vector graphic format. Should such an image only exist as a bitmap, then <a href="/en-US/docs/Web/Media/Formats/Image_types#png">PNG</a> would be the fallback format to chose. Examples for these types of motifs are logos, illustrations, charts or icons (note: SVGs are far better than icon fonts!). Both formats support transparency.</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ <h3 id="Handling_the_request_views.py">Handling the request (views.py)</h3>
<div class="notecard note">
<h4>Note</h4>
<p>A little bit of Python:</p>

<ul>
<li><a href="https://docs.python.org/3/tutorial/modules.html">Python modules</a> are "libraries" of functions, stored in separate files, that we might want to use in our code. Here we import just the <code>HttpResponse</code> object from the <code>django.http</code> module so that we can use it in our view: <code>from django.http import HttpResponse</code> . There are other ways of importing some or all objects from a module.</li>
<li>Functions are declared using the <code>def</code> keyword as shown above, with named parameters listed in brackets after the name of the function; the whole line ends in a colon. Note how the next lines are all <strong>indented</strong>. The indentation is important, as it specifies that the lines of code are inside that particular block (mandatory indentation is a key feature of Python, and is one reason that Python code is so easy to read).</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ <h2 id="Registering_the_catalog_application">Registering the catalog application
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Add our new application
# Add our new application
'catalog.apps.CatalogConfig', #This object was created for us in /catalog/apps.py
]</pre>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h2>Note</h2>
<h2 id="What_do_we_need_help_with">What do we need help with?</h2>

<p>To help you choose what content issues to work on, we've sorted them using GitHub labels.</p>

<p>The labels below help you find tasks based on how much time you have available.</p>

<table class="standard-table">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ <h2 id="Guidelines">Guidelines</h2>
<h2 id="Good_shell_prompt_examples_on_MDN">Good shell prompt examples on MDN</h2>

<p>Our <a href="/en-US/docs/Learn/Server-side/Django">Django server-side development docs</a> show good practice presentation of shell prompt commands, etc. on MDN. See <a href="/en-US/docs/Learn/Server-side/Django/development_environment">Setting up a Django development environment</a> for example.</p>

1 change: 0 additions & 1 deletion files/en-us/mozilla/add-ons/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,3 @@ <h2 id="Other_types_of_add-ons">Other types of add-ons</h2>
<h2 id="Contact_us">Contact us</h2>

<p>Check out the <a href="/en-US/docs/Mozilla/Add-ons/Contact_us">contact us</a> page for details on how to get help, keep up to date with add-ons news, and give us feedback.</p>

Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("webextensions.api.browserSettings.closeTabsByDoubleClick")}}</p>

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h3 id="Parameters">Parameters</h3>
<dd><code>any</code>.</dd>
<dt><code>responseCallback</code>{{Optional_Inline}}</dt>
<dd><code>function</code>. The function is passed the following arguments:

<dl class="api-reference-values">
<dt><code>response</code></dt>
<dd><code>any</code>. The JSON response object sent by the handler of the request. If an error occurs while connecting to the extension, the callback will be called with no arguments and {{WebExtAPIRef('runtime.lastError')}} will be set to the error message.</dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,3 @@
<li>{{WebExtAPIRef("tabs.insertCSS()")}}</li>
<li>{{WebExtAPIRef("tabs.removeCSS()")}}</li>
</ul>


Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,3 @@ <h2 id="Examples">Examples</h2>
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</pre>
</div>

Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ <h3 id="Version-specific_Tools"> Version-specific Tools </h3>
<td></td>
</tr>
</tbody>
</table>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,4 @@ <h2 id="Original_Document_Information">Original Document Information</h2>
content available under a Creative Commons license | <a class="external"
href="https://www.mozilla.org/foundation/licensing/website-content.html">Details</a>.</li>
</ul>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ <h2 id="See_also">See also</h2>
<ul>
<li><a href="/en-US/docs/Mozilla/Firefox/Privacy/State_Partitioning">State Partitioning in Firefox</a></li>
</ul>

Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ <h3 id="Feedback">Feedback</h3>
href="http://bugzilla.mozilla.org/enter_bug.cgi?product=JSS">bugzilla</a>.</li>
<li>You can also give feedback directly to the developers on the Mozilla Cryptography forums... {{
DiscussionList("dev-tech-crypto", "mozilla.dev.tech.crypto") }}</li>
</ul>
</ul>
1 change: 0 additions & 1 deletion files/en-us/mozilla/projects/nss/jss/using_jss/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,3 @@ <h3 id="Setup_your_runtime_environment"><a name="runtime">Setup your runtime env
<h3 id="Initialize_JSS_in_your_application"><a name="init">Initialize JSS in your application</a></h3>

<p>Before calling any JSS methods, you must initialize JSS by calling one of the <code>CryptoManager.initialize</code> methods. See the <a href="javadoc">javadoc</a> for more details.</p>

Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,3 @@ <h3 id="Original_Document_Information">Original Document Information</h3>
<li>Last Updated Date: January 27th, 2003</li>
<li>Copyright © 2001-2003 Netscape. All rights reserved.</li>
</ul>

Original file line number Diff line number Diff line change
Expand Up @@ -345,4 +345,4 @@ <h1 id="Compatibility">Compatibility</h1>
future versions of the NSS shared libraries.</p>
<h1 id="Feedback">Feedback</h1>
<p>Bugs discovered should be reported by filing a bug report with <a class=" link-https"
href="https://bugzilla.mozilla.org/">mozilla.org Bugzilla</a> (product NSS).</p>
href="https://bugzilla.mozilla.org/">mozilla.org Bugzilla</a> (product NSS).</p>
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>

Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>

Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>

Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>


Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>

Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,3 @@ <h2 id="Compatibility">Compatibility</h2>
<h2 id="Feedback">Feedback</h2>

<p>Bugs discovered should be reported by filing a bug report with<a href="https://bugzilla.mozilla.org/enter_bug.cgi?product=NSS"> bugzilla.mozilla.org</a> (product NSS).</p>

Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ <h2 id="Notes">Notes</h2>
<p>Due to changes to MDN, we have been notified that the NSS documentation will have to move off of MDN. It is not fully clear yet,
but the proposed solution is to move the documentation in-tree (nss/docs), to the md/sphinx format, and have it either rendered as a sub-section of the Firefox source docs or as a standalone website. More information will follow in the NSS 3.63 notes.</p>

<p>Regarding the Release day, in order to organize release process better and avoid issues, we will likely move the release day to Thursdays. Please take a look at the release calendar for the exact dates.</p>
<p>Regarding the Release day, in order to organize release process better and avoid issues, we will likely move the release day to Thursdays. Please take a look at the release calendar for the exact dates.</p>

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ <h3 id="See_also"> See also </h3>
<ul>
<li> <a href="/en-US/NSC_EncryptInit">NSC_EncryptInit</a>
</li>
</ul>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ <h3 id="See_also"> See also </h3>
<ul>
<li> <a href="/en-US/NSC_GetSlotInfo">NSC_GetSlotInfo</a>
</li>
</ul>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ <h3 id="See_also"> See also </h3>
<ul>
<li> <a href="/en-US/docs/Mozilla/Projects/NSS/Reference/FC_GetSlotInfo">FC_GetSlotInfo</a>, <a href="/en-US/NSC_GetTokenInfo">NSC_GetTokenInfo</a>
</li>
</ul>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ <h3 id="See_also"> See also </h3>
<ul>
<li> <a href="/en-US/docs/Mozilla/Projects/NSS/Reference/FC_WaitForSlotEvent">FC_WaitForSlotEvent</a>
</li>
</ul>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,4 @@ <h2 id="Usage">Usage</h2>

</p>
<p>cmsutil -S [-i <i>infile</i>] [-o <i>outfile</i>]
[-d <i>dbdir</i>] [-p <i>password</i>] -N <i>nickname</i>[-TGP] [-Y <i>ekprefnick</i>]</p>
[-d <i>dbdir</i>] [-p <i>password</i>] -N <i>nickname</i>[-TGP] [-Y <i>ekprefnick</i>]</p>
Original file line number Diff line number Diff line change
Expand Up @@ -839,4 +839,4 @@ <h3 id="Changing_the_Password_on_a_Token">
After you press Enter, the tool displays the following: </a>
<pre><a id="1043967">Using database directory c:\databases... <br>Enter old password: <br>Incorrect password, try again... <br>Enter old password: <br>Enter new password: <br>Re-enter new password: <br>Token "Communicator Certificate DB" password changed successfully. <br>C:\modutil&gt; </a></pre>

<hr>
<hr>
Loading

0 comments on commit fc36604

Please sign in to comment.