System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
lib-tk
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
Canvas.py
# This module exports classes for the various canvas item types # NOTE: This module was an experiment and is now obsolete. # It's best to use the Tkinter.Canvas class directly. from warnings import warnpy3k warnpy3k("the Canvas module has been removed in Python 3.0", stacklevel=2) del warnpy3k from Tkinter import Canvas, _cnfmerge, _flatten class CanvasItem: def __init__(self, canvas, itemType, *args, **kw): self.canvas = canvas self.id = canvas._create(itemType, args, kw) if not hasattr(canvas, 'items'): canvas.items = {} canvas.items[self.id] = self def __str__(self): return str(self.id) def __repr__(self): return '<%s, id=%d>' % (self.__class__.__name__, self.id) def delete(self): del self.canvas.items[self.id] self.canvas.delete(self.id) def __getitem__(self, key): v = self.canvas.tk.split(self.canvas.tk.call( self.canvas._w, 'itemconfigure', self.id, '-' + key)) return v[4] cget = __getitem__ def __setitem__(self, key, value): self.canvas.itemconfig(self.id, {key: value}) def keys(self): if not hasattr(self, '_keys'): self._keys = map(lambda x, tk=self.canvas.tk: tk.splitlist(x)[0][1:], self.canvas.tk.splitlist( self.canvas._do( 'itemconfigure', (self.id,)))) return self._keys def has_key(self, key): return key in self.keys() def __contains__(self, key): return key in self.keys() def addtag(self, tag, option='withtag'): self.canvas.addtag(tag, option, self.id) def bbox(self): x1, y1, x2, y2 = self.canvas.bbox(self.id) return (x1, y1), (x2, y2) def bind(self, sequence=None, command=None, add=None): return self.canvas.tag_bind(self.id, sequence, command, add) def unbind(self, sequence, funcid=None): self.canvas.tag_unbind(self.id, sequence, funcid) def config(self, cnf={}, **kw): return self.canvas.itemconfig(self.id, _cnfmerge((cnf, kw))) def coords(self, pts = ()): flat = () for x, y in pts: flat = flat + (x, y) return self.canvas.coords(self.id, *flat) def dchars(self, first, last=None): self.canvas.dchars(self.id, first, last) def dtag(self, ttd): self.canvas.dtag(self.id, ttd) def focus(self): self.canvas.focus(self.id) def gettags(self): return self.canvas.gettags(self.id) def icursor(self, index): self.canvas.icursor(self.id, index) def index(self, index): return self.canvas.index(self.id, index) def insert(self, beforethis, string): self.canvas.insert(self.id, beforethis, string) def lower(self, belowthis=None): self.canvas.tag_lower(self.id, belowthis) def move(self, xamount, yamount): self.canvas.move(self.id, xamount, yamount) def tkraise(self, abovethis=None): self.canvas.tag_raise(self.id, abovethis) raise_ = tkraise # BW compat def scale(self, xorigin, yorigin, xscale, yscale): self.canvas.scale(self.id, xorigin, yorigin, xscale, yscale) def type(self): return self.canvas.type(self.id) class Arc(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'arc', *args, **kw) class Bitmap(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'bitmap', *args, **kw) class ImageItem(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'image', *args, **kw) class Line(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'line', *args, **kw) class Oval(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'oval', *args, **kw) class Polygon(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'polygon', *args, **kw) class Rectangle(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'rectangle', *args, **kw) # XXX "Text" is taken by the Text widget... class CanvasText(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'text', *args, **kw) class Window(CanvasItem): def __init__(self, canvas, *args, **kw): CanvasItem.__init__(self, canvas, 'window', *args, **kw) class Group: def __init__(self, canvas, tag=None): if not tag: tag = 'Group%d' % id(self) self.tag = self.id = tag self.canvas = canvas self.canvas.dtag(self.tag) def str(self): return self.tag __str__ = str def _do(self, cmd, *args): return self.canvas._do(cmd, (self.tag,) + _flatten(args)) def addtag_above(self, tagOrId): self._do('addtag', 'above', tagOrId) def addtag_all(self): self._do('addtag', 'all') def addtag_below(self, tagOrId): self._do('addtag', 'below', tagOrId) def addtag_closest(self, x, y, halo=None, start=None): self._do('addtag', 'closest', x, y, halo, start) def addtag_enclosed(self, x1, y1, x2, y2): self._do('addtag', 'enclosed', x1, y1, x2, y2) def addtag_overlapping(self, x1, y1, x2, y2): self._do('addtag', 'overlapping', x1, y1, x2, y2) def addtag_withtag(self, tagOrId): self._do('addtag', 'withtag', tagOrId) def bbox(self): return self.canvas._getints(self._do('bbox')) def bind(self, sequence=None, command=None, add=None): return self.canvas.tag_bind(self.id, sequence, command, add) def unbind(self, sequence, funcid=None): self.canvas.tag_unbind(self.id, sequence, funcid) def coords(self, *pts): return self._do('coords', pts) def dchars(self, first, last=None): self._do('dchars', first, last) def delete(self): self._do('delete') def dtag(self, tagToDelete=None): self._do('dtag', tagToDelete) def focus(self): self._do('focus') def gettags(self): return self.canvas.tk.splitlist(self._do('gettags', self.tag)) def icursor(self, index): return self._do('icursor', index) def index(self, index): return self.canvas.tk.getint(self._do('index', index)) def insert(self, beforeThis, string): self._do('insert', beforeThis, string) def config(self, cnf={}, **kw): return self.canvas.itemconfigure(self.tag, _cnfmerge((cnf,kw))) def lower(self, belowThis=None): self._do('lower', belowThis) def move(self, xAmount, yAmount): self._do('move', xAmount, yAmount) def tkraise(self, aboveThis=None): self._do('raise', aboveThis) lift = tkraise def scale(self, xOrigin, yOrigin, xScale, yScale): self._do('scale', xOrigin, yOrigin, xScale, yScale) def select_adjust(self, index): self.canvas._do('select', ('adjust', self.tag, index)) def select_from(self, index): self.canvas._do('select', ('from', self.tag, index)) def select_to(self, index): self.canvas._do('select', ('to', self.tag, index)) def type(self): return self._do('type')
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
test
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
Canvas.py
text/x-python
7.29 KB
-rw-r--r--
2024-04-10 04:58:34
Canvas.pyc
application/octet-stream
15.2 KB
-rw-r--r--
2024-04-10 04:58:44
Canvas.pyo
application/octet-stream
15.2 KB
-rw-r--r--
2024-04-10 04:58:44
Dialog.py
text/x-python
1.53 KB
-rw-r--r--
2024-04-10 04:58:34
Dialog.pyc
application/octet-stream
1.88 KB
-rw-r--r--
2024-04-10 04:58:44
Dialog.pyo
application/octet-stream
1.88 KB
-rw-r--r--
2024-04-10 04:58:44
FileDialog.py
text/x-python
8.62 KB
-rw-r--r--
2024-04-10 04:58:34
FileDialog.pyc
application/octet-stream
9.49 KB
-rw-r--r--
2024-04-10 04:58:44
FileDialog.pyo
application/octet-stream
9.49 KB
-rw-r--r--
2024-04-10 04:58:44
FixTk.py
text/x-python
2.95 KB
-rw-r--r--
2024-04-10 04:58:34
FixTk.pyc
application/octet-stream
2.04 KB
-rw-r--r--
2024-04-10 04:58:44
FixTk.pyo
application/octet-stream
1.98 KB
-rw-r--r--
2024-04-10 04:58:42
ScrolledText.py
text/x-python
1.79 KB
-rw-r--r--
2024-04-10 04:58:34
ScrolledText.pyc
application/octet-stream
2.6 KB
-rw-r--r--
2024-04-10 04:58:44
ScrolledText.pyo
application/octet-stream
2.6 KB
-rw-r--r--
2024-04-10 04:58:44
SimpleDialog.py
text/x-python
3.64 KB
-rw-r--r--
2024-04-10 04:58:34
SimpleDialog.pyc
application/octet-stream
4.24 KB
-rw-r--r--
2024-04-10 04:58:44
SimpleDialog.pyo
application/octet-stream
4.24 KB
-rw-r--r--
2024-04-10 04:58:44
Tix.py
text/x-python
75.41 KB
-rw-r--r--
2024-04-10 04:58:34
Tix.pyc
application/octet-stream
93.84 KB
-rw-r--r--
2024-04-10 04:58:44
Tix.pyo
application/octet-stream
93.84 KB
-rw-r--r--
2024-04-10 04:58:44
Tkconstants.py
text/plain
1.46 KB
-rw-r--r--
2024-04-10 04:58:34
Tkconstants.pyc
application/octet-stream
2.19 KB
-rw-r--r--
2024-04-10 04:58:44
Tkconstants.pyo
application/octet-stream
2.19 KB
-rw-r--r--
2024-04-10 04:58:44
Tkdnd.py
text/plain
11.22 KB
-rw-r--r--
2024-04-10 04:58:34
Tkdnd.pyc
application/octet-stream
12.52 KB
-rw-r--r--
2024-04-10 04:58:44
Tkdnd.pyo
application/octet-stream
12.52 KB
-rw-r--r--
2024-04-10 04:58:44
Tkinter.py
text/x-python
156.85 KB
-rw-r--r--
2024-04-10 04:58:34
Tkinter.pyc
application/octet-stream
195.5 KB
-rw-r--r--
2024-04-10 04:58:44
Tkinter.pyo
application/octet-stream
195.5 KB
-rw-r--r--
2024-04-10 04:58:44
tkColorChooser.py
text/x-python
1.74 KB
-rw-r--r--
2024-04-10 04:58:34
tkColorChooser.pyc
application/octet-stream
1.39 KB
-rw-r--r--
2024-04-10 04:58:44
tkColorChooser.pyo
application/octet-stream
1.39 KB
-rw-r--r--
2024-04-10 04:58:44
tkCommonDialog.py
text/x-python
1.38 KB
-rw-r--r--
2024-04-10 04:58:34
tkCommonDialog.pyc
application/octet-stream
1.48 KB
-rw-r--r--
2024-04-10 04:58:44
tkCommonDialog.pyo
application/octet-stream
1.48 KB
-rw-r--r--
2024-04-10 04:58:44
tkFileDialog.py
text/x-python
5.59 KB
-rw-r--r--
2024-04-10 04:58:34
tkFileDialog.pyc
application/octet-stream
5.04 KB
-rw-r--r--
2024-04-10 04:58:44
tkFileDialog.pyo
application/octet-stream
5.04 KB
-rw-r--r--
2024-04-10 04:58:44
tkFont.py
text/x-python
6.02 KB
-rw-r--r--
2024-04-10 04:58:34
tkFont.pyc
application/octet-stream
7 KB
-rw-r--r--
2024-04-10 04:58:44
tkFont.pyo
application/octet-stream
7 KB
-rw-r--r--
2024-04-10 04:58:44
tkMessageBox.py
text/x-python
3.6 KB
-rw-r--r--
2024-04-10 04:58:34
tkMessageBox.pyc
application/octet-stream
3.8 KB
-rw-r--r--
2024-04-10 04:58:44
tkMessageBox.pyo
application/octet-stream
3.8 KB
-rw-r--r--
2024-04-10 04:58:44
tkSimpleDialog.py
text/x-python
7.54 KB
-rw-r--r--
2024-04-10 04:58:34
tkSimpleDialog.pyc
application/octet-stream
8.9 KB
-rw-r--r--
2024-04-10 04:58:44
tkSimpleDialog.pyo
application/octet-stream
8.9 KB
-rw-r--r--
2024-04-10 04:58:44
ttk.py
text/x-python
54.86 KB
-rw-r--r--
2024-04-10 04:58:34
ttk.pyc
application/octet-stream
61.16 KB
-rw-r--r--
2024-04-10 04:58:44
ttk.pyo
application/octet-stream
61.16 KB
-rw-r--r--
2024-04-10 04:58:44
turtle.py
text/x-python
135.78 KB
-rw-r--r--
2024-04-10 04:58:34
turtle.pyc
application/octet-stream
136.31 KB
-rw-r--r--
2024-04-10 04:58:44
turtle.pyo
application/octet-stream
136.31 KB
-rw-r--r--
2024-04-10 04:58:44
~ ACUPOFTEA - mail.ontime-ae.com