PDA

View Full Version : After iSiloXC's job, It can't Sync with palm.


hinoya
06-02-2004, 09:19 AM
I'm sure daily.ixi work very well with iSiloX in Mac OS X, After convert with iSiloX in Mac OS X, It can sync with my palm.

But after work like below in Terminal

/Applications/Palm/iSiloX/iSiloXC -x /Applications/Palm/iSiloX/daily.ixl -v -u

and then when I sync, It doesn't work.

I don't know why. Could you guess?

This is my daily.ixl file.


<?xml version="1.0"?>
<iSiloXDocumentList>
<iSiloXDocument>
<Source>
<Sources>
<Path>http://pda.businessweek.com/</Path>
</Sources>
</Source>
<Destination>
<Title>BusinessWeek</Title>
<HotSync>
<Path>PALM</Path>
</HotSync>
<Files>
<Path>HDD:Applications:Palm:iSiloX:</Path>
</Files>
</Destination>
<LinkOptions>
<MaximumDepth value="6"/>
<FollowOffsite value="yes"/>
<SubDirOnly value="yes"/>
<UnresolvedDetail value="exclude"/>
</LinkOptions>
<ImageOptions>
<AltText value="exclude"/>
<Images value="include"/>
<ResizeLargeImages value="yes"/>
<ImproveContrast value="yes"/>
<Dither value="yes"/>
<MaximumWidth value="304"/>
<MaximumHeight value="264"/>
<Compress value="yes"/>
<BitDepth1 value="exclude"/>
<BitDepth2 value="exclude"/>
<BitDepth4 value="exclude"/>
<BitDepth8 value="exclude"/>
<BitDepth16 value="include"/>
<LossyLevel value="none"/>
<LossyQuality value="75"/>
</ImageOptions>
<TableOptions>
<IgnoreTables value="no"/>
<AddSeparators value="no"/>
<UseMinimumDepth value="no"/>
<MinimumDepth value="1"/>
<UseMaximumBottomReach value="no"/>
<MaximumBottomReach value="1"/>
<UnfoldFullPageTables value="no"/>
<IgnorePixelWidths value="no"/>
</TableOptions>
<ColorOptions>
<BackgroundColors value="keep"/>
<TextColors value="keep"/>
</ColorOptions>
<MarginOptions>
<LeftRightMargins value="keep"/>
<LeftRightPadding value="keep"/>
</MarginOptions>
<SecurityOptions>
<Convert value="allow"/>
<CopyBeam value="allow"/>
<CopyAndPaste value="allow"/>
<Modify value="allow"/>
<Print value="allow"/>
</SecurityOptions>
<TextOptions>
<PreUseMonospaceFont value="yes"/>
<PreSingleLineBreaks value="KeepAll"/>
<ProcessLineBreaks value="yes"/>
<ConvertSingleLineBreaks value="no"/>
<Preformatted value="no"/>
<UseMonospaceFont value="no"/>
<MonospaceFontSize value="10"/>
<TabStopWidth value="8"/>
</TextOptions>
<DocumentOptions>
<PageBounds value="hard"/>
<UseDefaultCategory value="no"/>
<HomePageNumber value="1"/>
<OpenHomePageOnDateChange value="no"/>
</DocumentOptions>
<Bookmarks>
<Document>
<UseFile value="no"/>
<UseNamedAnchors value="no"/>
<NamedAnchorType value="WordWebPage"/>
<UseIncludeFilter value="no"/>
<UseExcludeFilter value="no"/>
</Document>
</Bookmarks>
<LastConversion>
<Date>2004/06/02 18:02:18</Date>
<Size value="61317"/>
<Status>Successful conversion</Status>
</LastConversion>
</iSiloXDocument>
</iSiloXDocumentList>

iSilo
06-02-2004, 02:52 PM
There are a couple of issues here.

iSiloXC for Mac OS X does not support Mac OS style path names. You must use UNIX style paths (e.g., with '/'). So replace any Mac OS style path names with the correct UNIX path (e.g., /Applications/Palm/iSiloX/ instead of "HDD:Applications:Palm:iSiloX:").

iSiloXC for Mac OS X does not support the direct queueing of converted documents via HotSync, so you need to do it a different way.

You can add a destination under <Files>. You currently have the following:


<HotSync>
<Path>PALM</Path>
</HotSync>

So assuming your login user name in OS X is USERNAME, your HotSync name is PALM, and the directory where the HotSync software looks for files to install is:

/Users/USERNAME/Documents/Palm/Users/PALM/Files To Install/

Add a <Path> entry within the <Files> element:


<Files>
<Path>
/Users/USERNAME/Documents/Palm/Users/PALM/Files To Install/</Path>
</Files>

hinoya
06-02-2004, 06:27 PM
Yes, It works. Thanks a lot. :D