I don't suppose there's anyway you guys would consider mirroring on github? --
You received this message because you are subscribed to the Google Groups "cherrypy-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cherrypy-user...@googlegroups.com.
To post to this group, send email to cherryp...@googlegroups.com.
Visit this group at http://groups.google.com/group/cherrypy-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
For what it's worth, I also think this would be awesome. Github has a really nice interface for browsing code, and git itself is more ubiquitous than mercurial.
Given the following static file configurations
Both the zip and exe files work but the msi file loads the file as text.
How can I force it to download ?
'/support/Uplink.msi':
{'tools.staticfile.on': True,
'tools.staticfile.filename': '/apps/Uplink.msi',
'tools.staticfile.content_types': {'msi': 'application/octet-stream'}},
'/support/Uplink.zip':
{'tools.staticfile.on': True,
'tools.staticfile.filename': '/apps/Uplink.zip',
'tools.staticfile.content_types': {'zip': 'application/x-download'}},
'/support/Uplink.exe':
{'tools.staticfile.on': True,
'tools.staticfile.filename': '/apps/Uplink.exe',
'tools.staticfile.content_types': {'exe': 'application/x-download'}},
Andy
Can anybody help with this ? I would prefer to serve the msi as a static link rather than as a zip file
--