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/>. 16 17 from libxyz.core.utils import ustring 1820 """ 21 VFS type parent class 22 """ 23 26 27 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2831 32 #++++++++++++++++++++++++++++++++++++++++++++++++ 33 44 45 #++++++++++++++++++++++++++++++++++++++++++++++++ 4630 return self.__str__()48 """ 49 Block device type 50 """ 51 52 str_type = "b" 53 vtype = "+" 54 55 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5659 60 #++++++++++++++++++++++++++++++++++++++++++++++++ 6163 """ 64 Character device type 65 """ 66 67 str_type = "c" 68 vtype = "-" 69 70 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 7174 75 #++++++++++++++++++++++++++++++++++++++++++++++++ 7678 """ 79 Directory type 80 """ 81 82 str_type = "d" 83 vtype = "/" 84 85 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 8689 90 #++++++++++++++++++++++++++++++++++++++++++++++++ 9193 """ 94 Symbolic link type 95 """ 96 97 str_type = "l" 98 vtype = "@" 99 100 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 101104 105 #++++++++++++++++++++++++++++++++++++++++++++++++ 106108 """ 109 FIFO type 110 """ 111 112 str_type = "p" 113 vtype = "|" 114 115 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 116119 120 #++++++++++++++++++++++++++++++++++++++++++++++++ 121 134 135 #++++++++++++++++++++++++++++++++++++++++++++++++ 136 148
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Sep 16 01:51:59 2010 | http://epydoc.sourceforge.net |