Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
php /
pear /
Text /
Wiki /
Render /
Latex /
Delete
Unzip
Name
Size
Permission
Date
Action
Anchor.php
585
B
-rw-rw-rw-
2016-01-27 13:07
Blockquote.php
738
B
-rw-rw-rw-
2016-01-27 13:07
Bold.php
575
B
-rw-rw-rw-
2016-01-27 13:07
Box.php
1.35
KB
-rw-rw-rw-
2016-01-27 13:07
Break.php
435
B
-rw-rw-rw-
2016-01-27 13:07
Center.php
714
B
-rw-rw-rw-
2016-01-27 13:07
Code.php
511
B
-rw-rw-rw-
2016-01-27 13:07
Colortext.php
1.11
KB
-rw-rw-rw-
2016-01-27 13:07
Deflist.php
1.09
KB
-rw-rw-rw-
2016-01-27 13:07
Delimiter.php
558
B
-rw-rw-rw-
2016-01-27 13:07
Embed.php
451
B
-rw-rw-rw-
2016-01-27 13:07
Emphasis.php
579
B
-rw-rw-rw-
2016-01-27 13:07
Font.php
1.96
KB
-rw-rw-rw-
2016-01-27 13:07
Freelink.php
171
B
-rw-rw-rw-
2016-01-27 13:07
Function.php
442
B
-rw-rw-rw-
2016-01-27 13:07
Heading.php
784
B
-rw-rw-rw-
2016-01-27 13:07
Horiz.php
465
B
-rw-rw-rw-
2016-01-27 13:07
Html.php
455
B
-rw-rw-rw-
2016-01-27 13:07
Image.php
1.75
KB
-rw-rw-rw-
2016-01-27 13:07
Include.php
130
B
-rw-rw-rw-
2016-01-27 13:07
Interwiki.php
1.59
KB
-rw-rw-rw-
2016-01-27 13:07
Italic.php
577
B
-rw-rw-rw-
2016-01-27 13:07
List.php
2.2
KB
-rw-rw-rw-
2016-01-27 13:07
Newline.php
157
B
-rw-rw-rw-
2016-01-27 13:07
Page.php
1.22
KB
-rw-rw-rw-
2016-01-27 13:07
Paragraph.php
596
B
-rw-rw-rw-
2016-01-27 13:07
Phplookup.php
755
B
-rw-rw-rw-
2016-01-27 13:07
Plugin.php
1.3
KB
-rw-rw-rw-
2016-01-27 13:07
Prefilter.php
2.23
KB
-rw-rw-rw-
2016-01-27 13:07
Preformatted.php
1.29
KB
-rw-rw-rw-
2016-01-27 13:07
Raw.php
447
B
-rw-rw-rw-
2016-01-27 13:07
Revise.php
776
B
-rw-rw-rw-
2016-01-27 13:07
Smiley.php
1.26
KB
-rw-rw-rw-
2016-01-27 13:07
Specialchar.php
1.64
KB
-rw-rw-rw-
2016-01-27 13:07
Strong.php
582
B
-rw-rw-rw-
2016-01-27 13:07
Subscript.php
1.35
KB
-rw-rw-rw-
2016-01-27 13:07
Superscript.php
627
B
-rw-rw-rw-
2016-01-27 13:07
Table.php
2.41
KB
-rw-rw-rw-
2016-01-27 13:07
Tighten.php
131
B
-rw-rw-rw-
2016-01-27 13:07
Titlebar.php
1.38
KB
-rw-rw-rw-
2016-01-27 13:07
Toc.php
546
B
-rw-rw-rw-
2016-01-27 13:07
Tt.php
578
B
-rw-rw-rw-
2016-01-27 13:07
Underline.php
588
B
-rw-rw-rw-
2016-01-27 13:07
Url.php
894
B
-rw-rw-rw-
2016-01-27 13:07
Wikilink.php
1.66
KB
-rw-rw-rw-
2016-01-27 13:07
Save
Rename
<?php class Text_Wiki_Render_Latex_List extends Text_Wiki_Render { /** * * Renders a token into text matching the requested format. * * This rendering method is syntactically and semantically compliant * with XHTML 1.1 in that sub-lists are part of the previous list item. * * @access public * * @param array $options The "options" portion of the token (second * element). * * @return string The text rendered from the token options. * */ function token($options) { // make nice variables (type, level, count) extract($options); switch ($type) { case 'bullet_list_start': return "\\begin{itemize}\n"; case 'bullet_list_end': return "\\end{itemize}\n"; case 'number_list_start': $depth = 'enumi' . str_pad('', $level, 'i'); $enum = '\arabic'; if (isset($format)) { switch ($format) { case 'a': $enum = '\alph'; break; case 'A': $enum = '\Alph'; break; case 'i': $enum = '\roman'; break; case 'I': $enum = '\Roman'; break; } } return '\renewcommand{\labelenumi}{' . $enum . '{' . $depth . "}}\n\\begin{enumerate}\n"; case 'number_list_end': return "\\end{enumerate}\n"; case 'bullet_item_start': case 'number_item_start': return '\item{'; case 'bullet_item_end': case 'number_item_end': return "}\n"; default: // ignore item endings and all other types. // item endings are taken care of by the other types // depending on their place in the list. return ''; break; } } } ?>