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-06-2016, 09:45 AM   #901
Tanjamuse
Wizard
Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!Tanjamuse , Klaatu Barada Niktu!
 
Posts: 1,327
Karma: 5306
Join Date: Jan 2014
Device: none
I have the following in my personal.ini that separates the ships by & which I've done on purpose.

Code:
join_string_ships:\s&\s
I couldn't see if you had something like that in your personal.ini
Tanjamuse is offline   Reply With Quote
Old 01-06-2016, 09:52 AM   #902
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
No, that's nothing I have in there, Tanja. I do not join strings - the ships are already there. Either seperated by a '/' or a ' & '.

I begin to think that it would be easier if I just would leave the characters in the ships as 'Fist-name Last-name'. But I did want to have 'First-name' only. (I ran into other problems with Japanese names which have the pattern 'Last-name First-name'; so I ended up with things like 'Uchiha/Uchiha' instead of 'Fugaku/Mikoto' - but that's another issue.)
firefoxxy is offline   Reply With Quote
Advert
Old 01-06-2016, 12:44 PM   #903
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,981
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by firefoxxy View Post
First of all thank you for this plug-in! I have a question and hope this is the right place to ask.
It would be more proper to ask in the FanFicFare thread because you're asking about FanFicFare setting, not Generate Cover.

Assuming that you have the generate_cover_settings in a section that applies, that ships contains "Naruto/Sasuke" and you have a GC setting named NaruSasu, I believe what you showed should work.

Code:
generate_cover_settings:
 ${ships}=>Naruto/Sasuke=>NaruSasu
The generate_cover_settings cannot look in custom columns, so that's never going to work.
JimmXinu is offline   Reply With Quote
Old 01-06-2016, 12:50 PM   #904
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,981
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by firefoxxy View Post
It's me again. I have (again) trouble with metadata when downloading a story. The peronal.ini is set to change the ship 'Harry Potter & and Severus Snape' to 'Harry & Severus' when downloading a story from AO3.
You have a line to match ^Harry Potter & Severus Snape$, but not 'Harry Potter & and Severus Snape'.

(Assuming that's not a typo. Yet another reason it's always a good idea to include example story URLs.)
JimmXinu is offline   Reply With Quote
Old 01-06-2016, 04:17 PM   #905
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
Hi Jim

Sorry .

First the replace_metadata - yes, it was a typo. The stories all had "Harry Potter & Severus Snape", and after downloading and replacing metadata there was no ship at all.
Here's the story link that did not work: link

The generate cover setting: I have tried the setting you mentioned, and it worked! Thank you!
firefoxxy is offline   Reply With Quote
Advert
Old 01-06-2016, 06:50 PM   #906
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,981
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by firefoxxy View Post
First the replace_metadata - yes, it was a typo. The stories all had "Harry Potter & Severus Snape", and after downloading and replacing metadata there was no ship at all.
Here's the story link that did not work: link
By commenting out each ships line that could effect it, I determined it's the line:
Code:
 ships=>(?:^|(?<=/))([^ ,:]+)[^/]*(?=/|$)=>\1
Looking at it for a bit (and experimenting with it longer), I think this expression is intended to generically strip each part of a ships entry down to first name only. (When using complex regexp, it's a good idea to put a comment nearby explaining what they do. For all their power regexp are not terribly readable.)

But it doesn't work with &amp; separated ships, or with ' / ' (note the spaces) separated ships. Nor does it play nicely with sort_ships:true.

Instead, use:
Code:
replace_metadata:
## strip each ships char down to first name only.
 ships_CHARS=>^([^ ]+).*$=>\1
That way you can remove a lot of the ships lines you have.

But only after getting the new test version, because along the way with figuring this out I found that ships_CHARS and sort_ships_splits didn't work together correctly. So:

New test version (direct link)

2016-01-06

- Fix so ships_CHARS and sort_ships_splits work together. Also add default sort_ships_splits that includes &amp; separated ships.
JimmXinu is offline   Reply With Quote
Old 01-07-2016, 01:47 PM   #907
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
Dear Jim

Thank you so much!

I installed the new version, commented all ship-replacements out, and tried it with these stories:
story 1 story 2 story 3 story 4

Story 1 is the "Harry Potter & Severus Snape" from earlier which now changed into "Harry & Severus" as it should. Story 2 has a tag "Loki/ Tony Stark" (with a space) which was changed to "Loki/Tony". Story 3 has a threesome slash pairing: "Uchiha Itachi/Uchiha Sasuke/Uzumaki Naruto" came (predictably) out as "Uchiha/Uchiha/Uzumaki", story 4 is a threesome '&' pairing - so it handles even 'more'somes.

Everything works fine for me. Thank you so much for looking into this and the time you have taken for helping me out!
firefoxxy is offline   Reply With Quote
Old 01-07-2016, 02:04 PM   #908
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,981
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by firefoxxy View Post
Everything works fine for me. Thank you so much for looking into this and the time you have taken for helping me out!
Glad it's working for you.

I designed expecting that there would be 'more'somes, but be warned that weird things may happen if you ever run across a story that uses both / and & in the same ship entry. I've never seen one 'in the wild', but AO3 did let me enter it in a test story.

As for family name first names, you can another regexp before the 'first name only' one that instead does 'last name only' for certain family names:

Code:
## second name only for certain family-name-first names:
 ships_CHARS=>^(Uchiha|Uzumaki|Haruno|Hyuuga|Hatake|Namikaze) *([^ ]+)$=>\2
## first names only:
 ships_CHARS=>^([^ ]+).*$=>\1
Note that it won't work if there's more than two names, like "Hyuuga Hinata (Naruto)/Uzumaki Naruto (Naruto)" won't work.
JimmXinu is offline   Reply With Quote
Old 01-07-2016, 02:27 PM   #909
firefoxxy
Zealot
firefoxxy began at the beginning.
 
Posts: 105
Karma: 10
Join Date: Nov 2012
Location: Germany
Device: Kobo Libra 2
o_O wow, thanks Jim!

I just tested and it works (of course). Thank you so much. I was just looking at the FAQ and wiki pages to try and find a solution. But this is so much smoother than anything I could have brought together...
And I know that AO3 is sometimes a little painful to try and contol, so I am already used to polish the metadata by hand - no problem. But you really made my life with FFF much better.
firefoxxy is offline   Reply With Quote
Old 01-08-2016, 09:15 AM   #910
justkiddingornot
Junior Member
justkiddingornot began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Jan 2016
Device: none
Quote:
Originally Posted by JimmXinu View Post
I'll look into it again. Can you provide links to a few stories that are on fictionhunt.com that aren't on ffnet?
Example: Kara's Aunty _ Not Quite A Maia
Fictionhunt: http://fictionhunt.com/read/4838629/53

Former FF.net (googling still yields this link, though the story has been deleted): https://www.fanfiction.net/s/4838629/1/Not-Quite-A-Maia

The story is also available elsewhere (http://www.fictionalley.org/authors/...unty/NQAM.html) though not complete, only 23 Chapters there. Only FH has all 53 chapters that were written.
justkiddingornot is offline   Reply With Quote
Old 01-08-2016, 10:35 AM   #911
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,981
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by justkiddingornot View Post
Example: Kara's Aunty _ Not Quite A Maia
Fictionhunt: http://fictionhunt.com/read/4838629/53

Former FF.net (googling still yields this link, though the story has been deleted): https://www.fanfiction.net/s/4838629/1/Not-Quite-A-Maia

The story is also available elsewhere (http://www.fictionalley.org/authors/...unty/NQAM.html) though not complete, only 23 Chapters there. Only FH has all 53 chapters that were written.
That's one example. And it's not a very good one since the metadata says 54 chapters while fictionhunt.com only appears to have 53 chapters.

Then the story at the top of the front page when I looked says "Story has been removed. Please, check original page on FF.net - it might be available there." That argues against the idea of fictionhunt.com being a place to get deleted stories from.

If somebody else wants to write the code for it, I'll happily accept an adapter for fictionhunt.com. But I'm not interested in spending time on it myself.
JimmXinu is offline   Reply With Quote
Old 01-10-2016, 06:29 PM   #912
wolfhoodie
Junior Member
wolfhoodie began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Jan 2016
Device: laptop
hi

hello sorry to bother you but i'm having trouble with fanficfare. i've been using it for a while now on the same site. i can't download from quotev. i've updated it's just not working please help!!
wolfhoodie is offline   Reply With Quote
Old 01-10-2016, 10:40 PM   #913
readerboy7
Enthusiast
readerboy7 began at the beginning.
 
Posts: 45
Karma: 10
Join Date: Dec 2014
Device: Kindle Paperwhite
Is it possible to get a list of URLs of all the books I've downloaded with FFF? It's a bit inconvenient to backup my whole library in multiple locations due to file size, but it'd be much easier to just backup the URLs to dropbox or other places, incase my computer and backup fail simultaneously agian.
Thanks.

Last edited by readerboy7; 01-10-2016 at 10:44 PM.
readerboy7 is offline   Reply With Quote
Old 01-11-2016, 12:02 AM   #914
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,905
Karma: 47303824
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Quote:
Originally Posted by readerboy7 View Post
Is it possible to get a list of URLs of all the books I've downloaded with FFF? It's a bit inconvenient to backup my whole library in multiple locations due to file size, but it'd be much easier to just backup the URLs to dropbox or other places, incase my computer and backup fail simultaneously agian.
You should be able to create a catalog with the information in it. These can be in CSV or book formats. To start it, select the books and right click on the conversion button. You then choose the format and details. Beyond that, you'll have to play or look for help as it's something I know exists but don't use myself.
davidfor is offline   Reply With Quote
Old 01-11-2016, 12:15 AM   #915
Metaxil
Member
Metaxil began at the beginning.
 
Posts: 13
Karma: 10
Join Date: Sep 2011
Device: iphone 4
Quote:
Originally Posted by readerboy7 View Post
Is it possible to get a list of URLs of all the books I've downloaded with FFF? It's a bit inconvenient to backup my whole library in multiple locations due to file size, but it'd be much easier to just backup the URLs to dropbox or other places, incase my computer and backup fail simultaneously agian.
Thanks.
There is, in fact an option to do just that. What david said is valid, but if all you're looking for is a list? There's a dead simple way to do it. Highlight all your fanfiction, select the dropdown arrow next to the fanficfare logo, and 2/3 the way down is an option "get story url from selected books" this will grab every book there, and I can tell you from experience it will select 15k urls. It may just take a few minutes.

At that point, copy and paste the information into a text file, or whatever your chosen format.
Metaxil 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 10:23 PM.


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