Trees | Indices | Help |
|
---|
|
1 #-*- coding: utf8 -* 2 # 3 # Max E. Kuznecov ~syhpoon <syhpoon@syhpoon.name> 2008 4 # 5 # This file is part of XYZCommander. 6 # XYZCommander is free software: you can redistribute it and/or modify 7 # it under the terms of the GNU Lesser Public License as published by 8 # the Free Software Foundation, either version 3 of the License, or 9 # (at your option) any later version. 10 # XYZCommander is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU Lesser Public License for more details. 14 # You should have received a copy of the GNU Lesser Public License 15 # along with XYZCommander. If not, see <http://www.gnu.org/licenses/>. 1618 """ 19 Regular file type 20 """ 21 22 str_type = u"-" 23 vtype = u" " 24 27 28 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2932 33 #++++++++++++++++++++++++++++++++++++++++++++++++ 3431 return self.__str__()36 """ 37 Block device type 38 """ 39 40 str_type = u"b" 41 vtype = u"+" 42 43 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 44 47 48 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4952 53 #++++++++++++++++++++++++++++++++++++++++++++++++ 5451 return self.__str__()56 """ 57 Character device type 58 """ 59 60 str_type = u"c" 61 vtype = u"-" 62 63 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 64 67 68 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 6972 73 #++++++++++++++++++++++++++++++++++++++++++++++++ 7471 return self.__str__()76 """ 77 Directory type 78 """ 79 80 str_type = u"d" 81 vtype = u"/" 82 83 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 84 87 88 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 8992 93 #++++++++++++++++++++++++++++++++++++++++++++++++ 9491 return self.__str__()96 """ 97 Symbolic link type 98 """ 99 100 str_type = u"l" 101 vtype = u"@" 102 103 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 104 107 108 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 109112 113 #++++++++++++++++++++++++++++++++++++++++++++++++ 114111 return self.__str__()116 """ 117 FIFO type 118 """ 119 120 str_type = u"p" 121 vtype = u"|" 122 123 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 124 127 128 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 129132 133 #++++++++++++++++++++++++++++++++++++++++++++++++ 134 152 153 #++++++++++++++++++++++++++++++++++++++++++++++++ 154 171131 return self.__str__()
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Aug 3 02:02:15 2009 | http://epydoc.sourceforge.net |