02-26-2013, 09:02 PM
One annoyance i have with filezilla is that it will have not jumplist. That is because the developer has focus on cross platform.
So my solution is to have a qm exe pinned to taskbar as surrogate, which will have a jumplist generated from filezillas sitemanager.xml.
My first question is about an easy way to work with the xml file.
I want to build a menu out of it, but have problems to understand your documentation in help.
Since my xml is rather big and site info is not encrpyted, i can't post the whole file. But maybe you use filezilla too.
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<FileZilla3>
<Servers>
<Folder expanded="0">First Folder
<Server>
<Host>ftp.quick-macros.biz</Host>
<Port>21</Port>
<Protocol>0</Protocol>
<Type>0</Type>
<User>pi-44526</User>
<Pass>WOW-10-YEARS</Pass>
<Logontype>1</Logontype>
<TimezoneOffset>0</TimezoneOffset>
<PasvMode>MODE_DEFAULT</PasvMode>
<MaximumMultipleConnections>0</MaximumMultipleConnections>
<EncodingType>Auto</EncodingType>
<BypassProxy>0</BypassProxy>
<Name>stayhamburg</Name>
<Comments>Fake</Comments>
<LocalDir></LocalDir>
<RemoteDir></RemoteDir>
<SyncBrowsing>0</SyncBrowsing>stayhamburg
</Server>
</Folder>
</Servers>
</FileZilla3>
Macro Macro88
So my solution is to have a qm exe pinned to taskbar as surrogate, which will have a jumplist generated from filezillas sitemanager.xml.
My first question is about an easy way to work with the xml file.
I want to build a menu out of it, but have problems to understand your documentation in help.
Since my xml is rather big and site info is not encrpyted, i can't post the whole file. But maybe you use filezilla too.
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<FileZilla3>
<Servers>
<Folder expanded="0">First Folder
<Server>
<Host>ftp.quick-macros.biz</Host>
<Port>21</Port>
<Protocol>0</Protocol>
<Type>0</Type>
<User>pi-44526</User>
<Pass>WOW-10-YEARS</Pass>
<Logontype>1</Logontype>
<TimezoneOffset>0</TimezoneOffset>
<PasvMode>MODE_DEFAULT</PasvMode>
<MaximumMultipleConnections>0</MaximumMultipleConnections>
<EncodingType>Auto</EncodingType>
<BypassProxy>0</BypassProxy>
<Name>stayhamburg</Name>
<Comments>Fake</Comments>
<LocalDir></LocalDir>
<RemoteDir></RemoteDir>
<SyncBrowsing>0</SyncBrowsing>stayhamburg
</Server>
</Folder>
</Servers>
</FileZilla3>
Macro Macro88
IXml x._create
x.FromFile("D:\Dropbox\Tools\ftp\FileZillaPortable\Data\settings\sitemanager.xml") ;;load XML file
err out "Error: %s" x.XmlParsingError; ret ;;error if the file is corrupted
XmlOut x 1