Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby22 /
lib64 /
ruby /
2.2.0 /
tkextlib /
blt /
Delete
Unzip
Name
Size
Permission
Date
Action
tile
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
barchart.rb
1.75
KB
-rw-r--r--
2023-07-26 18:01
bitmap.rb
2.48
KB
-rw-r--r--
2023-07-26 18:01
busy.rb
1.69
KB
-rw-r--r--
2023-07-26 18:01
component.rb
59.75
KB
-rw-r--r--
2023-07-26 18:01
container.rb
640
B
-rw-r--r--
2023-07-26 18:01
cutbuffer.rb
520
B
-rw-r--r--
2023-07-26 18:01
dragdrop.rb
6.61
KB
-rw-r--r--
2023-07-26 18:01
eps.rb
723
B
-rw-r--r--
2023-07-26 18:01
graph.rb
1.49
KB
-rw-r--r--
2023-07-26 18:01
htext.rb
2.58
KB
-rw-r--r--
2023-07-26 18:01
setup.rb
316
B
-rw-r--r--
2023-07-26 18:01
spline.rb
464
B
-rw-r--r--
2023-07-26 18:01
stripchart.rb
1.65
KB
-rw-r--r--
2023-07-26 18:01
table.rb
9.59
KB
-rw-r--r--
2023-07-26 18:01
tabnotebook.rb
2.88
KB
-rw-r--r--
2023-07-26 18:01
tabset.rb
12.23
KB
-rw-r--r--
2023-07-26 18:01
ted.rb
1.6
KB
-rw-r--r--
2023-07-26 18:01
tile.rb
904
B
-rw-r--r--
2023-07-26 18:01
tree.rb
26.54
KB
-rw-r--r--
2023-07-26 18:01
treeview.rb
27.82
KB
-rw-r--r--
2023-07-26 18:01
unix_dnd.rb
3.93
KB
-rw-r--r--
2023-07-26 18:01
vector.rb
4.89
KB
-rw-r--r--
2023-07-26 18:01
watch.rb
3.6
KB
-rw-r--r--
2023-07-26 18:01
win_printer.rb
1.27
KB
-rw-r--r--
2023-07-26 18:01
winop.rb
2.65
KB
-rw-r--r--
2023-07-26 18:01
Save
Rename
# # tkextlib/blt/htext.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tk/itemconfig.rb' require 'tkextlib/blt.rb' module Tk::BLT class Htext<TkWindow Htext_Var = TkVarAccess.new_hash('htext') Htext_Widget = TkVarAccess.new('htext(widget)', :window) Htext_File = TkVarAccess.new('htext(file)') Htext_Line = TkVarAccess.new('htext(line)') include TkItemConfigMethod include Scrollable TkCommandNames = ['::blt::htext'.freeze].freeze WidgetClassName = 'Htext'.freeze WidgetClassNames[WidgetClassName] ||= self alias window_cget_tkstring itemcget_tkstring alias window_cget itemcget alias window_cget_strict itemcget_strict alias window_configure itemconfigure alias window_configuinfo itemconfiginfo alias current_window_configuinfo current_itemconfiginfo def __strval_optkeys super() << 'filename' end private :__strval_optkeys def append(win, keys={}) tk_send('append', _epath(win), keys) self end def goto_line(idx) tk_send_without_enc('gotoline', idx) self end def current_line number(tk_send_without_enc('gotoline')) end def index(str) number(tk_send('index', str)) end def line_pos(str) tk_send('linepos', str) end def range(from=None, to=None) tk_send_without_enc('range', from, to) end def scan_mark(pos) tk_send_without_enc('scan', 'mark', pos) self end def scan_dragto(pos) tk_send_without_enc('scan', 'dragto', pos) self end def search(pat, from=None, to=None) num = number(tk_send('search', pat, from, to)) (num < 0)? nil: num end def selection_adjust(index) tk_send_without_enc('selection', 'adjust', index) self end def selection_clear() tk_send_without_enc('selection', 'clear') self end def selection_from(index) tk_send_without_enc('selection', 'from', index) self end def selection_line(index) tk_send_without_enc('selection', 'line', index) self end def selection_present() bool(tk_send_without_enc('selection', 'present')) end def selection_range(first, last) tk_send_without_enc('selection', 'range', first, last) self end def selection_to(index) tk_send_without_enc('selection', 'to', index) self end def selection_word(index) tk_send_without_enc('selection', 'word', index) self end def windows(pat=None) list(tk_send('windows', pat)) end end end