Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Software > Calibre > Library Management

Notices

Reply
 
Thread Tools Search this Thread
Old 06-13-2017, 06:59 AM   #1
hairybiker
Banned
hairybiker began at the beginning.
 
Posts: 82
Karma: 10
Join Date: Aug 2009
Device: Tolino Shine 3
plugboard help

OK in an attempt to sort my to read list, I have added a numeric column in Calibre called order.
I am trying to get my Kindle title changed so it now displays [read #] title
I have tried changing my plug board to this:
{#order:0>2s|[|]}{series}{series_index:0>2s| - | #| – }{title}
from
}{series}{series_index:0>2s| #| – }{title}

But nothing is different saved to my Kindle.

Help please
hairybiker is offline   Reply With Quote
Old 06-13-2017, 09:20 AM   #2
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 29,754
Karma: 54401244
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
plugboard inserts the template values into the destination metadata field. did yo set it?
It could also be that you have simply overflowed the space allocated (on the device). but I don't think that would be your case or you would have mentioned that it was being truncated (something like no title showing)
theducks is offline   Reply With Quote
Advert
Old 06-13-2017, 09:28 AM   #3
hairybiker
Banned
hairybiker began at the beginning.
 
Posts: 82
Karma: 10
Join Date: Aug 2009
Device: Tolino Shine 3
What happened after rebooting my Kindle was I got several files called "Error in plugin data" or similar.
So it looks like my string is wrong.
I was assuming that {#order:0>2s|[|]} would give me [order], or is it the last part | - | #| – that is wrong? Or can I not combine them like this?

With the standard I get the normal "series name - #" which I have reverted to at the moment.
hairybiker is offline   Reply With Quote
Old 06-13-2017, 09:48 AM   #4
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 11,728
Karma: 6690881
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
You cannot have 3 vertical bars in one template expression. What are you trying to do with that?
chaley is offline   Reply With Quote
Old 06-13-2017, 10:19 AM   #5
hairybiker
Banned
hairybiker began at the beginning.
 
Posts: 82
Karma: 10
Join Date: Aug 2009
Device: Tolino Shine 3
I was trying to do the same as for 2, if no order# then no -
hairybiker is offline   Reply With Quote
Advert
Old 06-13-2017, 11:24 AM   #6
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 11,728
Karma: 6690881
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by hairybiker View Post
I was trying to do the same as for 2, if no order# then no -
My apologies, but I don't understand. If there is an order # then where should the - character go? And do you really want to use both a dash and an M-dash? Could you give some examples of what you want, with and without order# and series?

My guess is that you want
Code:
{#order:0>2s|[|] - }{series}{series_index:0>2s| #| – }{title}
but I am not at all sure.
chaley is offline   Reply With Quote
Old 06-13-2017, 11:49 AM   #7
hairybiker
Banned
hairybiker began at the beginning.
 
Posts: 82
Karma: 10
Join Date: Aug 2009
Device: Tolino Shine 3
What I want is simply:
reading order# - series - series # - title
Or (the standard)
series - series # - title
if no reading order

I think your one will do that?
hairybiker is offline   Reply With Quote
Old 06-13-2017, 11:55 AM   #8
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 11,728
Karma: 6690881
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
Quote:
Originally Posted by hairybiker View Post
What I want is simply:
reading order# - series - series # - title
Or (the standard)
series - series # - title
if no reading order

I think your one will do that?
No. In the template I supplied there is no dash between series and series index (and there isn't in your template that works either), reading order is enclosed in [ ], and the two dashes have different sizes (as do the dashes in your template).

This gives you what you described:
Code:
{#order:0>2s|| - }{series}{series_index:0>2s| - | - }{title}
chaley is offline   Reply With Quote
Old 06-13-2017, 12:50 PM   #9
hairybiker
Banned
hairybiker began at the beginning.
 
Posts: 82
Karma: 10
Join Date: Aug 2009
Device: Tolino Shine 3
Thanks will give that a try when I am back on my pc.
hairybiker is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with writing a plugboard gavinjb Library Management 2 11-06-2013 08:15 PM
Plugboard help rkr87 Calibre 1 07-17-2013 12:57 PM
Plugboard only works sometimes Scott Nielsen Library Management 2 12-15-2012 09:26 AM
Plugboard Help! ChrisKaos Library Management 0 04-22-2012 04:18 AM
Metadata Plugboard IxiaAurea Calibre 1 11-05-2011 01:13 PM


All times are GMT -4. The time now is 08:50 AM.


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