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 /
ruby23 /
lib64 /
ruby /
2.3.0 /
tkextlib /
blt /
Delete
Unzip
Name
Size
Permission
Date
Action
tile
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
barchart.rb
1.78
KB
-rw-r--r--
2023-07-26 18:09
bitmap.rb
2.51
KB
-rw-r--r--
2023-07-26 18:09
busy.rb
1.72
KB
-rw-r--r--
2023-07-26 18:09
component.rb
59.78
KB
-rw-r--r--
2023-07-26 18:09
container.rb
671
B
-rw-r--r--
2023-07-26 18:09
cutbuffer.rb
551
B
-rw-r--r--
2023-07-26 18:09
dragdrop.rb
6.64
KB
-rw-r--r--
2023-07-26 18:09
eps.rb
754
B
-rw-r--r--
2023-07-26 18:09
graph.rb
1.52
KB
-rw-r--r--
2023-07-26 18:09
htext.rb
2.61
KB
-rw-r--r--
2023-07-26 18:09
setup.rb
347
B
-rw-r--r--
2023-07-26 18:09
spline.rb
495
B
-rw-r--r--
2023-07-26 18:09
stripchart.rb
1.68
KB
-rw-r--r--
2023-07-26 18:09
table.rb
9.62
KB
-rw-r--r--
2023-07-26 18:09
tabnotebook.rb
2.91
KB
-rw-r--r--
2023-07-26 18:09
tabset.rb
12.26
KB
-rw-r--r--
2023-07-26 18:09
ted.rb
1.63
KB
-rw-r--r--
2023-07-26 18:09
tile.rb
935
B
-rw-r--r--
2023-07-26 18:09
tree.rb
26.57
KB
-rw-r--r--
2023-07-26 18:09
treeview.rb
27.85
KB
-rw-r--r--
2023-07-26 18:09
unix_dnd.rb
3.96
KB
-rw-r--r--
2023-07-26 18:09
vector.rb
4.92
KB
-rw-r--r--
2023-07-26 18:09
watch.rb
3.63
KB
-rw-r--r--
2023-07-26 18:09
win_printer.rb
1.3
KB
-rw-r--r--
2023-07-26 18:09
winop.rb
2.68
KB
-rw-r--r--
2023-07-26 18:09
Save
Rename
# frozen_string_literal: false # # 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