Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Plugins

Notices

Reply
 
Thread Tools Search this Thread
Old 01-28-2017, 09:06 PM   #1786
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by Lovetwifics View Post
I hope I am posting this right, I apologize if I am not. I have questions if anyone can answer, I was told there was an email option with FanFicFare and calibre, where it would take all my emailed updates and update them, and this would stop me from having to copy and paste all of the story URL's one at a time. Is there somewhere that will walk me thru this process. Thanks for any help.
Here's an FAQ on it.

Quote:
Originally Posted by wildfire142 View Post
Thanks.

I tried asking about it in the Threadmark Reader announcement thread, but have had no reply. As it stands, I'll be turning reader mode for SB off by default in the next version.
JimmXinu is offline   Reply With Quote
Old 01-29-2017, 07:39 AM   #1787
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
Hi!

I have a question about excluding certain pictures from becoming the cover image.
I'm trying to download this story here on AO3. I get a little icon (I think it's the rss-feed icon, see attachment) as the cover. My problem is that I don't see an rss icon (or any icon) on this website. Could you tell me how to get the name of the icon from the website?

I have the following line in my personal.ini
Code:
cover_exclusion_regexp:(userinfo\.gif|user\.png|88x31\.png|favicon\.ico)
Edit: This is the only story for now where this problem has occurred.
Attached Images
 

Last edited by firefoxxy; 01-29-2017 at 07:40 AM. Reason: additional info
firefoxxy is offline   Reply With Quote
Old 01-29-2017, 10:26 AM   #1788
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by firefoxxy View Post
Hi!

I have a question about excluding certain pictures from becoming the cover image.
I'm trying to download this story here on AO3. I get a little icon (I think it's the rss-feed icon, see attachment) as the cover. My problem is that I don't see an rss icon (or any icon) on this website. Could you tell me how to get the name of the icon from the website?

I have the following line in my personal.ini
Code:
cover_exclusion_regexp:(userinfo\.gif|user\.png|88x31\.png|favicon\.ico)
Edit: This is the only story for now where this problem has occurred.
The author included that in the story notes. About all there is to do is add it to your cover_exclusion_regexp:

Code:
cover_exclusion_regexp:(userinfo\.gif|user\.png|88x31\.png|favicon\.ico|lj-syndicated\.gif)
JimmXinu is offline   Reply With Quote
Old 01-30-2017, 07:53 PM   #1789
Atherton25
Zealot
Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.Atherton25 can teach chickens to fly.
 
Posts: 124
Karma: 3804
Join Date: May 2016
Device: Kindle Oasis 2
http://royalroadl.com/fiction/10015
... gives me an error. "got more than 100 headers" it's erroring out on
http://royalroadl.com/fiction/chapter/113946 ... its probably some shitty html that's causing it, and it's going and trying to grab comments. Anyway to fix this?
Atherton25 is offline   Reply With Quote
Old 01-30-2017, 08:16 PM   #1790
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by Atherton25 View Post
http://royalroadl.com/fiction/10015
... gives me an error. "got more than 100 headers" it's erroring out on
http://royalroadl.com/fiction/chapter/113946 ... its probably some shitty html that's causing it, and it's going and trying to grab comments. Anyway to fix this?
royalroadl.com seems to give apparently random numbers of SAMEORIGIN in a X-Frame-Options: header. And if it gives too many, Python's HTTP header parsing breaks. I think.

In theory, you could change the FFF code to adjust the value of httplib._MAXHEADERS. But in practice, I don't want to do that in the plugin release code because it would change it for all of the running calibre process.

If you put this in personal.ini, FFF will continue on without that particular chapter. That's the best answer I have for you right now.
Code:
[royalroadl.com]
continue_on_chapter_error:true
JimmXinu is offline   Reply With Quote
Old 01-30-2017, 08:23 PM   #1791
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
New test version posted (direct link)


This is an additional caching feature for base_xenforoforum to improve performance in some cases as well as a work-around for the SB Reader Mode issue previously discussed.

2017-01-30
- base_xenforoforum: Add more caching and page lookahead in reader mode.
- Update translations
- Bump test version
JimmXinu is offline   Reply With Quote
Old 01-31-2017, 04:14 AM   #1792
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
Quote:
Originally Posted by JimmXinu View Post
The author included that in the story notes.
Thank you, Jimm. I really don't see this icon (maybe an add-on in my browser that supresses the social sites buttons hides this one, too). So your help was especially appreciated!
:
firefoxxy is offline   Reply With Quote
Old 01-31-2017, 08:34 AM   #1793
ThatLibraryRat
Member
ThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enoughThatLibraryRat will become famous soon enough
 
Posts: 24
Karma: 718
Join Date: Dec 2014
Device: Bookeen Frontlite Muse
Spacebattle:
https://forums.spacebattles.com/thre...#post-21107015 work (and take all the chapters)
https://forums.spacebattles.com/thre...-cross.379348/ doesn't work

I'm not sure why but you asked for data and if I can help you who do wonderful work...
Thank a lot for the app!
ThatLibraryRat is offline   Reply With Quote
Old 01-31-2017, 10:51 AM   #1794
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by ThatLibraryRat View Post
Spacebattle:
https://forums.spacebattles.com/thre...#post-21107015 work (and take all the chapters)
https://forums.spacebattles.com/thre...-cross.379348/ doesn't work

I'm not sure why but you asked for data and if I can help you who do wonderful work...
Thank a lot for the app!
Try the latest test version. There's been issues with SB's new reader mode.
JimmXinu is offline   Reply With Quote
Old 01-31-2017, 04:14 PM   #1795
Mashkai
Junior Member
Mashkai began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Aug 2014
Device: none
Error?

I am assuming this is because I tried with a website that is not compatible? Though, I could be wrong.

calibre, version 2.78.0
ERROR: Unhandled exception: <b>TypeError</b>bject of type 'NoneType' has no len()

calibre 2.78 embedded-python: True is64bit: False
Windows-8-6.2.9200 Windows ('32bit', 'WindowsPE')
32bit process running on 64bit windows
('Windows', '8', '6.2.9200')
Python 2.7.9
Windows: ('8', '6.2.9200', '', 'Multiprocessor Free')
Successfully initialized third party plugins: Extract ISBN (1, 4, 4) && FanFicFare (2, 8, 0) && Fantastic Fiction Adults (1, 0, 4) && Goodreads Sync (1, 10, 1) && Reading List (1, 6, 6) && Quality Check (1, 9, 11) && FictionDB (1, 0, 10) && Count Pages (1, 7, 0) && Goodreads (1, 1, 12) && Clean Metadata (0, 0, 6) && Modify ePub (1, 3, 13) && Generate Cover (1, 5, 21) && EpubMerge (2, 1, 0) && Manage Series (1, 2, 8) && Find Duplicates (1, 6, 2) && EpubSplit (2, 2, 0) && Author Book Count (2, 1, 4)
Traceback (most recent call last):
File "calibre_plugins.fanficfare_plugin.fff_plugin" , line 548, in get_urls_from_page_menu
File "calibre_plugins.fanficfare_plugin.fff_plugin" , line 568, in get_urls_from_page
File "calibre_plugins.fanficfare_plugin.fanficfare.getu rls", line 43, in get_urls_from_page
File "calibre_plugins.fanficfare_plugin.fanficfare.adap ters.__init__", line 223, in getAdapter
File "calibre_plugins.fanficfare_plugin.fanficfare.adap ters.__init__", line 298, in _get_class_for
TypeError: object of type 'NoneType' has no len()
Mashkai is offline   Reply With Quote
Old 01-31-2017, 04:37 PM   #1796
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by Mashkai View Post
I am assuming this is because I tried with a website that is not compatible? Though, I could be wrong.
What was the story URL you entered?
JimmXinu is offline   Reply With Quote
Old 02-01-2017, 01:13 AM   #1797
slantybard
my parent's oops...
slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.
 
Posts: 492
Karma: 1477572
Join Date: Feb 2009
Device: Vx->Handera->Clie-> Axim->505->650->KPW/Aura ->L2->iOS/CBW
I am getting the following errors now when trying to use FFF with hp.adult-fanfiction.org:

'NoneType' object has no attribute 'findAll'

I tried updating to the latest version of calibre and have also tried both official FFF plug-in 2.8 as well as the latest FFF test bump posted 2.87. I suspect it's a problem with a change in the adult-ff website.
slantybard is offline   Reply With Quote
Old 02-01-2017, 10:41 AM   #1798
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,990
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
New test version posted (direct link)

2017-02-01
- Fix for adapter_adultfanfictionorg for site change.
- Update translations
- Bump test version

Quote:
Originally Posted by slantybard View Post
I am getting the following errors now when trying to use FFF with hp.adult-fanfiction.org:

'NoneType' object has no attribute 'findAll'

I tried updating to the latest version of calibre and have also tried both official FFF plug-in 2.8 as well as the latest FFF test bump posted 2.87. I suspect it's a problem with a change in the adult-ff website.
JimmXinu is offline   Reply With Quote
Old 02-01-2017, 06:23 PM   #1799
slantybard
my parent's oops...
slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.slantybard ought to be getting tired of karma fortunes by now.
 
Posts: 492
Karma: 1477572
Join Date: Feb 2009
Device: Vx->Handera->Clie-> Axim->505->650->KPW/Aura ->L2->iOS/CBW
Quote:
Originally Posted by JimmXinu View Post
New test version posted (direct link)

2017-02-01
- Fix for adapter_adultfanfictionorg for site change.
- Update translations
- Bump test version
Thanks so much. AFF is now working with FFF.

slantybard is offline   Reply With Quote
Old 02-03-2017, 12:36 AM   #1800
readerboy7
Enthusiast
readerboy7 began at the beginning.
 
Posts: 45
Karma: 10
Join Date: Dec 2014
Device: Kindle Paperwhite
When I download stories on spacebattles, I found that the date/time given in 'updated' is in a date/time differing from the actual date/time the fic was updated. Upon further checking, I found that the date/time was technically correct, but it was correct in regards to the wrong timezone. It gives the data in regards to UTC-5 (I think), while I want it in accordance to my timezone, UTC+12 (not including an extra +1 for current DST).
Is there a way to have the times given for my clock instead of the website's?
Note: FFnet does not seem to have this problem. I don't know about other sites unfortunately, since FFnet and SB are the only sites I download from with any regularity.
readerboy7 is offline   Reply With Quote
Reply

Tags
fanfiction


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[GUI Plugin] KindleUnpack - The Plugin DiapDealer Plugins 523 07-15-2025 06:45 PM
[GUI Plugin] Open With kiwidude Plugins 404 02-21-2025 05:42 AM
[GUI Plugin] Marvin XD Philantrop Plugins 126 01-29-2017 12:48 PM
[GUI Plugin] KiNotes -axel- Plugins 0 07-14-2013 06:39 PM
[GUI Plugin] Plugin Updater **Deprecated** kiwidude Plugins 159 06-19-2011 12:27 PM


All times are GMT -4. The time now is 12:33 PM.


MobileRead.com is a privately owned, operated and funded community.