Mercurial > traipse_dev
annotate upmana/mercurial/osutil.py @ 130:d54e1328dbb1 alpha
Traipse Alpha 'OpenRPG' {091003-02}
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 (Cleaning up for Beta)
Added Bookmarks
Fix to Remote Admin Commands
Minor fix to text based Server
Fix to Pretty Print, from Core
Fix to Splitter Nodes not being created
Fix to massive amounts of images loading, from Core
Added 'boot' command to remote admin
Added confirmation window for sent nodes
Minor changes to allow for portability to an OpenSUSE linux OS
Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG
Zoom Mouse plugin added
Images added to Plugin UI
Switching to Element Tree
Map efficiency, from FlexiRPG
Added Status Bar to Update Manager
default_manifest.xml renamed to default_upmana.xml
Cleaner clode for saved repositories
New TrueDebug Class in orpg_log (See documentation for usage)
Mercurial's hgweb folder is ported to upmana
**Pretty important update that can help remove thousands of dead children from your gametree.
**Children, <forms />, <group_atts />, <horizontal />, <cols />, <rows />, <height />, etc... are all tags now.
Check your gametree and look for dead children!!
Dead Node Children, not that's a
O O
-v-v- Happy Halloween!
author | sirebral |
---|---|
date | Tue, 03 Nov 2009 21:06:03 -0600 |
parents | 496dbf12a6cb |
children |
rev | line source |
---|---|
121 | 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 |