This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** localecompiler.py.orig 2011-08-12 11:43:31.000000000 +0900 | |
--- localecompiler.py 2011-08-12 11:44:00.000000000 +0900 | |
*************** | |
*** 72,77 **** | |
--- 72,79 ---- | |
pass | |
value = self.getText(node.childNodes) | |
# TODO: translate any more symbols? | |
+ value = re.sub(r'%(\d+)\$d', r'%\1$.0f', value) | |
+ value = re.sub(r'%(\d+)\$s', r'%\1$@', value) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
playerurl=http://radiko.jp/apps/js/flash/myplayer-release.swf | |
cookiefile=./cookie.txt | |
playerfile=./player.swf | |
keyfile=./authkey.png | |
if [ $# -eq 1 ]; then | |
channel=$1 | |
output=./$1.flv |
NewerOlder