Thread: iLiad iLiad Manifest Creator
View Single Post
Old 04-13-2007, 04:23 AM   #6
yokos
Pac-Man caught my iLiad.
yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.yokos can teach chickens to fly.
 
yokos's Avatar
 
Posts: 807
Karma: 3595
Join Date: Apr 2006
Location: Germany; next to Baltic Sea
Device: Boox Max Lumi, iRex iLiad (RIP)
Yeah, I found this out, too. No description.
I have written here "working" before watching result on iLiad, no good idea.

Bert, does your new java program convert the text input to UTF-8 compliant encoding? V1.1 didn't do this. We discussed this UTF-8 thing in my older manifest thread.

[EDIT] I checked version 1.2
UTF-8 bug is still there. Your java program doesn't check whether text input is compliant to UTF-8!
Non-compliant characters are written to manifest.xml. -> Contentlister can't handle manifest.xml.
See below code, "äöü" isn't correct UTF-8 encoding.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<package>
    <metadata>
        <dc-metadata>
            <Title>Title</Title>
            <Description>German Umlaute äöü</Description>
            <Date>2007-04-13T10:29:55</Date>
        </dc-metadata>
        <y-metadata>
            <image>Der Spiegel 11 2007.png</image>
            <startpage>Der Spiegel 11 2007.pdf</startpage>
        </y-metadata>
    </metadata>
</package>
We solved this by changing the first line of manifest to
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
iLiad screenshot shows utf-8 bug [last entry] [v1.1].
Attached Thumbnails
Click image for larger version

Name:	utf-8_bug.png
Views:	782
Size:	102.6 KB
ID:	3108  

Last edited by yokos; 04-13-2007 at 04:53 AM. Reason: utf-8 bug
yokos is offline   Reply With Quote