コード例 #1
0
ファイル: dataheap.py プロジェクト: drosenthal7757/mythtv
 def open(self, type='r'):
     """Recorded.open(type='r') -> file or FileTransfer object"""
     return ftopen("myth://%s@%s/%s" % ( self.storagegroup,
                                         self.hostname,
                                         self.basename),
                   type, db=self._db,
                   chanid=self.chanid, starttime=self.starttime)
コード例 #2
0
ファイル: dataheap.py プロジェクト: drosenthal7757/mythtv
 def __call__(self, mode='r', nooverwrite=False):
     if self.inst.host == '':
         raise MythFileError('File access only works '
                             'with Storage Group content')
     return ftopen('myth://%s@%s/%s' % ( self.sgroup,
                                         self.inst.host,
                                         self.inst[self.type]),
                             mode, False, nooverwrite, self.inst._db)
コード例 #3
0
 def __call__(self, mode='r', nooverwrite=False):
     if self.inst.host == '':
         raise MythFileError('File access only works '
                             'with Storage Group content')
     return ftopen(
         'myth://%s@%s/%s' %
         (self.sgroup, self.inst.host, self.inst[self.type]), mode,
         False, nooverwrite, self.inst._db)
コード例 #4
0
 def open(self, type='r'):
     """Recorded.open(type='r') -> file or FileTransfer object"""
     return ftopen("myth://%s@%s/%s" %
                   (self.storagegroup, self.hostname, self.basename),
                   type,
                   db=self._db,
                   chanid=self.chanid,
                   starttime=self.starttime)
コード例 #5
0
ファイル: dataheap.py プロジェクト: jmartens/mythtv
 def __call__(self, mode="r", nooverwrite=False):
     if self.inst.host == "":
         raise MythFileError("File access only works " "with Storage Group content")
     return ftopen(
         "myth://%s@%s/%s" % (self.sgroup, self.inst.host, self.inst[self.type]),
         mode,
         False,
         nooverwrite,
         self.inst._db,
     )
コード例 #6
0
ファイル: dataheap.py プロジェクト: camdbug/mythtv
 def open(self, mode='r', nooverwrite=False):
     return ftopen('myth://Videos@{0.host}/{0.filename}'.format(self),
                 mode, False, nooverwrite, self._db)
コード例 #7
0
ファイル: dataheap.py プロジェクト: camdbug/mythtv
 def open(self, mode='r'):
     return ftopen('myth://{0.imagetype}@{0.hostname}/{0}'.format(self), mode)