Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions sphinx/themes/basic/static/doctools.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
/*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
* SPDX-FileCopyrightText: Sphinx team (see AUTHORS file)
* SPDX-License-Identifier: BSD-2-Clause
*
* @license magnet:?xt=urn:btih:87f119ba0b429ba17a44b4bffcab33165ebdacc0&dn=freebsd.txt BSD-2-Clause
*/
"use strict";

Expand Down Expand Up @@ -148,3 +153,5 @@ const Documentation = {
const _ = Documentation.gettext;

_ready(Documentation.init);

// @license-end
7 changes: 7 additions & 0 deletions sphinx/themes/basic/static/searchtools.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
/*
* Sphinx JavaScript utilities for the full-text search.
*
* SPDX-FileCopyrightText: Sphinx team (see AUTHORS file)
* SPDX-License-Identifier: BSD-2-Clause
*
* @license magnet:?xt=urn:btih:87f119ba0b429ba17a44b4bffcab33165ebdacc0&dn=freebsd.txt BSD-2-Clause
*/
"use strict";

Expand Down Expand Up @@ -691,3 +696,5 @@ const Search = {
};

_ready(Search.init);

// @license-end
11 changes: 10 additions & 1 deletion sphinx/themes/basic/static/sphinx_highlight.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/* Highlighting utilities for Sphinx HTML documentation. */
/*
* Highlighting utilities for Sphinx HTML documentation.
*
* SPDX-FileCopyrightText: Sphinx team (see AUTHORS file)
* SPDX-License-Identifier: BSD-2-Clause
*
* @license magnet:?xt=urn:btih:87f119ba0b429ba17a44b4bffcab33165ebdacc0&dn=freebsd.txt BSD-2-Clause
*/
"use strict";

const SPHINX_HIGHLIGHT_ENABLED = true;
Expand Down Expand Up @@ -157,3 +164,5 @@ _ready(() => {
if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
SphinxHighlight.initEscapeListener();
});

// @license-end
Loading