|  03-26-2021, 02:50 PM | #5716 | |
| Enthusiast  Posts: 45 Karma: 10 Join Date: Jan 2021 Device: Kindle Paperwhite 4 | Quote: 
 | |
|   |   | 
|  03-27-2021, 02:38 PM | #5717 | 
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | 
			
			Did I make a mistake here? I got a calibre metadata error for this. Code: custom_columns_settings: ## Fanfic subscriptions "N"=>#fanficsubbed,n "Y"=>#fanficsubbed&&seriesUrl=>https://archiveofourown\.org/series/1937545 | 
|   |   | 
|  03-27-2021, 03:30 PM | #5718 | 
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | 
			
			Also, if it's of any use, here are two templates that extract story IDs and converts them into custom AO3/FFNet identifiers unless status is set to anthology. You'll need something like Action Chains to use it. Code: program:
	publisher = field('publisher');
	ids = field('identifiers');
	status = field('#fanficstatus');
	u = select(ids, 'url');
	if publisher == 'Archive of Our Own' && u && status != 'Anthology' then
		n = re(u, '^https://archiveofourown.org/works/(\d+)$', '\1');
		ids = list_union(ids, strcat('ao3:', n), ',')
	fi;
	idsCode: program:
	publisher = field('publisher');
	ids = field('identifiers');
	status = field('#fanficstatus');
	u = select(ids, 'url');
	if publisher == 'FanFiction.net' && u && status != 'Anthology' then
		n = re(u, '^https://www.fanfiction.net/s/(\d+)/(\d+)/.*', '\1');
		ids = list_union(ids, strcat('ffnet:', n), ',')
	fi;
	idsLast edited by ownedbycats; 03-27-2021 at 04:22 PM. | 
|   |   | 
|  03-27-2021, 06:44 PM | #5719 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Why? What's wrong with using storyId if you want the... story ID? | |
|   |   | 
|  03-27-2021, 06:54 PM | #5720 | ||
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | Quote: 
  Is there a feasible way to fudge this with a replace_metadata, seeing as it's an arbitrary value not derived from metadata? Quote: 
 I think I asked about it before and it'd be difficult to automate with FFF, though I may not have been too clear on what I meant. | ||
|   |   | 
|  03-27-2021, 07:50 PM | #5721 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 For what purpose? The URL identifier is already a clickable link. | |
|   |   | 
|  03-27-2021, 08:13 PM | #5722 | |
| Custom User Title            Posts: 11,347 Karma: 79528341 Join Date: Oct 2018 Location: Canada Device: Kobo Libra H2O, formerly Aura HD | Quote: 
 Last edited by ownedbycats; 03-27-2021 at 09:26 PM. | |
|   |   | 
|  03-28-2021, 06:13 AM | #5723 | 
| Enthusiast  Posts: 30 Karma: 10 Join Date: Sep 2020 Device: PC | 
				
				Error Literotica
			 
			
			Download Status at Literotica (all stories) Error xxx yyy Couldn't find story <https://german.literotica.com/s/xxx> on author's page <https://www.literotica.com/stories/memberpage.php?uid=99999999&page=submissions> https://german.literotica.com/s/xxx | 
|   |   | 
|  03-28-2021, 11:50 AM | #5724 | 
| Enthusiast  Posts: 38 Karma: 10 Join Date: Sep 2013 Device: Kindle Paperwhite, Kindle Keyboard | 
			
			I keep getting the following error: Error Sanctuary CyborgSquirrel HTTP Error in FFF '403 Client Error: Forbidden for url: https://harrypotterfanfiction.com/vi...icted'(403) https://harrypotterfanfiction.com/vi...hp?psid=341370 Error Harry Potter and the Order of the Phoenix - AU Rewrite killthatrat HTTP Error in FFF '403 Client Error: Forbidden for url: https://harrypotterfanfiction.com/vi...icted'(403) https://harrypotterfanfiction.com/vi...hp?psid=341403 Error In The Safety Of Magical World flyflyhighup HTTP Error in FFF '403 Client Error: Forbidden for url: https://harrypotterfanfiction.com/vi...icted'(403) https://harrypotterfanfiction.com/vi...hp?psid=342524 I have my login information stored in the plugin (and it never pops up asking for it) so what am I missing? TIA! | 
|   |   | 
|  03-28-2021, 06:21 PM | #5725 | ||
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 Quote: 
 A short sleep: Code: [harrypotterfanfiction.com] slow_down_sleep_time:1 | ||
|   |   | 
|  03-28-2021, 06:25 PM | #5726 | 
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | 
			
			New Test Version Posted 2020-03-28 - Get storyId for sugarquillnet and siyecouk from the parsed query string. From mcepl - Fix for adapter_literotica changing URLs on author page yet again. - Add [harrypotterfanfiction.com] slow_down_sleep_time:1 -- Site blocking fast downloads. | 
|   |   | 
|  03-28-2021, 07:10 PM | #5727 | 
| Enthusiast  Posts: 30 Karma: 10 Join Date: Sep 2020 Device: PC | 
			
			It works for Literotica now. Many Thanks | 
|   |   | 
|  03-28-2021, 09:34 PM | #5728 | |
| Enthusiast  Posts: 38 Karma: 10 Join Date: Sep 2013 Device: Kindle Paperwhite, Kindle Keyboard | Quote: 
 | |
|   |   | 
|  03-29-2021, 09:45 AM | #5729 | 
| Junior Member  Posts: 3 Karma: 10 Join Date: Mar 2021 Device: Kindle P4 | 
			
			I'm having trouble with a piece of my coding, it used to work, I'm sure, or else I'm going mad. If ships contains a platonic relationship such as 'Fili & Kili' I want to split this into just the characters 'Fili, Kili'. So I have ships=>(.*) (amp;|&) (.*)=>\1\,\2 I've tried this in add_to_replace_metadata and in replace metadata and it still pulls through as 'Fili & Kili'. Last edited by MimiRose113; 03-29-2021 at 09:48 AM. | 
|   |   | 
|  03-29-2021, 01:32 PM | #5730 | |
| Plugin Developer            Posts: 7,125 Karma: 5005503 Join Date: Dec 2011 Location: Midwest USA Device: Kobo Clara Colour running KOReader | Quote: 
 FYI, if you search the thread for ships2chars, that's a very similar thing that's been done before. Here's one version I found: Code: add_to_extra_valid_entries:,ships2chars include_in_ships2chars:ships.NOREPL # NOREPL prevents any ships patterns from being applied to ships2chars. add_to_replace_metadata: ships2chars=>[ ]*/[ ]*=>/ ships2chars=>[ ]*&[ ]*=>/ ships2chars=>([^/]+)/([^/]+)/([^/]+)/(.+)=>\1\,\2\,\3\,\4 ships2chars=>([^/]+)/([^/]+)/(.+)=>\1\,\2\,\3 ships2chars=>([^/]+)/(.+)=>\1\,\2 include_in_characters:characters,ships2chars | |
|   |   | 
|  | 
| Tags | 
| fanfiction | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| [GUI Plugin] KindleUnpack - The Plugin | DiapDealer | Plugins | 527 | 08-15-2025 01:36 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 |