10-02-2010, 11:53 PM | #16 |
US Navy, Retired
Posts: 9,867
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
|
I'm confused by your response above. The Connect to Folder option is meant to be used as a device. So you should be sending the books to the connected folder via Send to Device.
Connect to a folder via the Connect/Share icon. Last edited by DoctorOhh; 10-02-2010 at 11:55 PM. |
10-03-2010, 12:20 AM | #17 |
Wizard
Posts: 4,812
Karma: 26912940
Join Date: Apr 2010
Device: sony PRS-T1 and T3, Kobo Mini and Aura HD, Tablet
|
Sorry Walt
I thought I was clear that the plugboard didn't work with connect to device I have tried that multiple times I can connect to a folder and send the book to the folder/device but the series information is not added. The manual says it does not work with connect to device or save to disk, but implies that it uses the save to disk function to do it and the save to disk and folder device are both listed in the drop down menu under plugboards I am pretty new to kindle-ing so am probably making this more difficult than it has to be. Probably I can use save to disk template and start a new library for her or send a bunch at a time to the kindle and copy them back to computer. I want her to have a good selection but not have them all on the kindle at once as this will overwhelm her and she will be scared to use it. Anyway thanks for the input Helen |
Advert | |
|
10-03-2010, 12:23 AM | #18 | |
US Navy, Retired
Posts: 9,867
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
|
Quote:
If I didn't use a Sony I would have been more on the ball. Good Luck. |
|
10-03-2010, 12:30 AM | #19 | |
Wizard
Posts: 4,812
Karma: 26912940
Join Date: Apr 2010
Device: sony PRS-T1 and T3, Kobo Mini and Aura HD, Tablet
|
Quote:
|
|
10-03-2010, 02:27 AM | #20 |
Grand Sorcerer
Posts: 9,707
Karma: 32763414
Join Date: Dec 2008
Location: Krewerd
Device: Pocketbook Inkpad 4 Color; Samsung Galaxy Tab S6
|
|
Advert | |
|
10-03-2010, 03:39 AM | #21 | ||
Grand Sorcerer
Posts: 12,018
Karma: 7257323
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
plugboards work fine with books saved via save-to-disk and to the folder device. At least they do for me. Quote:
Templates and plugboards are used for different things. If you want series information in the title of the book *in the book*, use a plugboard. If you want series information *in the file name*, use a template. If you want the same information in both places, consider creating a composite custom column then using that column in both places. |
||
10-03-2010, 06:00 AM | #22 |
Wizard
Posts: 4,812
Karma: 26912940
Join Date: Apr 2010
Device: sony PRS-T1 and T3, Kobo Mini and Aura HD, Tablet
|
Alrighty.
Now I am really confused Self inflicted confusion is the worst kind. I had forgotten I had changed the kindle plugin template. Thanks |
10-04-2010, 12:14 AM | #23 |
Zealot
Posts: 106
Karma: 501816
Join Date: Jan 2010
Location: Australia
Device: K3, K4, KPW
|
Just checking again.
Can anybody tell me how to get the author name to display as Initial and Surname, in either order, on my K3 using Plugboards? Brewjono. |
10-04-2010, 03:55 AM | #24 | |
Grand Sorcerer
Posts: 12,018
Karma: 7257323
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
1) I assume that your authors are in FN LN order (FirstName LastName), and that your author_sort values are LN, FN order. If not, then don't read on. 2) uncheck 'use author sort' in the mobi output plugin. 3) create a plugboard mobi/kindle2. Destination is authors. The source box contains Code:
{author_sort:re((\, )(.).*?( &|$),\1\2\3)} Edit 2: for you regexp hackers, a note of explanation. As you will notice, the first group enclosing the comma space isn't necessary from a regexp point of view. It it there to work around a bug on 0.7.22 where backslashes aren't stripped from escaped commas in the replacement string. By using it, I don't need to put a comma into the replacement. Last edited by chaley; 10-04-2010 at 04:30 AM. |
|
10-04-2010, 04:45 AM | #25 |
Zealot
Posts: 106
Karma: 501816
Join Date: Jan 2010
Location: Australia
Device: K3, K4, KPW
|
|
10-04-2010, 05:03 AM | #26 | ||
Grand Sorcerer
Posts: 12,018
Karma: 7257323
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
Quote:
As of 0.7.22, try using the 'switch' function. Documentation is: Code:
switch(pattern, value, pattern, value, ..., else_value) – for each pattern, value pair, checks if the field matches the pattern and if so, returns that value. If no pattern matches, then else_value is returned. You can have as many pattern, value pairs as you want. Code:
{title:switch(^[a-dA-D],[A-D],^[e-jE-J],[E-J],^[k-qK-Q],[K_Q],^[r-zR-Z],[R-Z],[Other])} |
||
10-04-2010, 05:09 AM | #27 |
Wizard
Posts: 3,130
Karma: 91256
Join Date: Feb 2008
Location: Germany
Device: Cybook Gen3
|
|
10-04-2010, 05:14 AM | #28 |
Grand Sorcerer
Posts: 12,018
Karma: 7257323
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
The template functions 'contains', 'switch', and 're' use regexps. After all, templates manipulate text, and when manipulating text, regexps are the best there is.
|
10-04-2010, 05:23 AM | #29 |
Wizard
Posts: 3,130
Karma: 91256
Join Date: Feb 2008
Location: Germany
Device: Cybook Gen3
|
Without wanting to derail this thread: I've seen that again yesterday while parsing file names. What normally would have been a painful exercise in C/C++ was as easy as just matching a regexp to the names in Python. (I didn't work out, but the filename parsing wasn't to blame.)
|
10-04-2010, 08:25 AM | #30 | ||
Grand Sorcerer
Posts: 9,707
Karma: 32763414
Join Date: Dec 2008
Location: Krewerd
Device: Pocketbook Inkpad 4 Color; Samsung Galaxy Tab S6
|
Quote:
Karma is underway as this does make it a lot easier Quote:
Code:
{author_sort:switch(^[A-D],[A - D],^[E-J],[E - J],^[K-O],[K - O],^[P-T],[P - T],^[U-Z],[U - Z],[Other])} |
||
Tags |
custom column, tag, tags |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
custom column i need a little help | shinken | Calibre | 3 | 09-15-2010 03:41 AM |
Using Custom Metadata in Save Template | EJvdH | Calibre | 1 | 07-02-2010 06:06 AM |
Accessories Decalgirl Kindle 2 custom skin template | srmalloy | Amazon Kindle | 6 | 04-09-2010 09:55 PM |
Donations for Custom Recipes | ddavtian | Calibre | 5 | 01-23-2010 04:54 PM |
Help understanding custom recipes | andersent | Calibre | 0 | 12-17-2009 02:37 PM |