| 
			
			 | 
		#5716 | |
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 45 
				Karma: 10 
				Join Date: Jan 2021 
				
				
				
				Device: Kindle Paperwhite 4 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5717 | 
| 
			
			
			
			 Custom User Title 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,359 
				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  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5718 | 
| 
			
			
			
			 Custom User Title 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,359 
				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;
	ids
Code: 
	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;
	ids
Last edited by ownedbycats; 03-27-2021 at 05:22 PM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5719 | |
| 
			
			
			
			 Plugin Developer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 7,136 
				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?  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5720 | ||
| 
			
			
			
			 Custom User Title 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,359 
				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.  | 
||
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5721 | |
| 
			
			
			
			 Plugin Developer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 7,136 
				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.  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5722 | |
| 
			
			
			
			 Custom User Title 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,359 
				Karma: 79528341 
				Join Date: Oct 2018 
				Location: Canada 
				
				
				Device: Kobo Libra H2O, formerly Aura HD 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 Last edited by ownedbycats; 03-27-2021 at 10:26 PM.  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#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  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#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!  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5725 | ||
| 
			
			
			
			 Plugin Developer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 7,136 
				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  | 
||
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5726 | 
| 
			
			
			
			 Plugin Developer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 7,136 
				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.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5727 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 30 
				Karma: 10 
				Join Date: Sep 2020 
				
				
				
				Device: PC 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			It works for Literotica now. 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Many Thanks  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5728 | |
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 38 
				Karma: 10 
				Join Date: Sep 2013 
				
				
				
				Device: Kindle Paperwhite, Kindle Keyboard 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#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 10:48 AM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5730 | |
| 
			
			
			
			 Plugin Developer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 7,136 
				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 | 
| Thread Tools | Search this Thread | 
            
  | 
    
			 
			Similar Threads
		 | 
	||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| [GUI Plugin] KindleUnpack - The Plugin | DiapDealer | Plugins | 527 | 08-15-2025 02:36 PM | 
| [GUI Plugin] Open With | kiwidude | Plugins | 404 | 02-21-2025 06:42 AM | 
| [GUI Plugin] Marvin XD | Philantrop | Plugins | 126 | 01-29-2017 01:48 PM | 
| [GUI Plugin] KiNotes | -axel- | Plugins | 0 | 07-14-2013 07:39 PM | 
| [GUI Plugin] Plugin Updater **Deprecated** | kiwidude | Plugins | 159 | 06-19-2011 01:27 PM |