Termine auf PDA oder Smartphone exportieren

Neue Plugins usw. Also alles was kein Problem/Verbesserungsvorschlag ist ;).
Antworten
Gast

Termine auf PDA oder Smartphone exportieren

Beitrag von Gast »

Ich selbst habe ein Palm, benutze aber kein Palm Desktop. Hier ist die andere Möglichkeit, TV Termine auf PDA zu bekommen. Dafür braucht man Kalender Plug-in und Isilo Programm. Die gibt’s für viele Plattformen außer Palm. Mit Plug-in erzeugt man ein „.vcs“ Datei. Dann braucht man ein HTML Datei mit folgenden Inhalt:

<a href="prog.vcs">Programm</a>

Die „prog.vcs“ ist die Name von vorher gespeicherten „.vcs“ Datei.
Diese Datei soll man mit Isilox Konverter konvertieren und die von Konverter erzeugte Datei aufs Gerät schicken. Dann öffnet man diese Dokument in Isilo und klickt aufs Link – schon sind die Termine exportiert.

Ich selbst habe das Ganze automatisiert und habe ein Isilox Dokument gespeichert, hier ist die Kode von Datei:

<?xml version="1.0"?>
<iSiloXDocumentList>
<iSiloXDocument>
<Source>
<Sources>
<Path>progVCS.htm</Path>
</Sources>
</Source>
<Destination>
<Title>progVCS</Title>
<Files>
<Path>progVCS.pdb</Path>
</Files>
</Destination>
<LinkOptions>
<MaximumDepth value="1"/>
<FollowOffsite value="no"/>
<SubDirOnly value="no"/>
<UnresolvedDetail value="exclude"/>
</LinkOptions>
<ImageOptions>
<AltText value="exclude"/>
<Images value="include"/>
<ResizeLargeImages value="yes"/>
<ImproveContrast value="yes"/>
<Dither value="yes"/>
<MaximumWidth value="144"/>
<MaximumHeight value="132"/>
<Compress value="yes"/>
<BitDepth1 value="include"/>
<BitDepth2 value="exclude"/>
<BitDepth4 value="exclude"/>
<BitDepth8 value="exclude"/>
<BitDepth16 value="exclude"/>
</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"/>
</MarginOptions>
<SecurityOptions>
<Convert value="allow"/>
<CopyBeam value="allow"/>
<CopyAndPaste value="allow"/>
<Modify value="allow"/>
<Print value="allow"/>
</SecurityOptions>
<TextOptions>
<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"/>
</DocumentOptions>
<Bookmarks>
<Document>
<UseFile value="no"/>
<UseNamedAnchors value="yes"/>
<NamedAnchorType value="WordWebPage"/>
<UseIncludeFilter value="no"/>
<UseExcludeFilter value="no"/>
</Document>
</Bookmarks>
<LastConversion>
<Size value="0"/>
</LastConversion>
<Messages>
<Title>progVCS</Title>
<Version>1.0</Version>
<Copyright></Copyright>
<AuthorName></AuthorName>
<AuthorContact></AuthorContact>
<PublisherName></PublisherName>
</Messages>
</iSiloXDocument>
</iSiloXDocumentList>


Dann rufe ich das ganze automatisch mit folgenden .BAT Datei auf:

C:\Programme\iSilo\iSiloX\iSiloX -x progVCS.ixl

Und das Ganze ist automatisch erzeugt.
Antworten