OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
doc
/
cmake
/
html
/
_static
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
๐
..
-
04/04/2023 07:10:48 PM
rwxr-xr-x
๐
_sphinx_javascript_frameworks_compat.js
4.31 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
basic.css
14.82 KB
04/04/2023 07:05:38 PM
rw-r--r--
๐
classic.css
4.21 KB
04/04/2023 07:05:38 PM
rw-r--r--
๐
cmake-favicon.ico
1.12 KB
04/04/2023 07:03:31 PM
rw-r--r--
๐
cmake-logo-16.png
692 bytes
04/04/2023 07:03:31 PM
rw-r--r--
๐
cmake.css
1.08 KB
04/04/2023 07:03:31 PM
rw-r--r--
๐
default.css
28 bytes
02/01/2023 02:49:18 PM
rw-r--r--
๐
doctools.js
7.98 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
documentation_options.js
422 bytes
04/04/2023 07:05:38 PM
rw-r--r--
๐
file.png
286 bytes
02/01/2023 02:49:18 PM
rw-r--r--
๐
jquery-3.6.0.js
281.82 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
jquery.js
87.4 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
language_data.js
4.65 KB
04/04/2023 07:05:38 PM
rw-r--r--
๐
minus.png
90 bytes
02/01/2023 02:49:18 PM
rw-r--r--
๐
plus.png
90 bytes
02/01/2023 02:49:18 PM
rw-r--r--
๐
pygments.css
3.3 KB
04/04/2023 07:05:38 PM
rw-r--r--
๐
searchtools.js
16.69 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
sidebar.js
2.48 KB
04/04/2023 07:05:38 PM
rw-r--r--
๐
underscore-1.13.1.js
66.82 KB
02/01/2023 02:49:18 PM
rw-r--r--
๐
underscore.js
19.07 KB
02/01/2023 02:49:18 PM
rw-r--r--
Editing: sidebar.js
Close
/* * sidebar.js * ~~~~~~~~~~ * * This script makes the Sphinx sidebar collapsible. * * .sphinxsidebar contains .sphinxsidebarwrapper. This script adds * in .sphixsidebar, after .sphinxsidebarwrapper, the #sidebarbutton * used to collapse and expand the sidebar. * * When the sidebar is collapsed the .sphinxsidebarwrapper is hidden * and the width of the sidebar and the margin-left of the document * are decreased. When the sidebar is expanded the opposite happens. * This script saves a per-browser/per-session cookie used to * remember the position of the sidebar among the pages. * Once the browser is closed the cookie is deleted and the position * reset to the default (expanded). * * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ const initialiseSidebar = () => { // global elements used by the functions. const bodyWrapper = document.getElementsByClassName("bodywrapper")[0] const sidebar = document.getElementsByClassName("sphinxsidebar")[0] const sidebarWrapper = document.getElementsByClassName('sphinxsidebarwrapper')[0] const sidebarButton = document.getElementById("sidebarbutton") const sidebarArrow = sidebarButton.querySelector('span') // for some reason, the document has no sidebar; do not run into errors if (typeof sidebar === "undefined") return; const flipArrow = element => element.innerText = (element.innerText === "ยป") ? "ยซ" : "ยป" const collapse_sidebar = () => { bodyWrapper.style.marginLeft = ".8em"; sidebar.style.width = ".8em" sidebarWrapper.style.display = "none" flipArrow(sidebarArrow) sidebarButton.title = _('Expand sidebar') window.localStorage.setItem("sidebar", "collapsed") } const expand_sidebar = () => { bodyWrapper.style.marginLeft = "" sidebar.style.removeProperty("width") sidebarWrapper.style.display = "" flipArrow(sidebarArrow) sidebarButton.title = _('Collapse sidebar') window.localStorage.setItem("sidebar", "expanded") } sidebarButton.addEventListener("click", () => { (sidebarWrapper.style.display === "none") ? expand_sidebar() : collapse_sidebar() }) if (!window.localStorage.getItem("sidebar")) return const value = window.localStorage.getItem("sidebar") if (value === "collapsed") collapse_sidebar(); else if (value === "expanded") expand_sidebar(); } if (document.readyState !== "loading") initialiseSidebar() else document.addEventListener("DOMContentLoaded", initialiseSidebar)