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 /
tcllib /
Delete
Unzip
Name
Size
Permission
Date
Action
autoscroll.rb
4.14
KB
-rw-r--r--
2023-07-26 18:01
calendar.rb
1.12
KB
-rw-r--r--
2023-07-26 18:01
canvas_sqmap.rb
689
B
-rw-r--r--
2023-07-26 18:01
canvas_zoom.rb
430
B
-rw-r--r--
2023-07-26 18:01
chatwidget.rb
3.31
KB
-rw-r--r--
2023-07-26 18:01
crosshair.rb
2.42
KB
-rw-r--r--
2023-07-26 18:01
ctext.rb
3.23
KB
-rw-r--r--
2023-07-26 18:01
cursor.rb
2.61
KB
-rw-r--r--
2023-07-26 18:01
dateentry.rb
1.2
KB
-rw-r--r--
2023-07-26 18:01
datefield.rb
1.4
KB
-rw-r--r--
2023-07-26 18:01
diagrams.rb
4.75
KB
-rw-r--r--
2023-07-26 18:01
dialog.rb
1.5
KB
-rw-r--r--
2023-07-26 18:01
getstring.rb
2.54
KB
-rw-r--r--
2023-07-26 18:01
history.rb
1.4
KB
-rw-r--r--
2023-07-26 18:01
ico.rb
3.87
KB
-rw-r--r--
2023-07-26 18:01
ip_entry.rb
1.67
KB
-rw-r--r--
2023-07-26 18:01
khim.rb
1.38
KB
-rw-r--r--
2023-07-26 18:01
menuentry.rb
1.02
KB
-rw-r--r--
2023-07-26 18:01
ntext.rb
3.32
KB
-rw-r--r--
2023-07-26 18:01
panelframe.rb
1.5
KB
-rw-r--r--
2023-07-26 18:01
plotchart.rb
37.57
KB
-rw-r--r--
2023-07-26 18:01
ruler.rb
1.26
KB
-rw-r--r--
2023-07-26 18:01
screenruler.rb
1.31
KB
-rw-r--r--
2023-07-26 18:01
scrolledwindow.rb
1.26
KB
-rw-r--r--
2023-07-26 18:01
scrollwin.rb
1.26
KB
-rw-r--r--
2023-07-26 18:01
setup.rb
316
B
-rw-r--r--
2023-07-26 18:01
statusbar.rb
1.61
KB
-rw-r--r--
2023-07-26 18:01
style.rb
1.1
KB
-rw-r--r--
2023-07-26 18:01
superframe.rb
1.11
KB
-rw-r--r--
2023-07-26 18:01
swaplist.rb
3.22
KB
-rw-r--r--
2023-07-26 18:01
tablelist.rb
667
B
-rw-r--r--
2023-07-26 18:01
tablelist_core.rb
25.31
KB
-rw-r--r--
2023-07-26 18:01
tablelist_tile.rb
996
B
-rw-r--r--
2023-07-26 18:01
tkpiechart.rb
6.96
KB
-rw-r--r--
2023-07-26 18:01
toolbar.rb
3.34
KB
-rw-r--r--
2023-07-26 18:01
tooltip.rb
2.18
KB
-rw-r--r--
2023-07-26 18:01
validator.rb
1.4
KB
-rw-r--r--
2023-07-26 18:01
widget.rb
2.33
KB
-rw-r--r--
2023-07-26 18:01
Save
Rename
# # tkextlib/tcllib/getstring.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # # * Part of tcllib extension # * A dialog which consists of an Entry, OK, and Cancel buttons. # require 'tk' require 'tk/entry' require 'tkextlib/tcllib.rb' # TkPackage.require('getstring', '0.1') TkPackage.require('getstring') module Tk::Tcllib class GetString_Dialog < TkWindow PACKAGE_NAME = 'getstring'.freeze def self.package_name PACKAGE_NAME end def self.package_version begin TkPackage.require('getstring') rescue '' end end end end class Tk::Tcllib::GetString_Dialog TkCommandNames = ['::getstring::tk_getString'.freeze].freeze WidgetClassName = 'TkSDialog'.freeze WidgetClassNames[WidgetClassName] ||= self def self.show(*args) dialog = self.new(*args) dialog.show [dialog.status, dialog.value] end def self.display(*args) self.show(*args) end def initialize(*args) # args = (parent=nil, text='', keys=nil) keys = args.pop if keys.kind_of?(Hash) text = args.pop @keys = _symbolkey2str(keys) args.push(keys) else text = keys @keys = {} end if text @text = text.dup else @text = '' end @variable = TkVariable.new @status = nil super(*args) end def create_self(keys) # dummy end private :create_self def show @variable.value = '' @status = bool(tk_call(self.class::TkCommandNames[0], @path, @variable, @text, *hash_kv(@keys))) end alias display show def status @status end def value @variable.value end def cget_strict(slot) slot = slot.to_s if slot == 'text' @text else @keys[slot] end end def cget(slot) cget_strict(slot) end def configure(slot, value=None) if slot.kind_of?(Hash) slot.each{|k, v| configure(k, v)} else slot = slot.to_s value = _symbolkey2str(value) if value.kind_of?(Hash) if value && value != None if slot == 'text' @text = value.to_s else @keys[slot] = value end else if slot == 'text' @text = '' else @keys.delete(slot) end end end self end def configinfo(slot = nil) if slot slot = slot.to_s [ slot, nil, nil, nil, ( (slot == 'text')? @text: @keys[slot] ) ] else @keys.collect{|k, v| [ k, nil, nil, nil, v ] } \ << [ 'text', nil, nil, nil, @text ] end end end