Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > More E-Book Readers > iRex

Notices

Reply
 
Thread Tools Search this Thread
Old 02-24-2010, 12:31 PM   #76
badbob001
Fanatic
badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.badbob001 ought to be getting tired of karma fortunes by now.
 
badbob001's Avatar
 
Posts: 556
Karma: 1102020
Join Date: Sep 2009
Device: Kindle Keyboard (rip), Kindle Voyage, Fire Tablet 10 '17, iPad '19
Quote:
Originally Posted by Kolenka View Post
What browser are you using? Odds are me using Safari (Webkit) is routing me to the device page, while you are getting the desktop page.

The device page only has B&N and Newspaper Direct.
You're right, the redirect is based on the browser's user agent. I was using Firefox but when I switched to Chome, the proper page came up. It's too bad BN doesn't have a reader-specific page, like Newspaper Direct, instead of the mobile page that is formatted for cell phones.
badbob001 is offline   Reply With Quote
Old 03-02-2010, 03:38 AM   #77
Kolenka
<Insert Wit Here>
Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.
 
Kolenka's Avatar
 
Posts: 1,017
Karma: 1275899
Join Date: Jan 2008
Location: Puget Sound
Device: Kindle Oasis, Kobo Forma
So question for the devs if they are still watching this thread:

How are UDS plugins expected to handle integrating document metadata into main DB? Are we just expected to use the (deprecated) libermetadb to push it in ourselves?

Since it looks like mdbindex or some other process will be inserting metadata for files automatically in the next DR800 firmware, is this going to be something fixed in place, or will it work around using the UDS plugins to extract the title/author?

This seems to be the one area where there isn't quite enough documentation/samples to get a clear idea what we are expected to do, as the samples don't set any metadata, the documentation says nothing but 'here is libermetadb', and libermetadb says "I'm deprecated in the areas you care about."
Kolenka is offline   Reply With Quote
Advert
Old 03-02-2010, 04:33 AM   #78
Gertjan
ex-IRX developer
Gertjan doesn't litterGertjan doesn't litterGertjan doesn't litter
 
Gertjan's Avatar
 
Posts: 158
Karma: 224
Join Date: Oct 2008
Device: Irex DR800S, DR1000S, iLiad
Quote:
Originally Posted by Kolenka View Post
How are UDS plugins expected to handle integrating document metadata into main DB? Are we just expected to use the (deprecated) libermetadb to push it in ourselves?
Good to see you're eager to get your hands dirty.
Quote:
Since it looks like mdbindex or some other process will be inserting metadata for files automatically in the next DR800 firmware, is this going to be something fixed in place, or will it work around using the UDS plugins to extract the title/author?
The next firmware includes a rewritten libermetadb which is much easier to use. The indexer will call UDS and plugins to retrieve meta data and generate thumbnails. The interfaces are not final yet, but we'll be happy to provide details when things have settled.

Last edited by Gertjan; 03-02-2010 at 04:38 AM.
Gertjan is offline   Reply With Quote
Old 03-02-2010, 04:40 AM   #79
Kolenka
<Insert Wit Here>
Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.
 
Kolenka's Avatar
 
Posts: 1,017
Karma: 1275899
Join Date: Jan 2008
Location: Puget Sound
Device: Kindle Oasis, Kobo Forma
That's fine, I'm just curious if it is even worth my time to hack together some function to stuff things into the DB now, or just wait for the 3.x update to fully support metadata in CBZ.

Now if only progressive JPEGs weren't so much slower to load.
Kolenka is offline   Reply With Quote
Old 03-02-2010, 06:28 AM   #80
Matthijs
Groupie
Matthijs will become famous soon enoughMatthijs will become famous soon enoughMatthijs will become famous soon enoughMatthijs will become famous soon enoughMatthijs will become famous soon enoughMatthijs will become famous soon enough
 
Matthijs's Avatar
 
Posts: 199
Karma: 666
Join Date: Oct 2006
Location: Eindhoven, the Netherlands
Device: iLiad, DR1000S, DR800SG
Quote:
Originally Posted by Kolenka View Post
How are UDS plugins expected to handle integrating document metadata into main DB? Are we just expected to use the (deprecated) libermetadb to push it in ourselves?
No, plugins are not supposed to access the database directly. UDS queries metadata through the document attributes. An example of this is indeed missing in the Poppler PDF plugin. You should do something like this:
Code:
doc_attr_map.insert(std::make_pair("title", "TITLE GOES HERE"));
doc_attr_map.insert(std::make_pair("author", "AUTHOR GOES HERE"));
// For the next release:
doc_attr_map.insert(std::make_pair("publisher", "PUBLISHER GOES HERE"));
Search for make_pair("fixed-page", "yes") in the example code (PDF/IMAGES) for an example of how to create document attributes.
Matthijs is offline   Reply With Quote
Advert
Old 03-02-2010, 01:57 PM   #81
Kolenka
<Insert Wit Here>
Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.Kolenka ought to be getting tired of karma fortunes by now.
 
Kolenka's Avatar
 
Posts: 1,017
Karma: 1275899
Join Date: Jan 2008
Location: Puget Sound
Device: Kindle Oasis, Kobo Forma
I was hoping it would use the document attributes, but didn't see anything about which attributes translated to what in the samples. Thanks.
Kolenka is offline   Reply With Quote
Old 06-11-2010, 11:57 AM   #82
Gertjan
ex-IRX developer
Gertjan doesn't litterGertjan doesn't litterGertjan doesn't litter
 
Gertjan's Avatar
 
Posts: 158
Karma: 224
Join Date: Oct 2008
Device: Irex DR800S, DR1000S, iLiad
Just a quick heads up.

The SDK and Source packages of DR800S(G) and DR1000S 2.0 (RC2) software are available from our developer website. You'll need to look in the version 4.0 folders. As it is still a Release Candidate, the files will be updated once the release is final.

Happy hacking!
Gertjan is offline   Reply With Quote
Old 06-11-2010, 12:00 PM   #83
luite
Connoisseur
luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.
 
Posts: 82
Karma: 256
Join Date: Feb 2010
Location: Netherlands
Device: dr1000
Oops, I made a new thread because I didn't notice your post in this thread Gertjan. Thanks for the SDK, I can't wait to get the DjVu plugin running again
luite is offline   Reply With Quote
Old 06-11-2010, 03:57 PM   #84
CoolDragon
Addict
CoolDragon doesn't litterCoolDragon doesn't litter
 
Posts: 244
Karma: 124
Join Date: Feb 2010
Device: none
So the SDK 4.0 is for both DR800 and DR1000?
CoolDragon is offline   Reply With Quote
Old 06-11-2010, 04:10 PM   #85
luite
Connoisseur
luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.
 
Posts: 82
Karma: 256
Join Date: Feb 2010
Location: Netherlands
Device: dr1000
Yes, but the emulator image seems to contain only the DR800 software. I just built an updated DjVu plugin (*) with the new SDK, which works on both the DR800 and DR1000.

(*) Preview posted here: https://www.mobileread.com/forums/sho...t=73790&page=2
luite is offline   Reply With Quote
Old 06-11-2010, 04:36 PM   #86
CoolDragon
Addict
CoolDragon doesn't litterCoolDragon doesn't litter
 
Posts: 244
Karma: 124
Join Date: Feb 2010
Device: none
A side question: how do you simulate the hardware buttons in the emulator?
CoolDragon is offline   Reply With Quote
Old 06-11-2010, 04:45 PM   #87
luite
Connoisseur
luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.luite has a complete set of Star Wars action figures.
 
Posts: 82
Karma: 256
Join Date: Feb 2010
Location: Netherlands
Device: dr1000
The hardware buttons are mapped to regular keys, try the following ones:
- arrow keys
- page up / page down / home / end (for long keypresses)
- F1
- enter
luite is offline   Reply With Quote
Old 06-12-2010, 06:10 AM   #88
Iņigo
Guru
Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.
 
Posts: 730
Karma: 72743
Join Date: Feb 2008
Location: Here or there
Device: iRex iLiad, iRex DR800S. K4NT. Kobo Aura, Aura One, Libra 2.
Quote:
Originally Posted by Gertjan View Post
Just a quick heads up.

The SDK and Source packages of DR800S(G) and DR1000S 2.0 (RC2) software are available from our developer website. You'll need to look in the version 4.0 folders. As it is still a Release Candidate, the files will be updated once the release is final.

Happy hacking!
Thanks Gertjan and all IREX people for making this.
Hope you and the whole company people (and the company itself if is possible) stay well.

Thanks a lot,
Iņigo
Iņigo is offline   Reply With Quote
Old 06-12-2010, 06:35 AM   #89
Iņigo
Guru
Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.
 
Posts: 730
Karma: 72743
Join Date: Feb 2008
Location: Here or there
Device: iRex iLiad, iRex DR800S. K4NT. Kobo Aura, Aura One, Libra 2.
Quote:
Originally Posted by Gertjan View Post
Just a quick heads up.

The SDK and Source packages of DR800S(G) and DR1000S 2.0 (RC2) software are available from our developer website. You'll need to look in the version 4.0 folders. As it is still a Release Candidate, the files will be updated once the release is final.

Happy hacking!
Btw, I've noted there isn't a "libs" directory in "iRex" folder, so all liber* libs (libergtk, liberipc, etc) are missing yet.
Iņigo is offline   Reply With Quote
Old 06-12-2010, 12:19 PM   #90
Gertjan
ex-IRX developer
Gertjan doesn't litterGertjan doesn't litterGertjan doesn't litter
 
Gertjan's Avatar
 
Posts: 158
Karma: 224
Join Date: Oct 2008
Device: Irex DR800S, DR1000S, iLiad
Quote:
Originally Posted by Iņigo View Post
Btw, I've noted there isn't a "libs" directory in "iRex" folder, so all liber* libs (libergtk, liberipc, etc) are missing yet.
Oops, the access rights were not set up correctly. Thanks for pointing that out.
Gertjan is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
DR800 ANN: DR800+. Port of some DR1000 features to the DR800 Iņigo iRex 274 04-05-2013 02:24 PM
Posted from droid x! kennyc Lounge 9 09-09-2010 10:13 AM
Probably should have posted this before I bought.. Boston Ectaco jetBook 28 12-25-2009 10:11 AM
Has anyone posted this one? pathfinderca Alternative Devices 5 08-08-2009 10:52 PM
My new review posted DougFNJ Sony Reader 1 12-31-2006 02:39 PM


All times are GMT -4. The time now is 07:27 AM.


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