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 Today, 05:49 PM   #9916
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,517
Karma: 4277237
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by Homer55 View Post
Hi!, I'm encountering some trouble with xenforo and tags.
There's several different things going on here.

First

As given, this is broken:
Code:
[base_xenforoforum]
include_in_category:category,tagsfromtitle,parentf orums
 Category=>genre,tagsfromtitle
skip_threadmarks_categories:Staff Post
order_threadmarks_by_date:true
I'll assume the space in "parentf orums" is an artifact of copy/paste, but "Category=>genre,tagsfromtitle" isn't valid there.

Maybe you wanted something like:
Code:
[base_xenforoforum]
include_in_category:category,tagsfromtitle,parentforums,genre

## or maybe:
add_to_include_in_category:,genre
(For issues the Second thru Fourth)

You posted:
Code:
# section [base_xenforoforum] assumed
add_to_replace_metadata:
 (Harry Potter|Wizarding World)=>HP
 (Metal Gear|Metal Gear Solid)=>Metal Gear
I instead suggest:
Code:
[base_xenforoforum:epub] 
add_to_replace_metadata:
 category=>^(Harry Potter|Wizarding World)$=>HP
 category=>^Metal Gear Solid$=>Metal Gear
Second

add_to_replace_metadata under [base_xenforoforum] in personal.ini replaces add_to_replace_metadata under [base_xenforoforum] in defaults.ini. See wiki page and search for "another non-intuitive complication".

[base_xenforoforum] is unique in FFF's default.ini for having a bunch of processing in add_to_replace_metadata for tagsfromtitle. The alternative was a hard coded processing.

Alternatives include putting your add_to_replace_metadata under [base_xenforoforum:epub], or the individual site sections, or [defaults] in personal.ini.

Third

In the same code sample, you're applying those lines to all metadata entries, such as characters and description. It would be better, IMO, to limit them to the category entries you're trying to fix.

And use ^ and $ to only apply them when it's the whole entry. Otherwise, a few months from now you're left wondering why "Wizarding World War II" is becoming "HP War II" or whatever.

Fourth

(Metal Gear|Metal Gear Solid) matches the string "Metal Gear Solid", replaces the Metal Gear part -- with "Metal Gear" and leaves the " Solid", yielding... "Metal Gear Solid". Just remove that part of the regex. You don't need to replace "Metal Gear" with "Metal Gear" anyway.

I expect your QQ issues come from the add_to_replace_metadata problem.

I removed your NSFW link, BTW. Please use PM when you can't use a SFW link to demonstrate a problem.
JimmXinu is offline   Reply With Quote
Old Today, 06:20 PM   #9917
Homer55
Enthusiast
Homer55 began at the beginning.
 
Posts: 41
Karma: 10
Join Date: Aug 2016
Device: Kindle
Quote:
Originally Posted by JimmXinu View Post
And use ^ and $ to only apply them when it's the whole entry.
does this means that this will apply only when the tag is for example "Wizarding World" but not if the tag is "Wizarding Worlds"?

Also, there's a fic that get's tagged as "Saga Of Tanya The Evil, Tanya the Evil (Sort-of), Tanya the evil" tanya the evil get's repeated three times. something like

Quote:
category=>^ (Saga Of Tanya The Evil|Tanya the Evil \(Sort-of\)|Tanya the evil)$=>Youjo Senki
would be fine? I ask becuase of the multiple tanya's there

Quote:
Originally Posted by JimmXinu View Post
I removed your NSFW link, BTW. Please use PM when you can't use a SFW link to demonstrate a problem.
my bad, the fic is also on SB so I thought it was fine. sorry.

Thanks for your detailed response. I'll try your suggestions

Last edited by Homer55; Today at 06:48 PM.
Homer55 is offline   Reply With Quote
Old Today, 07:49 PM   #9918
Nickname
Junior Member
Nickname began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Sep 2024
Device: Web
Is there a way to add series[0] to existing anthologies in Calibre ?
I found the option to add it to "New Anthologies", but have not figured out what I need to do to make it happen to ones I already have....

Also : is there a way to make an anthology from the CLI, or is it a plugin option only ?
Nickname is offline   Reply With Quote
Old Today, 08:19 PM   #9919
John Maverick
Connoisseur
John Maverick began at the beginning.
 
Posts: 53
Karma: 10
Join Date: Oct 2018
Device: none
Outlook.com will stop accepting basic auth starting from 16/09/2024

I have received this email in my @hotmail.com mail.

Quote:
Update your sign-in technology before September 16th, 2024 to maintain email access.

The safety and security of your information is top priority for Microsoft. To help keep your account secure, Microsoft will no longer support the use of third-party email and calendar apps which ask you to sign in with only your Microsoft Account username and password. To keep you safe you will need to use a mail or calendar app which supports Microsoft's modern authentication methods. If you do not act, your third-party email apps will no longer be able to access your Outlook.com, Hotmail or Live.com email address on September 16th.
Would this affect FFF getting links from emails? I use this email to get notifications of updates of fics I follow.

Can something be done to still getting the fics urls from email?

If not, what email provider can recommend me that will work with FFF auth?

As always,thanks in advance.
John Maverick is offline   Reply With Quote
Old Today, 08:57 PM   #9920
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,517
Karma: 4277237
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Multi-reply

Regex

Quote:
Originally Posted by Homer55 View Post
does this means that this will apply only when the tag is for example "Wizarding World" but not if the tag is "Wizarding Worlds"?
Correct.

Quote:
Originally Posted by Homer55 View Post
Also, there's a fic that get's tagged as "Saga Of Tanya The Evil, Tanya the Evil (Sort-of), Tanya the evil" tanya the evil get's repeated three times. something like

Code:
 category=>^ (Saga Of Tanya The Evil|Tanya the Evil \(Sort-of\)|Tanya the evil)$=>Youjo Senki
would be fine? I ask becuase of the multiple tanya's there
Yes, but you have a space right after ^ that matters in regexp.

You could generalize it to something like:
Code:
 category=>(?i)^.*Tanya The Evil.*$=>Youjo Senki
# (?i) means ignore case and must be at the very start
And it's better to use [code] tags instead of [quote] tags for code sections. I put your code back in--the site discards nested quotes when quoting to reply. FYI.

Series for Anthologies

Quote:
Originally Posted by Nickname View Post
Is there a way to add series[0] to existing anthologies in Calibre ?
I found the option to add it to "New Anthologies", but have not figured out what I need to do to make it happen to ones I already have....
Not with FFF. But because FFF uses the series name for the anthology title, you can copy it to the Series column. This also removes ' Anthology' from it.

A quick search found this old post that explains how. Except you'd want:

Search Mode: Regular Expression
Search Field: title
Search for: (.*) Anthology
Replace with: \1
Destination Field: series

Quote:
Originally Posted by Nickname View Post
Also : is there a way to make an anthology from the CLI, or is it a plugin option only ?
Plugin only. My general assumption is CLI users can use epubmerge.py to merge their own anthologies.

Email

Quote:
Originally Posted by John Maverick View Post
I have received this email in my @hotmail.com mail.
Other people have reported problems using Microsoft / Outlook also.

I've never used it with any service but Gmail. Gmail started requiring 2FA, but gave an option called Google App Passwords for unique-per-app passwords.

One user reported success switching to mail.gmx.com. I know nothing about it.
JimmXinu is offline   Reply With Quote
Old Today, 09:02 PM   #9921
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 9,241
Karma: 63194753
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
If you use Mozilla Thunderbird, it's possible to drag-and-drop the emails into the 'download from URLs' window. (I seem to vaguely recall dragging onto the FFF toolbar button also should work, but it doesn't for me.)
ownedbycats is online now   Reply With Quote
Old Today, 09:13 PM   #9922
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,517
Karma: 4277237
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by ownedbycats View Post
If you use Mozilla Thunderbird, it's possible to drag-and-drop the emails into the 'download from URLs' window. (I seem to vaguely recall dragging onto the FFF toolbar button also should work, but it doesn't for me.)
It works for me intermittently on Win10. Dragging around in circles on the button a couple times will usually get it work. Kovid said it was a Qt issue.
JimmXinu 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 494 05-18-2024 02:34 AM
[GUI Plugin] Open With kiwidude Plugins 403 04-01-2024 08:39 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 11:34 PM.


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