Skip to content

Commit b542bc6

Browse files
committed
Deploying to gh-pages from @ 08fe531 🚀
1 parent 6ab096f commit b542bc6

File tree

9 files changed

+379
-377
lines changed

9 files changed

+379
-377
lines changed

latest/_modules/gssapi/raw/named_tuples.html

Lines changed: 25 additions & 29 deletions
Large diffs are not rendered by default.

latest/_static/basic.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -731,8 +731,9 @@ dl.glossary dt {
731731

732732
.classifier:before {
733733
font-style: normal;
734-
margin: 0.5em;
734+
margin: 0 0.5em;
735735
content: ":";
736+
display: inline-block;
736737
}
737738

738739
abbr, acronym {
@@ -756,6 +757,7 @@ span.pre {
756757
-ms-hyphens: none;
757758
-webkit-hyphens: none;
758759
hyphens: none;
760+
white-space: nowrap;
759761
}
760762

761763
div[class*="highlight-"] {

latest/_static/doctools.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -264,6 +264,9 @@ var Documentation = {
264264
hideSearchWords : function() {
265265
$('#searchbox .highlight-link').fadeOut(300);
266266
$('span.highlighted').removeClass('highlighted');
267+
var url = new URL(window.location);
268+
url.searchParams.delete('highlight');
269+
window.history.replaceState({}, '', url);
267270
},
268271

269272
/**

latest/_static/language_data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This script contains the language-specific data used by searchtools.js,
66
* namely the list of stopwords, stemmer, scorer and splitter.
77
*
8-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
8+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
99
* :license: BSD, see LICENSE for details.
1010
*
1111
*/

latest/_static/searchtools.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for the full-text search.
66
*
7-
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -328,7 +328,9 @@ var Search = {
328328
var results = [];
329329

330330
for (var prefix in objects) {
331-
for (var name in objects[prefix]) {
331+
for (var iMatch = 0; iMatch != objects[prefix].length; ++iMatch) {
332+
var match = objects[prefix][iMatch];
333+
var name = match[4];
332334
var fullname = (prefix ? prefix + '.' : '') + name;
333335
var fullnameLower = fullname.toLowerCase()
334336
if (fullnameLower.indexOf(object) > -1) {
@@ -342,7 +344,6 @@ var Search = {
342344
} else if (parts[parts.length - 1].indexOf(object) > -1) {
343345
score += Scorer.objPartialMatch;
344346
}
345-
var match = objects[prefix][name];
346347
var objname = objnames[match[1]][2];
347348
var title = titles[match[0]];
348349
// If more than one term searched for, we require other words to be

latest/gssapi.html

Lines changed: 109 additions & 109 deletions
Large diffs are not rendered by default.

latest/gssapi.raw.html

Lines changed: 230 additions & 230 deletions
Large diffs are not rendered by default.

latest/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<section id="python-gssapi-python-bindings-for-gssapi">
7474
<h1>Python-GSSAPI: Python bindings for GSSAPI<a class="headerlink" href="#python-gssapi-python-bindings-for-gssapi" title="Permalink to this headline"></a></h1>
7575
<p>Python-GSSAPI provides Python bindings for the GSSAPI C bindings as defined
76-
by <span class="target" id="index-0"></span><a class="rfc reference external" href="https://tools.ietf.org/html/rfc2744.html"><strong>RFC 2744</strong></a>, as well as several extensions.</p>
76+
by <span class="target" id="index-0"></span><a class="rfc reference external" href="https://datatracker.ietf.org/doc/html/rfc2744.html"><strong>RFC 2744</strong></a>, as well as several extensions.</p>
7777
<p>The package is organized into two parts: a high-level API and a low-level API.
7878
The high-level API resides in <a class="reference internal" href="gssapi.html#module-gssapi" title="gssapi"><code class="xref py py-mod docutils literal notranslate"><span class="pre">gssapi</span></code></a>, and presents an object-oriented
7979
API around GSSAPI.</p>

latest/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)