View Single Post
Old 10-18-2007, 02:44 AM   #4
mocelet
Connoisseur
mocelet began at the beginning.
 
Posts: 56
Karma: 11
Join Date: Aug 2007
Device: iLiad / Palm Vx / Nokia E65
You can always go in via the USB to edit the manifest.xml file to set the Title that is displayed. You can also set the Description to set what gets displayed below the title.

The default formatting of the manifest.xml file is dreadful though, it has no line breaks. I generally run:

Code:
for F in `find . -name manifest.xml`; do tidy -i -xml -wrap 999 $F > $F.new && rm $F && mv $F.new $F; done
from the root of my iLiad filesystem before I edit the manifest files so that they are readable.

Once I have finished with it, a typical manifest file looks like this:
Code:
<?xml version="1.0" encoding="utf-8"?>
<package>
  <metadata>
    <dc-metadata>
      <Title>Dark Lover</Title>
      <Description>J R Ward</Description>
      <Date>2007-09-13T21:17:30</Date>
      <Format />
      <Identifier />
      <Language />
      <Type>book</Type>
    </dc-metadata>
    <y-metadata>
      <startpage>darklover4.prc</startpage>
      <version>000</version>
      <ItemSize>335872</ItemSize>
      <image>DLover.jpg</image>
    </y-metadata>
  </metadata>
</package>
mocelet is offline   Reply With Quote