|
|
#976 | |
|
Occassional Beta Tester
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 121
Karma: 1162
Join Date: Nov 2010
Location: Hungary
Device: Samsung Galaxy Tab
|
Quote:
|
|
|
|
|
|
|
#977 |
|
Occassional Beta Tester
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 121
Karma: 1162
Join Date: Nov 2010
Location: Hungary
Device: Samsung Galaxy Tab
|
Jimm,
where can I find info about making FFDL only download specific chapters and not the whole story? |
|
|
|
|
Enthusiast
|
|
|
|
#978 |
|
Occassional Beta Tester
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 121
Karma: 1162
Join Date: Nov 2010
Location: Hungary
Device: Samsung Galaxy Tab
|
Opps forgot to ask. Is there a way to make this kind of download permanent, so I don't have to remember to edit the download every time there is an update?
|
|
|
|
|
|
#979 | ||
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
Quote:
http://www.fictionalley.org/authors/bexis/HPATFE.html[1,5] (Currently, that only works for new or overwrite, not update.) Quote:
For that particular story only, no. But that's why I fixed it. ![]() Jim |
||
|
|
|
|
|
#980 |
|
Occassional Beta Tester
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 121
Karma: 1162
Join Date: Nov 2010
Location: Hungary
Device: Samsung Galaxy Tab
|
How do I make it everything above a particular chapter number? I need all the chapters starting with ch 51.
|
|
|
|
|
|
#981 |
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
If you want a book containing only chapters 51 and up, use:
http://whatever.the.url.is/story[51,] However, be aware that you will not be able to use the update feature if you have a partial book that doesn't start with chapter 1. Epub update uses the chapter count to determine when and what to update. |
|
|
|
|
|
#982 |
|
Member
![]() Posts: 22
Karma: 10
Join Date: Mar 2010
Device: iPhone 3GS, Galaxy SII, Asus Transformer, Nexus 7
|
Hi Jim,
I have an efiction site that I would like to be considered for inclusion in your plugin. I need to update the version of efic and reskin etc (plus moving to a new host) and then it should be ready. It's pretty vanilla (installation-wise - no custom bits) but is there anything I can do in the upgrade that would make your life easier? Sue |
|
|
|
|
|
#983 |
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
Hi Sue,
What would help the most would be to clearly identify the chapter text and each piece of metadata in the HTML, and to put all the story metadata on the story index page. (We frequently have to parse the author's page, too, to get all the metadata.) Lengthy examples: Spoiler:
When categories/genres/warnings/whatever are already links to a particular category, they're easy to pick out. But it's frequently a pain to pick out the individual bits of metadata with just the human readable labels. Jim |
|
|
|
|
|
#984 |
|
Member
![]() Posts: 22
Karma: 10
Join Date: Mar 2010
Device: iPhone 3GS, Galaxy SII, Asus Transformer, Nexus 7
|
Actually, Jim, that looks like it'd make better page code too! Excellent, I'm glad I asked before I start the new skin etc (I'm going to try for a responsive design as well).
Cool! I'll give you a shout when I've got it happening. Thanks! |
|
|
|
|
|
#985 |
|
Zealot
![]() Posts: 115
Karma: 22
Join Date: Sep 2011
Device: Acer Iconia 500w Tablet, PRS-T1
|
I've been working on adding metadata replacements to the stories I gather and it's been working great. However, after the last batch of stories had 17 fandoms and 34 characters, I wondered if I would be able to sort the characters into a hierarchical list using the replace metadata feature.
I know that I can now change the character based on which category (or fandom) it is in. Is it possible to use a more general statement? For example: characters=>(any character)=>category.(any character) I do have the line: characters=>\.=> which deletes any periods in the character name. However, I'm not sure how to make it add the category (or fandom) at the beginning of the character. |
|
|
|
|
|
#986 |
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
I don't use hierarchical lists, so I don't know what that's about.
However, if you simply want "category." prepended to all the characters, use: characters=>(.+)=>category.\1 The replacements are applied in order, so to use both, put the '.' remover first: replace_metadata: characters=>\.=> characters=>(.+)=>category.\1 |
|
|
|
|
|
#987 | ||
|
Zealot
![]() Posts: 115
Karma: 22
Join Date: Sep 2011
Device: Acer Iconia 500w Tablet, PRS-T1
|
Quote:
Example: Spoiler:
Quote:
I was hoping to find a way to change every character to fandom(the fandom the character comes from).character without having to input all the characters (including the ones I didn't have to change before, like Bumblebee). Similar to how I can change a character based on fandom. Code:
characters=>Sam W=>Sam Witwicky&&category=>Transformers Thinking about it, I'm not sure it can be done without replacing every character metadata individually. |
||
|
|
|
|
|
#988 |
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
You should be able to without a line for every character, but you will need one for every fandom you want separate:
Code:
replace_metadata: characters=>(.+)=>Character.Transformers.\1&&category=>Transformers characters=>(.+)=>Character.Buffy.\1&&category=>Buffy |
|
|
|
|
|
#989 | |
|
Zealot
![]() Posts: 115
Karma: 22
Join Date: Sep 2011
Device: Acer Iconia 500w Tablet, PRS-T1
|
Quote:
Instead of getting "Transformers.Bumblebee, Buffy.Xander Harris", I get "Buffy.Bumblebee, Buffy.Xander Harris". Is it possible to set a list of character names to choose what prepend to attach? For example: Code:
characters=>(.+)=>Buffy.\1&&characters=>(Buffy or Xander or Spike)&&category=>Buffy |
|
|
|
|
|
|
#990 |
|
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 824
Karma: 300102
Join Date: Dec 2011
Location: Midwest USA
Device: Nook STR w/Glowlight, Kindle 3g, Droid
|
characters=>(Buffy|Xander|Spike)=>Buffy.\1&&catego ry=>Buffy
If you're going to get that complicated, at some point you're going to have to learn regular expressions: http://www.regular-expressions.info/ When 'flavor' matters, it's Python. |
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [GUI Plugin] Count Pages | kiwidude | Plugins | 521 | 05-09-2013 10:52 AM |
| [GUI Plugin] Find Duplicates | kiwidude | Plugins | 403 | 05-06-2013 03:37 AM |
| [GUI Plugin] Open With | kiwidude | Plugins | 183 | 04-22-2013 02:25 PM |
| [GUI Plugin] Resize Cover | kiwidude | Plugins | 26 | 01-04-2013 12:18 AM |
| [GUI Plugin] Plugin Updater **Deprecated** | kiwidude | Plugins | 159 | 06-19-2011 12:27 PM |