Update of /cvsroot/quickrip/quickrip
In directory sc8-pr-cvs1:/tmp/cvs-serv4341
Modified Files:
base.py config.py
Log Message:
Set date to 7 Aug 2003... :-P
Very minor (aesthetical?) changes to base.py
Index: base.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/base.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** base.py 7 Aug 2003 02:00:28 -0000 1.6
--- base.py 7 Aug 2003 02:16:49 -0000 1.7
***************
*** 234,243 ****
alang = re_alang.search(line).group(1)
alang_full = config.langs[alang]
! if alang != "xx":
alangs.append([alang, alang_full])
if re_slang.search(line):
slang = re_slang.search(line).group(1)
slang_full = config.langs[slang]
! if slang != "xx":
slangs.append([slang, slang_full])
if re_chap.search(line):
--- 234,243 ----
alang = re_alang.search(line).group(1)
alang_full = config.langs[alang]
! if alang is not "xx":
alangs.append([alang, alang_full])
if re_slang.search(line):
slang = re_slang.search(line).group(1)
slang_full = config.langs[slang]
! if slang is not "xx":
slangs.append([slang, slang_full])
if re_chap.search(line):
***************
*** 304,316 ****
self.torip = []
for title in self.titles:
! if title['rip'] == 'yes':
self.torip.append(title)
self.numrips = len(self.torip)
# Check PDA mode (universal to all ripping methods)
! if int(self.config['pdamode']) is 0:
! resolution = "720"
! else:
resolution = "320"
i = 0
--- 304,316 ----
self.torip = []
for title in self.titles:
! if title['rip'] is 'yes':
self.torip.append(title)
self.numrips = len(self.torip)
# Check PDA mode (universal to all ripping methods)
! if int(self.config['pdamode']) is 1:
resolution = "320"
+ else:
+ resolution = "720"
i = 0
Index: config.py
===================================================================
RCS file: /cvsroot/quickrip/quickrip/config.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** config.py 6 Aug 2003 01:36:05 -0000 1.12
--- config.py 7 Aug 2003 02:16:49 -0000 1.13
***************
*** 15,19 ****
author = "Tom Chance <tom...@gm...>"
version = "0.9-cvs"
! date = "2003-08-05"
copyright = "(C) 2003 Tom Chance"
license = "GNU General Public License (GPL) (see LICENSE file)"
--- 15,19 ----
author = "Tom Chance <tom...@gm...>"
version = "0.9-cvs"
! date = "2003-08-07"
copyright = "(C) 2003 Tom Chance"
license = "GNU General Public License (GPL) (see LICENSE file)"
***************
*** 53,55 ****
"vo": "Volapuk", "wo": "Wolof", "xh": "Xhosa", "yi": "Yiddish", "yo": "Yoruba", "za": "Zhuang", \
"zh": "Chinese", "zu": "Zulu" \
! }
\ No newline at end of file
--- 53,55 ----
"vo": "Volapuk", "wo": "Wolof", "xh": "Xhosa", "yi": "Yiddish", "yo": "Yoruba", "za": "Zhuang", \
"zh": "Chinese", "zu": "Zulu" \
! }
|