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 03-29-2008, 12:58 PM   #16
carandol
Evangelist
carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.
 
carandol's Avatar
 
Posts: 423
Karma: 2153430
Join Date: Dec 2007
Device: BeBook
Quote:
Originally Posted by daudi View Post
Can you look at the CF in a PC? Is it possible that the PDF has been downloaded okay and it in the subdirectory, but because there is no manifest file it won't open?
The manifest file is there, correctly showing when download (supposedly) took place. But the Guardian.pdf is a 0B Empty Document.
carandol is offline   Reply With Quote
Old 03-29-2008, 06:35 PM   #17
Alcuith
Enthusiast
Alcuith began at the beginning.
 
Alcuith's Avatar
 
Posts: 25
Karma: 12
Join Date: Mar 2008
Location: Sydney, Australia
Device: Nook Color, Iliad, Cool-er
Quote:
Originally Posted by carandol View Post
The manifest file is there, correctly showing when download (supposedly) took place. But the Guardian.pdf is a 0B Empty Document.
I'm getting exactly the same thing. Icon shows in the Iliad, but blinks and no content.

Just had a look at the card in the PC, manifest file is there but the pdf is 0kb
Alcuith is offline   Reply With Quote
Old 03-29-2008, 08:04 PM   #18
cen
Connoisseur
cen doesn't littercen doesn't litter
 
Posts: 53
Karma: 140
Join Date: Mar 2008
Device: iRex iLiad (v1) / Sony Librie
Made a bit of progress. Looks like the iLiad has a problem writing to my CF card (Transcend 1GB 80x). Changing to internal media (/mnt/free) and the program works fine.

Alcuith are you using CF or other storage? It would be interesting to see if this works for you and carandol if you use internal storage or mmc as rio uses.
cen is offline   Reply With Quote
Old 03-30-2008, 06:15 AM   #19
Falzon
Junior Member
Falzon began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Mar 2008
Device: iRex iLiad
I had a similar problem running the script - that executed and copied files to CF (PNY OPTIMA 4GB 60x) via wireless.sh start <SSID> wpa <WPA_KEY>
It was going through the motions (flashing green light, folder, manifest and icon created but pdf with 0kb size.)
I used mrxvt to view the executing script and noticed it would STALL during the transfer (varying between 7% and 58% complete) then would time out thus producing the null pdf.

I took the advice of CEN (thanks) and changed the path to the MCC (/media/card/) and it works every time.
The whole transfer takes less then 10 seconds, as opposed to the minute or so it previously took before it would timeout.

I haven't yet tried it with internal memory (/mnt/free/) but guess this would also work.

Can we infer that this may be an issue with wireless transfer of files directly to CF? Probably due to the limited max transfer rate of the CF not keeping up with the wireless transfer rate.
Could faster CF cards work any better I wonder?
Falzon is offline   Reply With Quote
Old 03-30-2008, 08:18 AM   #20
carandol
Evangelist
carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.
 
carandol's Avatar
 
Posts: 423
Karma: 2153430
Join Date: Dec 2007
Device: BeBook
Yay! Success at last! I moved the program to internal memory, added the connection details to the wireless command, and it works perfectly. It must be an issue with the speed of CF cards, as Falzon suggests. one and all!
carandol is offline   Reply With Quote
Old 03-30-2008, 04:09 PM   #21
carandol
Evangelist
carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.
 
carandol's Avatar
 
Posts: 423
Karma: 2153430
Join Date: Dec 2007
Device: BeBook
New! Improved!

Now that I've got this working, I've tinkered with the script a bit, so that instead of just downloading the World News, it downloads all the sections of G24; Top Stories, World News, Business News, Media News and Sports News. If you don't want any of the sections, remove (or hash out) the relevant bit of script.

I've included a few tips in comments in the script for setting it up, with alternate lines for internal memory and MMC card (though not for CF card because it doesn't seem to work).

Anyway, here's the code, and the whole thing's zipped below.

Code:
#!/bin/sh
export GUARDIAN_PATH=/mnt/free/newspapers/Guardian24 ## for internal memory
#export GUARDIAN_PATH=/media/card/newspapers/Guardian24 ## for MMC card
### Note: doesn't seem to work with CF card
### Connect -- insert details for wireless network
/usr/bin/wired.sh start 
/usr/bin/wireless.sh start <SSID> <ENC_TYPE> <PASS>
### Top Stories ###
rm -rf $GUARDIAN_PATH/Topstories.pdf
mkdir $GUARDIAN_PATH/Topstories.pdf
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h Top Stories</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>Topstories.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/Topstories.pdf/manifest.xml
wget -O $GUARDIAN_PATH/Topstories.pdf/Topstories.pdf http://download.guardian.co.uk/g24/Topstories.pdf
cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/Topstories.pdf/icon.png
### World News ###
rm -rf $GUARDIAN_PATH/World.pdf
mkdir $GUARDIAN_PATH/World.pdf
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h World News</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>World.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/World.pdf/manifest.xml
wget -O $GUARDIAN_PATH/World.pdf/World.pdf http://download.guardian.co.uk/g24/World.pdf
cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/World.pdf/icon.png
### Business ###
rm -rf $GUARDIAN_PATH/Business.pdf
mkdir $GUARDIAN_PATH/Business.pdf
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h Business News</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>Business.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/Business.pdf/manifest.xml
wget -O $GUARDIAN_PATH/Business.pdf/Business.pdf http://download.guardian.co.uk/g24/Business.pdf
cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/Business.pdf/icon.png
### Media ###
rm -rf $GUARDIAN_PATH/Media.pdf
mkdir $GUARDIAN_PATH/Media.pdf
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h Media News</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>Media.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/Media.pdf/manifest.xml
wget -O $GUARDIAN_PATH/Media.pdf/Media.pdf http://download.guardian.co.uk/g24/Media.pdf
cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/Media.pdf/icon.png
### Sport ###
rm -rf $GUARDIAN_PATH/Sport.pdf
mkdir $GUARDIAN_PATH/Sport.pdf
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h Sport News</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>Sport.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/Sport.pdf/manifest.xml
wget -O $GUARDIAN_PATH/Sport.pdf/Sport.pdf http://download.guardian.co.uk/g24/Sport.pdf
cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/Sport.pdf/icon.png
### Disconnect
/usr/bin/wired.sh stop
/usr/bin/wireless.sh stop
Attached Files
File Type: zip Guardian24.zip (5.7 KB, 390 views)
carandol is offline   Reply With Quote
Old 03-30-2008, 04:39 PM   #22
-Thomas-
Addict
-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.-Thomas- once ate a cherry pie in a record 7 seconds.
 
-Thomas-'s Avatar
 
Posts: 325
Karma: 1725
Join Date: Dec 2007
Location: Münster, Germany
Device: iRex iLiad v2
Quote:
Originally Posted by Falzon View Post
Can we infer that this may be an issue with wireless transfer of files directly to CF? Probably due to the limited max transfer rate of the CF not keeping up with the wireless transfer rate.
Could faster CF cards work any better I wonder?
There is a known bug on the iLiad when using WiFi and the CF card at the same time. The transfer rate goes down to ~1kb/s in this case. This isn't specific to any CF brand or model, so exchanging the CF card won't help either.

I think you could enhance the script to download the file to /tmp first and move it to the CF card afterwards...
-Thomas- is offline   Reply With Quote
Old 03-30-2008, 07:04 PM   #23
cen
Connoisseur
cen doesn't littercen doesn't litter
 
Posts: 53
Karma: 140
Join Date: Mar 2008
Device: iRex iLiad (v1) / Sony Librie
Quote:
Originally Posted by carandol View Post
I've included a few tips in comments in the script for setting it up, with alternate lines for internal memory and MMC card (though not for CF card because it doesn't seem to work).
Here is a version with working CF. The script will download news to <media of choice>/newspapers/Guardian24/. All files are downloaded to /tmp on internal memory first then moved to the correct media.

Things to do before running script
1) Uncomment the line for your media of choice
2) If using wifi set the ssid / enc / key

Code:
#!/bin/sh

####
# Uncomment one of the following depending on storage device
#export GUARDIAN_PATH=/media/cf/newspapers/Guardian24   # CF storage
#export GUARDIAN_PATH=/media/card/newspapers/Guardian24 # SD/MMC card
#export GUARDIAN_PATH=/mnt/free/newspapers/Guardian24   # Internal storage


/usr/bin/wired.sh start 
/usr/bin/wireless.sh start <SSID> <ENC_TYPE> <KEY>

for i in World Business Media Sport Topstories
do
	rm -rf $GUARDIAN_PATH/$i.pdf
	mkdir -p $GUARDIAN_PATH/$i.pdf

	echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h - $i</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>$i.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/$i.pdf/manifest.xml

	wget -O /tmp/$i.pdf http://download.guardian.co.uk/g24/$i.pdf
	mv /tmp/$i.pdf $GUARDIAN_PATH/$i.pdf/$i.pdf

	cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/$i.pdf/icon.png
done

/usr/bin/wired.sh stop
/usr/bin/wireless.sh stop
Attached Files
File Type: zip Guardian24-2.zip (5.4 KB, 451 views)

Last edited by cen; 03-31-2008 at 03:15 AM. Reason: removed OSX cruft from .zip
cen is offline   Reply With Quote
Old 03-31-2008, 07:57 AM   #24
carandol
Evangelist
carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.
 
carandol's Avatar
 
Posts: 423
Karma: 2153430
Join Date: Dec 2007
Device: BeBook
Thanks cen! I knew there had to be a more elegant way of doing that, but I've not done any scripting since I stopped using DOS in the early '90s, so I was pleased I'd got it working at all
carandol is offline   Reply With Quote
Old 03-31-2008, 03:29 PM   #25
DiaLogical
Logical Project
DiaLogical began at the beginning.
 
DiaLogical's Avatar
 
Posts: 5
Karma: 10
Join Date: Mar 2008
Device: iRex iLiad
Hi guys, I recently got an iLiad myself and it's great to see all kind of user created content. And this one in particular has me very interested. Since I didn't have a problem with other 3th party progs like the browser, reader(s), etc and the code seems clean I didn't expect any now either. But for some reason it doesn't seem to actually create or rather get the required .pdf file.

In short this is all I did;
  • extracted the latest .zip folder on my iLiad's internal memory in the newspaper folder (icon, manifest and run file)
  • changed the following to the run file (see quote below; uncomment + wireless info)
  • Selected the Guardian UK run file on the iLiad, it gives the blinking loading bar, after say 10 seconds the screen renews and nothing happened or opened. No .pdf file (not even a 0 kb) either.

The information about my wireless network is definitely correct, that's for the wep key and the SSID name, the ENC_TYPE is 128bit wep so I filled in <wep> lowercase, which should be fine as well I guess.

Any idea what could be the problem here? Thanks in advance.

Quote:
#!/bin/sh

####
# Uncomment one of the following depending on storage device
#export GUARDIAN_PATH=/media/cf/newspapers/Guardian24 # CF storage
#export GUARDIAN_PATH=/media/card/newspapers/Guardian24 # SD/MMC card
export GUARDIAN_PATH=/mnt/free/newspapers/Guardian24 # Internal storage


/usr/bin/wired.sh start
/usr/bin/wireless.sh start <mynetworkSSIDname> <wep> <WEP0EX1AM2PL3E>

for i in World Business Media Sport Topstories
do
rm -rf $GUARDIAN_PATH/$i.pdf
mkdir -p $GUARDIAN_PATH/$i.pdf

echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><package><metadata><dc-metadata><Title>The Guardian 24h - $i</Title><Description>Downloaded: `echo \`date\``</Description></dc-metadata><y-metadata><startpage>$i.pdf</startpage><image>icon.png</image><version>000</version></y-metadata></metadata></package>" > $GUARDIAN_PATH/$i.pdf/manifest.xml

wget -O /tmp/$i.pdf http://download.guardian.co.uk/g24/$i.pdf
mv /tmp/$i.pdf $GUARDIAN_PATH/$i.pdf/$i.pdf

cp $GUARDIAN_PATH/get-guardian/icon.png $GUARDIAN_PATH/$i.pdf/icon.png
done

/usr/bin/wired.sh stop
/usr/bin/wireless.sh stop

Last edited by DiaLogical; 04-01-2008 at 06:23 AM. Reason: spelling correction
DiaLogical is offline   Reply With Quote
Old 03-31-2008, 04:46 PM   #26
cen
Connoisseur
cen doesn't littercen doesn't litter
 
Posts: 53
Karma: 140
Join Date: Mar 2008
Device: iRex iLiad (v1) / Sony Librie
replace:

/usr/bin/wireless.sh start <mynetworkSSIDname> <wep> <WEP0EX1AM2PL3E>

with

/usr/bin/wireless.sh start mynetworkSSIDname wep WEP0EX1AM2PL3E

Probably should have made it clearer that the everything between and including the < > need to be replaced.

Last edited by cen; 03-31-2008 at 04:48 PM.
cen is offline   Reply With Quote
Old 03-31-2008, 05:09 PM   #27
DiaLogical
Logical Project
DiaLogical began at the beginning.
 
DiaLogical's Avatar
 
Posts: 5
Karma: 10
Join Date: Mar 2008
Device: iRex iLiad
That did the trick indeed, and now it sounds like a stupid mistake)
Thanks a bunch, appreciate the quick reply!

One more question, the font of the Guardian pdf files seems to be rather on the small side. Is there another quick way to enlarge them a few points instead of manually zooming with the iLiad's build in function every time?
DiaLogical is offline   Reply With Quote
Old 03-31-2008, 06:05 PM   #28
carandol
Evangelist
carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.carandol ought to be getting tired of karma fortunes by now.
 
carandol's Avatar
 
Posts: 423
Karma: 2153430
Join Date: Dec 2007
Device: BeBook
Quote:
Originally Posted by DiaLogical View Post
That did the trick indeed, and now it sounds like a stupid mistake)
Thanks a bunch, appreciate the quick reply!
Well, I looked at your code and couldn't see what was wrong with it either, until cen pointed it out


Quote:
Originally Posted by DiaLogical View Post
One more question, the font of the Guardian pdf files seems to be rather on the small side. Is there another quick way to enlarge them a few points instead of manually zooming with the iLiad's build in function every time?
I think the short answer to that is no. The limitation of PDF files is that they're meant to be displayed exactly as the layout was designed. You can zoom in, but you can't alter the font size. It's either zoom in or buy a magnifying glass
carandol is offline   Reply With Quote
Old 04-01-2008, 06:22 AM   #29
DiaLogical
Logical Project
DiaLogical began at the beginning.
 
DiaLogical's Avatar
 
Posts: 5
Karma: 10
Join Date: Mar 2008
Device: iRex iLiad
Quote:
Originally Posted by carandol View Post
I think the short answer to that is no. The limitation of PDF files is that they're meant to be displayed exactly as the layout was designed. You can zoom in, but you can't alter the font size. It's either zoom in or buy a magnifying glass
In that case I think I'll just go for the first option)

If anyone would know of other newspapers who publish a daily pdf version as well, I'd be glad to hear about it. Most newssites have 'mobile' versions, but so far I haven't seen any others organised on one page/in one file.

Edit: Did some more thorough searching and found a few, e.g. wikinews. But no luck on the 'big ones' yet as BBC, CNN,...
Edit2: Wall street journal. It seems feedbooks has more of these good news RSS feeds which (they) convert to pdf. Would it be possible to change the script as to download the respective pdf files from there (e.g. the Wall street journal, BBC news) as well?

Last edited by DiaLogical; 04-01-2008 at 07:14 AM. Reason: added some info
DiaLogical is offline   Reply With Quote
Old 04-01-2008, 07:49 AM   #30
cen
Connoisseur
cen doesn't littercen doesn't litter
 
Posts: 53
Karma: 140
Join Date: Mar 2008
Device: iRex iLiad (v1) / Sony Librie
Quote:
Originally Posted by DiaLogical View Post
But no luck on the 'big ones' yet as BBC, CNN,...
There is a scraped html version of the BBC website available.

Quote:
It seems feedbooks has more of these good news RSS feeds which (they) convert to pdf.
Take a look at FeedBooks iNewsStand

Last edited by cen; 04-01-2008 at 07:52 AM.
cen is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
The Guardian, modified ajnorman Recipes 20 01-10-2014 11:02 AM
Automatic News Download brewjono Calibre 3 10-09-2010 08:49 AM
Automatic Index of Books Available for Download HarryT BBeB/LRF Books 6 09-11-2009 09:49 PM
The Guardian Reviews the DX poohbear_nc News 3 07-06-2009 09:33 AM
Automatic Daily Comic Strip Download Adam B. iRex 10 08-11-2007 05:33 AM


All times are GMT -4. The time now is 05:22 AM.


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