#! /usr/bin/env python
import os
s = os.system
def create_table_of_contents():
s('egrep "
/tmp/table.html')
s('''sed -i 's/name=./href="writing-games.html#/g' /tmp/table.html''')
fp = file('table.html', 'w')
fp.write('''\
''')
fp.close()
s('cat /tmp/table.html >> ./table.html')
def create_targz_from_example(name):
targen = ('git checkout %(name)s; '
'cp -a code_examples %(name)s; '
'tar -cv --exclude-vcs %(name)s > %(name)s.tar; '
'rm -rf /tmp/%(name)s; '
'mv %(name)s /tmp/%(name)s; '
'gzip %(name)s.tar; '
)
s(targen % {'name': name})
create_table_of_contents()
create_targz_from_example('example2')
create_targz_from_example('example3')
create_targz_from_example('example4')
print 'Setting git branch to *master*'
s('git checkout master')
# always append a '/' on the src directory when rsyncing
s('rsync -r ./ $DREAMHOST_USERNAME@ezide.com:/home/$DREAMHOST_USERNAME/ezide.com/games')