This commit is contained in:
Kovid Goyal 2008-05-02 18:11:16 -07:00
parent 1c7d06e215
commit 3d79e3f2fc
4 changed files with 5 additions and 8 deletions

View File

@ -79,10 +79,10 @@ if __name__ == '__main__':
For installation/usage instructions please see
http://%s.kovidgoyal.net
For source code access: bzr branch lp:%s
For source code access: bzr branch http://bzr.kovidgoyal.net/code/%s/trunk %s
To update your copy of the source code: bzr merge
"""%(APPNAME, APPNAME, APPNAME, APPNAME),
"""%(APPNAME, APPNAME, APPNAME, APPNAME, APPNAME),
license = 'GPL',
classifiers = [
'Development Status :: 4 - Beta',

View File

@ -8,8 +8,6 @@ Define a threaded interface for working with devices.
import threading, Queue
from calibre.devices.device import Device
from calibre.devices.prs500.driver import PRS500
class DeviceManager(object):

View File

@ -9,8 +9,8 @@ from trac.web.main import IRequestHandler
from trac.util import Markup
__appname__ = 'libprs500'
DOWNLOAD_DIR = '/var/www/vhosts/kovidgoyal.net/subdomains/libprs500/httpdocs/downloads'
__appname__ = 'calibre'
DOWNLOAD_DIR = '/var/www/calibre.kovidgoyal.net/htdocs/downloads'

View File

@ -90,7 +90,6 @@ def upload_installers():
if dmg and os.path.exists(dmg):
check_call('''scp %s divok:%s/'''%(dmg, DOWNLOADS))
check_call('''ssh divok chmod a+r %s/\*'''%(DOWNLOADS,))
check_call('''ssh divok /root/bin/update-installer-links %s %s'''%(exe, dmg))
def upload_docs():
check_call('''epydoc --config epydoc.conf''')