Compare commits

...
3 changed files with 32 additions and 21 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# ffd-retief-hrd fanfictiondownloader
application: fanfictiondownloader
version: 2-1-6
version: 2-1-7
runtime: python27
api_version: 1
threadsafe: true
@@ -269,12 +269,12 @@ class FanFictionNetSiteAdapter(BaseSiteAdapter):
if get_cover:
# Try the larger image first.
try:
img = soup.find('img',{'class':'lazy cimage'})
self.setCoverImage(url,img['data-original'])
img = soup.select('img.lazy.cimage')
self.setCoverImage(url,img[0]['data-original'])
except:
img = soup.find('img',{'class':'cimage'})
img = soup.select('img.cimage')
if img:
self.setCoverImage(url,img['src'])
self.setCoverImage(url,img[0]['src'])
# Find the chapter selector
select = soup.find('select', { 'name' : 'chapter' } )
+27 -16
View File
@@ -46,6 +46,33 @@
{{yourfile}}
<!-- </div> -->
<h3>Important Notice</h3>
<p>
Google recently decided to
<a href="http://google-opensource.blogspot.com/2015/03/farewell-to-google-code.html">phase out code.google</a>,
which is where FanFictionDownLoader kept it's source code.
</p>
<p>
Since the FanFictionDownLoader project had to move anyway,
this seemed like a good time to also change the name of the
project. (There was occasional confusion with others, like
the similiarly named fanfictiondownloader.net.)
</p>
<p>
The project is now called <b>FanFicFare</b> and
its <a href="https://github.com/JimmXinu/FanFicFare">source
hosted on GitHub</a>.
</p>
<p>
The URL of this web interface is also changed to
<a href="http://fanficfare.appspot.com/">http://fanficfare.appspot.com/</a>.
</p>
<p>
This site will be left up in case there are problems with the
new site, but all future features and fixes will be
on <a href="http://fanficfare.appspot.com/">FanFicFare</a>.
</p>
{% if authorized %}
<form action="/fdown" method="post">
<div id='urlbox'>
@@ -54,22 +81,6 @@
much easier. </p>
</div>
<h3>Changes:</h3>
<ul>
<li>Add devianthearts.com as a Base eFiction site.</li>
<li>Allow https URLs for fictionmania.tv.</li>
<li>Allow storiesofarda.com/chapterAllview.asp?SID=999 urls.</li>
</ul>
<p>
Questions? Check out our
<a href="http://code.google.com/p/fanficdownloader/wiki/FanFictionDownloaderFAQs">FAQs</a>.
</p>
<p>
If you have any problems with this application, please
report them in
the <a href="http://groups.google.com/group/fanfic-downloader">FanFictionDownLoader Google Group</a>. The
<a href="http://2-1-04.fanfictiondownloader.appspot.com">Previous Version</a> is also available for you to use if necessary.
</p>
<div id='error'>
{{ error_message }}
</div>