home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / komunikace / filezilla / FileZilla_3.0.11.1_win32-setup.exe / docs / fzdefaults.xml.example
Extensible Markup Language  |  2008-07-05  |  2KB  |  72 lines

  1. <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
  2.  
  3. <!-- fzdefaults.xml documentation
  4.  
  5.   The file fzdefaults.xml is used to provide system-wide default settings for
  6.   FileZilla.
  7.  
  8.   Usage:
  9.   
  10.     - Windows:
  11.  
  12.       Put the file fzdefaults.xml into the same directory as filezilla.exe
  13.  
  14.     - OS X:
  15.  
  16.       Modify the app bundle, put fzdefaults.xml into the
  17.       Contents/SharedSupport/ subdirectory
  18.  
  19.     - Other:
  20.  
  21.       Put fzdefaults.xml into one of the following directories (in order of precedence):
  22.       
  23.       - ~/.filezilla
  24.       - /etc/filezilla
  25.       - share/filezilla subdirectory of the install prefix.
  26.  
  27.   Default site manager entries:
  28.  
  29.     Create some new Site Manager entries and export the list of sites. Rename
  30.     the resulting XML file to fzdefaults.xml or copy the <Servers> block in it
  31.     to fzdefaults.xml. See example below.
  32.  
  33.   Location of settings directory:
  34.  
  35.     By default, FileZilla stores its settings in the user's home directory. If
  36.     you want to change this location, modify the "Config Location" setting (see
  37.     below).
  38.  
  39.     "Config Location" either accepts absolute paths or paths relative to the
  40.     location of fzdefaults.xml
  41.     You can also use environment variables by preceding them with the dollar
  42.     sign, e.g. "$HOME/foo".
  43.     Use $$ to denote a path containing dollar signs, e.g. "c:\$$foobar\" if
  44.     settings should be located in "c:\$foobar".
  45.     A single dot denotes the directory containing fzdefaults.xml
  46.  
  47. -->   
  48.  
  49. <FileZilla3>
  50.     <Settings>
  51.       <Setting name="Config Location">$SOMEDIR/filezilla/</Setting>
  52.     </Settings>
  53.     <Servers>
  54.         <Server>
  55.             <Host>ftp.gnu.org</Host>
  56.             <Port>21</Port>
  57.             <Protocol>0</Protocol>
  58.             <Type>0</Type>
  59.             <Logontype>0</Logontype>
  60.             <User>anonymous</User>
  61.             <Pass>someone@example.com</Pass>
  62.             <TimezoneOffset>0</TimezoneOffset>
  63.             <PasvMode>MODE_DEFAULT</PasvMode>
  64.             <MaximumMultipleConnections>0</MaximumMultipleConnections>
  65.             <EncodingType>Auto</EncodingType>
  66.             <Comments></Comments>
  67.             <LocalDir></LocalDir>
  68.             <RemoteDir></RemoteDir>Primary GNU download server
  69.         </Server>
  70.     </Servers>
  71. </FileZilla3>
  72.