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

Go Back   MobileRead Forums > E-Book Software > Calibre > Plugins

Notices

Closed Thread
 
Thread Tools Search this Thread
Old 09-12-2012, 05:48 PM   #826
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,111
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Quote:
Originally Posted by JimmXinu View Post
No, it's still on the 'wishlist' of things I may do some day. As I recall, I looked into it once and found that it would require restructuring the code more than I wanted tackle that day. Especially as I'd only ever heard from one user asking for it. Now that it's two users, I'll revisit it sometime.
If it'll take too much work, forget about it. I actually happen to like the leading chapter numbers and thought the reason I'm not getting it is because you had implemented the above. Apparently, the reason I'm not seeing them is because the site adapter doesn't parse it.

From adapter_dramioneorg.py, the code for getting the chapter url and chapter titles appear to be as follows:

Code:
        # Find the chapters:
        for chapter in soup.findAll('a', href=re.compile(r'viewstory.php\?sid='+self.story.getMetadata('storyId')+"&chapter=\d+$")):
            # just in case there's tags, like <i> in chapter titles.
            self.chapterUrls.append((stripHTML(chapter),'http://'+self.host+'/'+chapter['href']+addurl))
The actual HTML code looks like this:
Code:
<tr><td>1. <a href="viewstory.php?sid=1331&amp;chapter=1">December 2010: Five Minutes 'til Christmas</a>  <span class="cnotes"><span class="cnotes"><p>My first drabble ever!</p>
<p>Drabbles are supposed to be exactly 100 words long, and often have a prompt word or phrase to use as inspiration. It is a great exercise for new and experienced authors alike.</p>
<p>This particular drabble is rated G, and is quite fluffy, really.</p>
<p>Enjoy!</p>
<p>Prompt: <i>a </i><i>gift</i></p>
</span></span></td><td class="center"><a href="reviews.php?type=ST&amp;item=1331&amp;chapid=4326">1</a> </td><td class="center">90</td><td class="center">412</td></tr>
What changes do I need to make to the adapter code to include the chapter number instead of just getting the title inside the link?

Thanks!
ilovejedd is offline  
Old 09-12-2012, 07:10 PM   #827
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
By having only one 'add_chapter_numbers' option instead of one for TOC and one for in-chapter titles, this is simplified a fair bit.

The attached version has new options:

Code:
## Don't like the numbers at the start of chapter titles on some
## sites?  You can use strip_chapter_numbers to strip them off.  Just
## want to make them all look the same?  Strip them off, then add them
## back on with add_chapter_numbers.  Don't like the way it strips
## numbers or adds them back?  See chapter_title_strip_pattern and
## chapter_title_add_pattern.
strip_chapter_numbers:true
add_chapter_numbers:true
Add them to your personal.ini (after installing, of course) to give them a try. They will be applied when an existing epub is updated. You can do 'Update Always' to change the chapter titles in existing epubs even without new chapters.

I've included default patterns for the stripping and adding that seem reasonable to me, but they're also configurable:

Spoiler:
Code:
## (Two versions of chapter_title_strip_pattern are shown below.  You
## should only have one uncommented.)
## This version will remove the leading number from:
## "1." => ""
## "1. The Beginning" => "The Beginning"
## "1: Start" => "Start"
## "2, Chapter the second" => "Chapter the second"
## etc
chapter_title_strip_pattern:^[0-9]+[\.: -]+

## This version will strip all of the above *plus* remove 'Chapter 1':
## "Chapter 1" => ""
## "1. Chapter 1" => ""
## "1. Chapter 1, Bob's First Clue" => "Bob's First Clue"
## "Chapter 2 - Pirates Place" => "Pirates Place"
## etc
#chapter_title_strip_pattern:^([0-9]+[\.: -]+)?(Chapter *[0-9]+[\.:, -]*)?

## Uses a python template substitution.  The ${index} is the 'chapter'
## number and ${title} is the chapter title, after applying
## chapter_title_strip_pattern.  Those are the only variables available.
## "The Beginning" => "1. The Beginning" 
chapter_title_add_pattern:${index}. ${title}

Last edited by JimmXinu; 09-13-2012 at 01:30 PM. Reason: Remove obsolete beta versions
JimmXinu is offline  
Advert
Old 09-13-2012, 12:38 PM   #828
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,111
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Quote:
Originally Posted by JimmXinu View Post
By having only one 'add_chapter_numbers' option instead of one for TOC and one for in-chapter titles, this is simplified a fair bit.

The attached version has new options:

Code:
## Don't like the numbers at the start of chapter titles on some
## sites?  You can use strip_chapter_numbers to strip them off.  Just
## want to make them all look the same?  Strip them off, then add them
## back on with add_chapter_numbers.  Don't like the way it strips
## numbers or adds them back?  See chapter_title_strip_pattern and
## chapter_title_add_pattern.
strip_chapter_numbers:true
add_chapter_numbers:true
Add them to your personal.ini (after installing, of course) to give them a try. They will be applied when an existing epub is updated. You can do 'Update Always' to change the chapter titles in existing epubs even without new chapters.
That works perferctly. Thanks!

Regarding "Update Always", if there are no new chapters, does it still re-download all the chapters before updating the epub? Reason I ask is I'd like to update some 1,500 ebooks and I reckon if it downloads all the chapters, I'd play nice and just do it in batches so as not to hammer the site.

ilovejedd is offline  
Old 09-13-2012, 01:02 PM   #829
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by ilovejedd View Post
That works perferctly. Thanks!

Regarding "Update Always", if there are no new chapters, does it still re-download all the chapters before updating the epub? Reason I ask is I'd like to update some 1,500 ebooks and I reckon if it downloads all the chapters, I'd play nice and just do it in batches so as not to hammer the site.

Glad it's working for you.

"Update Always" pulls the first chapter or chapter list, but the whole point behind "Update epub" is to not download chapters it already has.

So an "Update Always" with no new chapters will hit the site servers 2-4 times per story, depending on the site, user/pass, etc.

You might consider is adding this to your personal.ini while doing large updates:

Code:
slow_down_sleep_time:2.5
That puts a 2.5 sec sleep before each site request.
JimmXinu is offline  
Old 09-13-2012, 01:29 PM   #830
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Test version including new site merlinfic.dtwins.co.uk.

Assuming no new problems, this is the last test version before the next release.

Last edited by JimmXinu; 09-14-2012 at 01:40 PM. Reason: Remove obsolete beta versions
JimmXinu is offline  
Advert
Old 09-14-2012, 04:21 AM   #831
Firedancer885
Occassional Beta Tester
Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.Firedancer885 can teach chickens to fly.
 
Posts: 283
Karma: 3516
Join Date: Nov 2010
Location: Hungary
Device: Samsung Galaxy Tab 4 (wifi only)
Quote:
Originally Posted by JimmXinu View Post
Test version including new site merlinfic.dtwins.co.uk.
Thanks Works fine.

Last edited by Firedancer885; 09-14-2012 at 04:45 AM.
Firedancer885 is offline  
Old 09-14-2012, 01:27 PM   #832
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Version 1.6.9 - 14 Sep 2012
  • New site merlinfic.dtwins.co.uk (thanks, Ida)
  • New option features strip_chapter_numbers and add_chapter_numbers to remove and add numbers to chapter titles.
  • Fix BBEncoded summaries for fimfiction.net, improved handling for HTML in summaries in general. Default keep_summary_html:true to now.
  • Added code to prevent crashing when include_images accidentally turned on for non-epub formats.
JimmXinu is offline  
Old 09-14-2012, 03:54 PM   #833
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,111
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Thanks for the update. Special request, for the next update, can you please add the following additional custom columns?

Code:
theme:Theme
timeline:Timeline
cliche:Cliche
I've been playing around with the dramione.org adapter and have added the above info to my local copy. No idea how to make diffs so I'm just including the full adapter_dramioneorg.py file.

Thanks!
Attached Files
File Type: zip adapter_dramioneorg.zip (3.9 KB, 172 views)
ilovejedd is offline  
Old 09-14-2012, 05:44 PM   #834
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by ilovejedd View Post
Thanks for the update. Special request, for the next update, can you please add the following additional custom columns?

Code:
theme:Theme
timeline:Timeline
cliche:Cliche
That's unlikely to happen anytime soon.

Each site chooses different metadata to define. Even category and genre vary wildly from site to site. At this point I don't want to add any more new metadata 'columns' that isn't used by a significant number of sites.

(I only reluctantly added Relationships metadata recently after finding that 7 sites actually do provide 'ship data and a further 13 were dedicated to a particular 'ship and could therefore be considered to have implicit 'ship data.)

I have an entry on the 'wishlist' to figure out a better way for individual site-specific metadata, but it hasn't happened yet.

If you like, I am willing to change the dramione.org adapter to add the theme and timeline data to genre and what you've identified as 'cliche' (and dramione.org calls 'Draco' and 'Hermione' categories) to either genre or characters.

Hmmm. And you've found cover images. Good thing I diff'ed the source, since you didn't mention that. I'll include that bit either way. Can you give me URLs to a couple stories there with banner images so I can test it?
JimmXinu is offline  
Old 09-14-2012, 06:32 PM   #835
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,111
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Quote:
Originally Posted by JimmXinu View Post
That's unlikely to happen anytime soon.

Each site chooses different metadata to define. Even category and genre vary wildly from site to site. At this point I don't want to add any more new metadata 'columns' that isn't used by a significant number of sites.

(I only reluctantly added Relationships metadata recently after finding that 7 sites actually do provide 'ship data and a further 13 were dedicated to a particular 'ship and could therefore be considered to have implicit 'ship data.)

I have an entry on the 'wishlist' to figure out a better way for individual site-specific metadata, but it hasn't happened yet.

If you like, I am willing to change the dramione.org adapter to add the theme and timeline data to genre and what you've identified as 'cliche' (and dramione.org calls 'Draco' and 'Hermione' categories) to either genre or characters.

Hmmm. And you've found cover images. Good thing I diff'ed the source, since you didn't mention that. I'll include that bit either way. Can you give me URLs to a couple stories there with banner images so I can test it?
I hear you about the category and genre randomness per site. Heck, I've seen it partially with warnings, too. Right now, I've got a separate Calibre library per site.

Don't bother adding the theme and timeline info to genre. That's what I originally did and it's just not as organized as having the info in its own custom column. Totally messed up my subject tags. Don't really fancy cleaning up my Tags every time I download a new story. I'll just keep doing the edits to my local copy. Comparing the source code is much faster and easier than frequent tag clean up. dramione.org actually has ship data for extra ships. Just didn't bother adding that as I prefer just having the main ship.

I've forgotten about the covers. The cover images are more banners than covers. I actually use Generate Cover for the actual calibre covers but I still do like having the banners inside the epub.

Just looked for random fics with images:

http://dramione.org/viewstory.php?sid=21
http://dramione.org/viewstory.php?sid=1826
http://dramione.org/viewstory.php?sid=1734
ilovejedd is offline  
Old 09-14-2012, 06:51 PM   #836
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by ilovejedd View Post
Don't bother adding the theme and timeline info to genre.
Okay. I'll continue to think about how I might be able to add more site specific metadata to custom columns. Right now my best idea for it would be to do that configuration in personal.ini instead of the GUI config.

Quote:
Originally Posted by ilovejedd View Post
Just looked for random fics with images:
Thanks, I'll include that cover code in the next release.
JimmXinu is offline  
Old 09-14-2012, 06:55 PM   #837
ilovejedd
hopeless n00b
ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.ilovejedd ought to be getting tired of karma fortunes by now.
 
ilovejedd's Avatar
 
Posts: 5,111
Karma: 19597086
Join Date: Jan 2009
Location: in the middle of nowhere
Device: PW4, PW3, Libra H2O, iPad 10.5, iPad 11, iPad 12.9
Quote:
Originally Posted by JimmXinu View Post
Okay. I'll continue to think about how I might be able to add more site specific metadata to custom columns. Right now my best idea for it would be to do that configuration in personal.ini instead of the GUI config.
That's probably the best way.
ilovejedd is offline  
Old 09-15-2012, 02:40 AM   #838
skb
Evangelist
skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.
 
skb's Avatar
 
Posts: 401
Karma: 1597305
Join Date: Mar 2010
Device: Ipod G4, MacOS 10.12, Calibre, Pocketbook Touch HD 3
I am having trouble downloading a story from ffnet and wasn't sure if it's an issue with the story (the formatting is...weird) or it's too long or...

http://www.fanfiction.net/s/344588/1...ardassian-Mask

FDL gives the message "FFDL found 0 good and 0 bad updates". The log is empty (only contains: "Status Title Author Comment URL").

Using 0.8.68 Calibre and 1.6.8 FFDL

I've said it before, but I'll say it again - this plugin is fantastic. It has changed my whole workflow and made it so much easier to download and read stuff. Thanks again for all the hard work.
skb is offline  
Old 09-15-2012, 11:13 AM   #839
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 6,307
Karma: 3966249
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
Quote:
Originally Posted by skb View Post
I am having trouble downloading a story from ffnet and wasn't sure if it's an issue with the story (the formatting is...weird) or it's too long or...

http://www.fanfiction.net/s/344588/1...ardassian-Mask

FDL gives the message "FFDL found 0 good and 0 bad updates". The log is empty (only contains: "Status Title Author Comment URL").
That's an ancient story (Jul 2001) with extremely bad HTML. So bad it causes an infinite recursion in FFDL's HTML parser that crashes the background job entirely. (The error output shows up in the Jobs window.)

Given that ffnet wouldn't allow that content now, or indeed, for several years now (see the url and email address in there?), I'm not going to put in the effort and special coding it would take to deal with this one author and their nasty HTML. Sorry.

Quote:
Originally Posted by skb View Post
I've said it before, but I'll say it again - this plugin is fantastic. It has changed my whole workflow and made it so much easier to download and read stuff. Thanks again for all the hard work.
Glad you like it, sorry I couldn't help you this time.
JimmXinu is offline  
Old 09-15-2012, 02:50 PM   #840
skb
Evangelist
skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.skb ought to be getting tired of karma fortunes by now.
 
skb's Avatar
 
Posts: 401
Karma: 1597305
Join Date: Mar 2010
Device: Ipod G4, MacOS 10.12, Calibre, Pocketbook Touch HD 3
No worries - I thought it might have been the formatting (which is bizarre). I can get it (the story) on PDF but I think FFDL is spoiling me for other formats (and I've hated PDFs since my Palm Pilot days).

Thanks again!
skb is offline  
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[GUI Plugin] Count Pages kiwidude Plugins 1750 04-07-2024 01:20 AM
[GUI Plugin] Open With kiwidude Plugins 403 04-01-2024 08:39 AM
[GUI Plugin] Resize Cover kiwidude Plugins 95 03-16-2024 11:55 PM
[GUI Plugin] Find Duplicates kiwidude Plugins 1096 03-16-2024 11:28 PM
[GUI Plugin] Plugin Updater **Deprecated** kiwidude Plugins 159 06-19-2011 12:27 PM


All times are GMT -4. The time now is 08:35 PM.


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