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 /
document /
[ HOME SHELL ]
Name
Size
Permission
Action
bounding_box.rb
15.56
KB
-rw-r--r--
column_box.rb
3.96
KB
-rw-r--r--
internals.rb
2.25
KB
-rw-r--r--
span.rb
1.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : internals.rb
# internals.rb : Implements document internals for Prawn # # Copyright August 2008, Gregory Brown. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'forwardable' module Prawn class Document # This module exposes a few low-level PDF features for those who want # to extend Prawn's core functionality. If you are not comfortable with # low level PDF functionality as defined by Adobe's specification, chances # are you won't need anything you find here. # # @private module Internals extend Forwardable # These methods are not officially part of Prawn's public API, # but they are used in documentation and possibly in extensions. # Perhaps they will become part of the extension API? # Anyway, for now it's not clear what we should do w. them. delegate [ :graphic_state, :on_page_create ] => :renderer def save_graphics_state(state = nil, &block) save_transformation_stack renderer.save_graphics_state(state, &block) end def restore_graphics_state restore_transformation_stack renderer.restore_graphics_state end # FIXME: This is a circular reference, because in theory Prawn should # be passing instances of renderer to PDF::Core::Page, but it's # passing Prawn::Document objects instead. # # A proper design would probably not require Prawn to directly instantiate # PDF::Core::Page objects at all! delegate [:compression_enabled?] => :renderer # FIXME: More circular references in PDF::Core::Page. delegate [:ref, :ref!, :deref] => :renderer # FIXME: Another circular reference, because we mix in a module from # PDF::Core to provide destinations, which in theory should not # rely on a Prawn::Document object but is currently wired up that way. delegate [:names] => :renderer # FIXME: Circular reference because we mix PDF::Core::Text into # Prawn::Document. PDF::Core::Text should either be split up or # moved in its entirety back up into Prawn. delegate [:add_content] => :renderer def renderer @renderer ||= PDF::Core::Renderer.new(state) end end end end
Close