Mercurial > traipse_dev
annotate upmana/mercurial/osutil.py @ 236:9230a33defd9 beta
Traipse Beta 'OpenRPG' {100616-00}
Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user.
Update Summary (Closing/Closed)
New Features:
New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order
New to Server GUI, can now clear log
Updates:
Update to Warhammer PC Sheet. Rollers set as macros. Should work with little maintanence.
Update to Browser Server window. Display rooms with ' " & cleaner
Update to Server. Handles ' " & cleaner.
Fixes:
Fix to InterParse that was causing an Infernal Loop with Namespace Internal
Fix to XML data, removed old Minidom and switched to Element Tree
Fix to Server that was causing eternal attempt to find a Server ID, in Register Rooms thread
Fix to metaservers.xml file not being created
Fix to Single and Double quotes in Whiteboard text
Fix to Background images not showing when using the Image Server
Fix to Duplicate chat names appearing
Fix to Server GUI's logging output
Fix to FNB.COLORFUL_TABS bug.
author | sirebral |
---|---|
date | Wed, 16 Jun 2010 03:06:20 -0500 |
parents | dcf4fbe09b70 |
children |
rev | line source |
---|---|
135 | 1 # osutil.py - pure Python version of osutil.c |
2 # | |
3 # Copyright 2009 Matt Mackall <mpm@selenic.com> and others | |
4 # | |
5 # This software may be used and distributed according to the terms of the | |
6 # GNU General Public License version 2, incorporated herein by reference. | |
7 | |
8 import os | |
9 import stat as _stat | |
10 | |
11 posixfile = file | |
12 | |
13 def _mode_to_kind(mode): | |
14 if _stat.S_ISREG(mode): return _stat.S_IFREG | |
15 if _stat.S_ISDIR(mode): return _stat.S_IFDIR | |
16 if _stat.S_ISLNK(mode): return _stat.S_IFLNK | |
17 if _stat.S_ISBLK(mode): return _stat.S_IFBLK | |
18 if _stat.S_ISCHR(mode): return _stat.S_IFCHR | |
19 if _stat.S_ISFIFO(mode): return _stat.S_IFIFO | |
20 if _stat.S_ISSOCK(mode): return _stat.S_IFSOCK | |
21 return mode | |
22 | |
23 def listdir(path, stat=False, skip=None): | |
24 '''listdir(path, stat=False) -> list_of_tuples | |
25 | |
26 Return a sorted list containing information about the entries | |
27 in the directory. | |
28 | |
29 If stat is True, each element is a 3-tuple: | |
30 | |
31 (name, type, stat object) | |
32 | |
33 Otherwise, each element is a 2-tuple: | |
34 | |
35 (name, type) | |
36 ''' | |
37 result = [] | |
38 prefix = path | |
39 if not prefix.endswith(os.sep): | |
40 prefix += os.sep | |
41 names = os.listdir(path) | |
42 names.sort() | |
43 for fn in names: | |
44 st = os.lstat(prefix + fn) | |
45 if fn == skip and _stat.S_ISDIR(st.st_mode): | |
46 return [] | |
47 if stat: | |
48 result.append((fn, _mode_to_kind(st.st_mode), st)) | |
49 else: | |
50 result.append((fn, _mode_to_kind(st.st_mode))) | |
51 return result | |
52 |