Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.224.60.132
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python-docs-2.7.5 /
html /
_static /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax-loader.gif
673
B
-rw-r--r--
basic.css
6.77
KB
-rw-r--r--
comment-bright.png
3.42
KB
-rw-r--r--
comment-close.png
3.49
KB
-rw-r--r--
comment.png
3.36
KB
-rw-r--r--
copybutton.js
2.4
KB
-rw-r--r--
default.css
4.03
KB
-rw-r--r--
doctools.js
6.68
KB
-rw-r--r--
down-pressed.png
368
B
-rw-r--r--
down.png
363
B
-rw-r--r--
file.png
392
B
-rw-r--r--
jquery.js
70.48
KB
-rw-r--r--
minus.png
199
B
-rw-r--r--
opensearch.xml
569
B
-rw-r--r--
plus.png
199
B
-rw-r--r--
py.png
695
B
-rw-r--r--
pygments.css
3.84
KB
-rw-r--r--
searchtools.js
15.67
KB
-rw-r--r--
sidebar.js
4.63
KB
-rw-r--r--
underscore.js
8.37
KB
-rw-r--r--
up-pressed.png
372
B
-rw-r--r--
up.png
363
B
-rw-r--r--
version_switch.js
1.76
KB
-rw-r--r--
websupport.js
24.65
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : copybutton.js
$(document).ready(function() { /* Add a [>>>] button on the top-right corner of code samples to hide * the >>> and ... prompts and the output and thus make the code * copyable. */ var div = $('.highlight-python .highlight,' + '.highlight-python3 .highlight') var pre = div.find('pre'); // get the styles from the current theme pre.parent().parent().css('position', 'relative'); var hide_text = 'Hide the prompts and output'; var show_text = 'Show the prompts and output'; var border_width = pre.css('border-top-width'); var border_style = pre.css('border-top-style'); var border_color = pre.css('border-top-color'); var button_styles = { 'cursor':'pointer', 'position': 'absolute', 'top': '0', 'right': '0', 'border-color': border_color, 'border-style': border_style, 'border-width': border_width, 'color': border_color, 'text-size': '75%', 'font-family': 'monospace', 'padding-left': '0.2em', 'padding-right': '0.2em' } // create and add the button to all the code blocks that contain >>> div.each(function(index) { var jthis = $(this); if (jthis.find('.gp').length > 0) { var button = $('<span class="copybutton">>>></span>'); button.css(button_styles) button.attr('title', hide_text); jthis.prepend(button); } // tracebacks (.gt) contain bare text elements that need to be // wrapped in a span to work with .nextUntil() (see later) jthis.find('pre:has(.gt)').contents().filter(function() { return ((this.nodeType == 3) && (this.data.trim().length > 0)); }).wrap('<span>'); }); // define the behavior of the button when it's clicked $('.copybutton').toggle( function() { var button = $(this); button.parent().find('.go, .gp, .gt').hide(); button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'hidden'); button.css('text-decoration', 'line-through'); button.attr('title', show_text); }, function() { var button = $(this); button.parent().find('.go, .gp, .gt').show(); button.next('pre').find('.gt').nextUntil('.gp, .go').css('visibility', 'visible'); button.css('text-decoration', 'none'); button.attr('title', hide_text); }); });
Close