Changeset 38996
- Timestamp:
- 09/24/16 19:03:25 (7 years ago)
- Location:
- titan/mediathek/localhoster
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/mediathek/localhoster/hoster.sh
r38985 r38996 67 67 } 68 68 69 flashx() 70 { 71 python $CMD/flashx.py $INPUT 72 } 73 74 openload() 75 { 76 python $CMD/openload.py $INPUT 77 } 78 69 79 if [ "$TYPE" == "get" ];then 70 80 case $hoster in … … 74 84 nosvideo) nosvideo $INPUT;; 75 85 allmyvideos) allmyvideos $INPUT;; 86 flashx) flashx $INPUT;; 87 openload) openload $INPUT;; 76 88 esac 77 89 fi -
titan/mediathek/localhoster/lib/aa_decoder.py
r38962 r38996 8 8 # Modified by Shani 9 9 import re 10 from urlresolver import common10 #from urlresolver import common 11 11 12 12 … … 188 188 result = re.search(pattern, self.encoded_str, re.DOTALL) 189 189 if result is None: 190 common.log_utils.log_debug("AADecoder: data not found")190 # common.log_utils.log_debug("AADecoder: data not found") 191 191 return False 192 192 … … 202 202 # Check new char 203 203 if data.find(begin_char) != 0: 204 common.log_utils.log_debug("AADecoder: data not found")204 # common.log_utils.log_debug("AADecoder: data not found") 205 205 return False 206 206 … … 229 229 230 230 if str_char == "": 231 common.log_utils.log_debug("no match : ")232 common.log_utils.log_debug(data + "\nout = " + out + "\n")231 # common.log_utils.log_debug("no match : ") 232 # common.log_utils.log_debug(data + "\nout = " + out + "\n") 233 233 return False 234 234 # print 'sofar', str_char, radix,out … … 238 238 239 239 if out == "": 240 common.log_utils.log_debug("no match : " + data)240 # common.log_utils.log_debug("no match : " + data) 241 241 return False 242 242
Note: See TracChangeset
for help on using the changeset viewer.