Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
hgext /
largefiles /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
4.63
KB
-rw-r--r--
2013-06-01 18:10
__init__.pyc
4.52
KB
-rw-r--r--
2020-03-31 23:33
__init__.pyo
4.52
KB
-rw-r--r--
2020-03-31 23:33
basestore.py
7.48
KB
-rw-r--r--
2013-06-01 18:10
basestore.pyc
7.96
KB
-rw-r--r--
2020-03-31 23:33
basestore.pyo
7.96
KB
-rw-r--r--
2020-03-31 23:33
lfcommands.py
20.97
KB
-rw-r--r--
2013-06-01 18:10
lfcommands.pyc
17.97
KB
-rw-r--r--
2020-03-31 23:33
lfcommands.pyo
17.97
KB
-rw-r--r--
2020-03-31 23:33
lfutil.py
12.66
KB
-rw-r--r--
2013-06-01 18:10
lfutil.pyc
16.77
KB
-rw-r--r--
2020-03-31 23:33
lfutil.pyo
16.77
KB
-rw-r--r--
2020-03-31 23:33
localstore.py
2.41
KB
-rw-r--r--
2013-06-01 18:10
localstore.pyc
2.76
KB
-rw-r--r--
2020-03-31 23:33
localstore.pyo
2.76
KB
-rw-r--r--
2020-03-31 23:33
overrides.py
45.57
KB
-rw-r--r--
2013-06-01 18:10
overrides.pyc
37.51
KB
-rw-r--r--
2020-03-31 23:33
overrides.pyo
37.51
KB
-rw-r--r--
2020-03-31 23:33
proto.py
6.66
KB
-rw-r--r--
2013-06-01 18:10
proto.pyc
6.45
KB
-rw-r--r--
2020-03-31 23:33
proto.pyo
6.45
KB
-rw-r--r--
2020-03-31 23:33
remotestore.py
3.25
KB
-rw-r--r--
2013-06-01 18:10
remotestore.pyc
3.91
KB
-rw-r--r--
2020-03-31 23:33
remotestore.pyo
3.91
KB
-rw-r--r--
2020-03-31 23:33
reposetup.py
23.44
KB
-rw-r--r--
2013-06-01 18:10
reposetup.pyc
13.25
KB
-rw-r--r--
2020-03-31 23:33
reposetup.pyo
13.25
KB
-rw-r--r--
2020-03-31 23:33
uisetup.py
8.27
KB
-rw-r--r--
2020-03-31 23:33
uisetup.pyc
5.22
KB
-rw-r--r--
2020-03-31 23:33
uisetup.pyo
5.22
KB
-rw-r--r--
2020-03-31 23:33
wirestore.py
1.3
KB
-rw-r--r--
2013-06-01 18:10
wirestore.pyc
1.9
KB
-rw-r--r--
2020-03-31 23:33
wirestore.pyo
1.9
KB
-rw-r--r--
2020-03-31 23:33
Save
Rename
# Copyright 2009-2010 Gregory P. Ward # Copyright 2009-2010 Intelerad Medical Systems Incorporated # Copyright 2010-2011 Fog Creek Software # Copyright 2010-2011 Unity Technologies # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. '''store class for local filesystem''' from mercurial.i18n import _ import lfutil import basestore class localstore(basestore.basestore): '''localstore first attempts to grab files out of the store in the remote Mercurial repository. Failing that, it attempts to grab the files from the user cache.''' def __init__(self, ui, repo, remote): self.remote = remote.local() super(localstore, self).__init__(ui, repo, self.remote.url()) def put(self, source, hash): if lfutil.instore(self.remote, hash): return lfutil.link(source, lfutil.storepath(self.remote, hash)) def exists(self, hashes): retval = {} for hash in hashes: retval[hash] = lfutil.instore(self.remote, hash) return retval def _getfile(self, tmpfile, filename, hash): path = lfutil.findfile(self.remote, hash) if not path: raise basestore.StoreError(filename, hash, self.url, _("can't get file locally")) fd = open(path, 'rb') try: return lfutil.copyandhash(fd, tmpfile) finally: fd.close() def _verifyfile(self, cctx, cset, contents, standin, verified): filename = lfutil.splitstandin(standin) if not filename: return False fctx = cctx[standin] key = (filename, fctx.filenode()) if key in verified: return False expecthash = fctx.data()[0:40] storepath = lfutil.storepath(self.remote, expecthash) verified.add(key) if not lfutil.instore(self.remote, expecthash): self.ui.warn( _('changeset %s: %s references missing %s\n') % (cset, filename, storepath)) return True # failed if contents: actualhash = lfutil.hashfile(storepath) if actualhash != expecthash: self.ui.warn( _('changeset %s: %s references corrupted %s\n') % (cset, filename, storepath)) return True # failed return False