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 /
ruby23 /
lib64 /
ruby /
2.3.0 /
tkextlib /
tcllib /
Delete
Unzip
Name
Size
Permission
Date
Action
autoscroll.rb
4.17
KB
-rw-r--r--
2023-07-26 18:09
calendar.rb
1.15
KB
-rw-r--r--
2023-07-26 18:09
canvas_sqmap.rb
720
B
-rw-r--r--
2023-07-26 18:09
canvas_zoom.rb
461
B
-rw-r--r--
2023-07-26 18:09
chatwidget.rb
3.34
KB
-rw-r--r--
2023-07-26 18:09
crosshair.rb
2.45
KB
-rw-r--r--
2023-07-26 18:09
ctext.rb
3.26
KB
-rw-r--r--
2023-07-26 18:09
cursor.rb
2.64
KB
-rw-r--r--
2023-07-26 18:09
dateentry.rb
1.23
KB
-rw-r--r--
2023-07-26 18:09
datefield.rb
1.43
KB
-rw-r--r--
2023-07-26 18:09
diagrams.rb
4.78
KB
-rw-r--r--
2023-07-26 18:09
dialog.rb
1.54
KB
-rw-r--r--
2023-07-26 18:09
getstring.rb
2.57
KB
-rw-r--r--
2023-07-26 18:09
history.rb
1.43
KB
-rw-r--r--
2023-07-26 18:09
ico.rb
3.9
KB
-rw-r--r--
2023-07-26 18:09
ip_entry.rb
1.7
KB
-rw-r--r--
2023-07-26 18:09
khim.rb
1.41
KB
-rw-r--r--
2023-07-26 18:09
menuentry.rb
1.05
KB
-rw-r--r--
2023-07-26 18:09
ntext.rb
3.35
KB
-rw-r--r--
2023-07-26 18:09
panelframe.rb
1.54
KB
-rw-r--r--
2023-07-26 18:09
plotchart.rb
37.6
KB
-rw-r--r--
2023-07-26 18:09
ruler.rb
1.29
KB
-rw-r--r--
2023-07-26 18:09
screenruler.rb
1.34
KB
-rw-r--r--
2023-07-26 18:09
scrolledwindow.rb
1.29
KB
-rw-r--r--
2023-07-26 18:09
scrollwin.rb
1.29
KB
-rw-r--r--
2023-07-26 18:09
setup.rb
347
B
-rw-r--r--
2023-07-26 18:09
statusbar.rb
1.64
KB
-rw-r--r--
2023-07-26 18:09
style.rb
1.13
KB
-rw-r--r--
2023-07-26 18:09
superframe.rb
1.14
KB
-rw-r--r--
2023-07-26 18:09
swaplist.rb
3.25
KB
-rw-r--r--
2023-07-26 18:09
tablelist.rb
698
B
-rw-r--r--
2023-07-26 18:09
tablelist_core.rb
25.34
KB
-rw-r--r--
2023-07-26 18:09
tablelist_tile.rb
1
KB
-rw-r--r--
2023-07-26 18:09
tkpiechart.rb
6.99
KB
-rw-r--r--
2023-07-26 18:09
toolbar.rb
3.38
KB
-rw-r--r--
2023-07-26 18:09
tooltip.rb
2.21
KB
-rw-r--r--
2023-07-26 18:09
validator.rb
1.43
KB
-rw-r--r--
2023-07-26 18:09
widget.rb
2.36
KB
-rw-r--r--
2023-07-26 18:09
Save
Rename
# frozen_string_literal: false # # tkextlib/tcllib/ntext.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # # * Part of tcllib extension # * Ntext bindtag # require 'tk' require 'tkextlib/tcllib.rb' # TkPackage.require('ntext', '0.81') TkPackage.require('ntext') module Tk::Tcllib Ntext = TkBindTag.new_by_name('Ntext') end # variables Tk::Tcllib::Ntext.instance_eval{ # boolean @classicAnchor = TkVarAccess.new('::ntext::classicAnchor') @classicExtras = TkVarAccess.new('::ntext::classicExtras') @classicMouseSelect = TkVarAccess.new('::ntext::classicMouseSelect') @classicWordBreak = TkVarAccess.new('::ntext::classicWordBreak') @classicWrap = TkVarAccess.new('::ntext::classicWrap') @overwrite = TkVarAccess.new('::ntext::overwrite') # regexp @newWrapRegexp = TkVarAccess.new('::ntext::newWrapRegexp') # variables (advanced use) @tcl_match_wordBreakAfter = TkVarAccess.new('::ntext::tcl_match_wordBreakAfter') @tcl_match_wordBreakBefore = TkVarAccess.new('::ntext::tcl_match_wordBreakBefore') @tcl_match_endOfWord = TkVarAccess.new('::ntext::tcl_match_endOfWord') @tcl_match_startOfNextWord = TkVarAccess.new('::ntext::tcl_match_startOfNextWord') @tcl_match_startOfPreviousWord = TkVarAccess.new('::ntext::tcl_match_startOfPreviousWord') } class << Tk::Tcllib::Ntext def wrapIndent(txt, *args) TK.tk_call('::next::wrapIndent', txt, *args) end def initializeMatchPatterns TK.tk_call('::next::initializeMatchPatterns') self end def createMatchPatterns(*args) TK.tk_call('::next::createMatchPatterns', *args) self end # functions (advanced use) #ntext::new_wordBreakAfter #ntext::new_wordBreakBefore #ntext::new_endOfWord #ntext::new_startOfNextWord #ntext::new_startOfPreviousWord # accessor def classicAnchor @classicAnchor.bool end def classicAnchor=(mode) @classicAnchor.bool = mode end def classicExtras @classicExtras.bool end def classicExtras=(mode) @classicExtras.bool = mode end def classicMouseSelect @classicMouseSelect.bool end def classicMouseSelect=(mode) @classicMouseSelect.bool = mode end def classicWordBreak @classicWordBreak.bool end def classicWordBreak=(mode) @classicWordBreak.bool = mode end def classicWrap @classicWrap.bool end def classicWrap=(mode) @classicWrap.bool = mode end def overwrite @overwrite.bool end def overwrite=(mode) @classic.bool = mode end def newWrapRegexp @newWrapRegexp.value end def newWrapRegexp=(val) @newWrapRegexp.value = val end def tcl_match_wordBreakAfter @tcl_match_wordBreakAfter.value end def tcl_match_wordBreakAfter=(val) @tcl_match_wordBreakAfter.value = val end def tcl_match_wordBreakBefore @tcl_match_wordBreakBefore.value end def tcl_match_wordBreakBefore=(val) @tcl_match_wordBreakBefore.value = val end def tcl_match_endOfWord @tcl_match_endOfWord.value end def tcl_match_endOfWord=(val) @tcl_match_endOfWord.value = val end def tcl_match_startOfNextWord @tcl_match_startOfNextWord.value end def tcl_match_startOfNextWord=(val) @tcl_match_startOfNextWord.value = val end def tcl_match_startOfPreviousWord @tcl_match_startOfPreviousWord.value end def tcl_match_startOfPreviousWord=(val) @tcl_match_startOfPreviousWord.value = val end end