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 /
doc /
subversion-1.6.11 /
tools /
dev /
[ HOME SHELL ]
Name
Size
Permission
Action
iz
[ DIR ]
drwxr-xr-x
check-license.py
3.97
KB
-rwxr-xr-x
contribulyze.py
27.5
KB
-rwxr-xr-x
datecheck.py
2.46
KB
-rwxr-xr-x
find-bad-style.py
728
B
-rwxr-xr-x
gcov.patch
2.94
KB
-rw-r--r--
gen-javahl-errors.py
2.58
KB
-rwxr-xr-x
gnuify-changelog.pl
5.8
KB
-rwxr-xr-x
graph-dav-servers.py
4.45
KB
-rwxr-xr-x
lock-check.py
2.49
KB
-rwxr-xr-x
min-includes.sh
1.47
KB
-rwxr-xr-x
mlpatch.py
3.88
KB
-rwxr-xr-x
normalize-dump.py
3.11
KB
-rwxr-xr-x
po-merge.py
5.72
KB
-rwxr-xr-x
prebuild-cleanup.sh
644
B
-rwxr-xr-x
random-commits.py
903
B
-rwxr-xr-x
scramble-tree.py
8.16
KB
-rwxr-xr-x
stress.pl
16.26
KB
-rwxr-xr-x
svn-dev.el
20.24
KB
-rw-r--r--
svn-dev.vim
1.99
KB
-rw-r--r--
svn-entries.el
3.71
KB
-rw-r--r--
svn-merge-revs.py
2.36
KB
-rwxr-xr-x
trails.py
5.39
KB
-rwxr-xr-x
verify-history.py
2.09
KB
-rwxr-xr-x
warn-ignored-err.sh
1.98
KB
-rwxr-xr-x
which-error.py
3.46
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gen-javahl-errors.py
#!/usr/bin/env python # # gen-javahl-errors.py: Generate a Java class containing an enum for the # C error codes # # ==================================================================== # Copyright (c) 2007-2009 CollabNet. All rights reserved. # # * This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://subversion.tigris.org/license-1.html. # If newer versions of this license are posted there, you may use a # newer version instead, at your option. # # * This software consists of voluntary contributions made by many # individuals. For exact contribution history, see the revision # history and logs, available at http://subversion.tigris.org/. # ==================================================================== # import sys, os try: from svn import core except ImportError, e: sys.stderr.write("ERROR: Unable to import Subversion's Python bindings: '%s'\n" \ "Hint: Set your PYTHONPATH environment variable, or adjust your " \ "PYTHONSTARTUP\nfile to point to your Subversion install " \ "location's svn-python directory.\n" % e) sys.stderr.flush() sys.exit(1) def get_errors(): errs = {} for key in vars(core): if key.find('SVN_ERR_') == 0: try: val = int(vars(core)[key]) errs[val] = key except: pass return errs def gen_javahl_class(error_codes, output_filename): jfile = open(output_filename, 'w') jfile.write( """/** ErrorCodes.java - This file is autogenerated by gen-javahl-errors.py */ package org.tigris.subversion.javahl; /** * Provide mappings from error codes generated by the C runtime to meaningful * Java values. For a better description of each error, please see * svn_error_codes.h in the C source. */ public class ErrorCodes { """) keys = sorted(error_codes.keys()) for key in keys: # Format the code name to be more Java-esque code_name = error_codes[key][8:].replace('_', ' ').title().replace(' ', '') code_name = code_name[0].lower() + code_name[1:] jfile.write(" public static final int %s = %d;\n" % (code_name, key)) jfile.write("}\n") jfile.close() if __name__ == "__main__": if len(sys.argv) > 1: output_filename = sys.argv[1] else: output_filename = os.path.join('..', '..', 'subversion', 'bindings', 'javahl', 'src', 'org', 'tigris', 'subversion', 'javahl', 'ErrorCodes.java') gen_javahl_class(get_errors(), output_filename)
Close