View Single Post
Old 01-10-2021, 04:42 PM   #5163
Jager956
Member
Jager956 began at the beginning.
 
Posts: 12
Karma: 10
Join Date: Jun 2020
Device: Kindle PW3
Quote:
Originally Posted by Jager956 View Post
Yeah ... upon further testing I see my flaw

I tried to trick parser to do following
- put series data into custom column #myseries
- put rating data into series (with your recommendation include_in_series)
- display series data in standard series column

This of course works if story has universe and not series, as I can store universe data into custom column #myseries.
But if story has Series data, I can not get that information into #myseries, because I already overwrite that information upon fetching with rating.
Well, I found a solution suitable for me... Perhaps anyone else will need it.
a) added rating into series
include_in_series:series,rating
b) created another variable and copied series data add_to_extra_valid_entries:,solseries
include_in_solseries:series
c) Split both variables by comma
solseries_LIST=>([^,]+),(.+)=>\1
series_LIST=>([^,]+),(.+)=>\2

Now I have to find different stories with possible variables (inUniverse, inSeries, solo) to test if this works in any condition.
Jager956 is offline   Reply With Quote