View Single Post
Old 07-29-2011, 11:26 PM   #2
forceps
Enthusiast
forceps doesn't litterforceps doesn't litter
 
Posts: 26
Karma: 168
Join Date: May 2005
Location: Wuhan, China
Device: Kindle DXG
Solved.

nytimes needs https, however, calibre currently ignore https proxy setting. After modified /src/calibre/__init__.py, the nytimes recipe works again.

----------------------------------------------------------------------------
https_proxy = get_proxies().get('https', None)
if https_proxy:
opener.set_proxies({'https':http_proxy})
if http_proxy and https_proxy:
opener.set_proxies({'https':http_proxy, 'http':http_proxy})
----------------------------------------------------------------------------
forceps is offline   Reply With Quote