home *** CD-ROM | disk | FTP | other *** search
/ 73.234.73.94.ip.orionnet.ru / 73.234.73.94.ip.orionnet.ru.tar / 73.234.73.94.ip.orionnet.ru / Far30b3000.x86.20121208.msi / TechInfo.reg < prev    next >
Windows Registry Data  |  2012-12-08  |  9KB  |  241 lines

  1. REGEDIT4
  2.  
  3. [HKEY_CURRENT_USER\Software\Far Manager\plugins\FTP]
  4.  
  5. ;Current developer:
  6. ;  JouriM<at>uran.ru, 2:5080/80.66
  7. ;------------------------------------------------------------------------
  8. ;   LogType: Logical type
  9. ;   RegType: Registry data type
  10. ;      Name: Name of the key
  11. ;   Default: Default value (if registry key is not found)
  12. ;   Meaning: Description
  13. ;------------------------------------------------------------------------
  14. ;
  15. ; 1.LogType: int
  16. ;   RegType: DWORD
  17. ;      Name: WaitIdle
  18. ;   Default: 0 (milliseconds)
  19. ;   Meaning: Delay in socket wait function.
  20. ;            The value is a number of milliseconds before appropriate calls of
  21. ;            Windows API.
  22. ;            Larger value will decrease usage of CPU by the plugin, giving
  23. ;            more CPU time to other applications, but connection/transfer
  24. ;            speed may become greatly slower.
  25. ;            Zero value means not to wait at all.
  26. ;            See WaitCounter for details of waiting.
  27. ;
  28. ; (uncomment next line to set value in registry)
  29. ;"WaitIdle" = dword:0
  30.  
  31. ;------------------------------------------------------------------------
  32. ; 2.LogType: int
  33. ;   RegType: DWORD
  34. ;      Name: WaitCounter
  35. ;   Default: 30
  36. ;   Meaning: Delay in socket wait function (counter).
  37. ;            Used only if WaitIdle nonzero.
  38. ;            This values determine the pause between free slices using WaitIdle.
  39. ;            This value is one second divider.
  40. ;            It means the real time amount determined by this value calculated
  41. ;            as:
  42. ;              TimeAmount = 1 second / WaitCounter
  43. ;            Plugin will free system slice to decrease CPU usage using next
  44. ;            algorithm:
  45. ;               if WaitCounter <= 0 OR WaitIdle <= 0 then
  46. ;                   <do not free slices>
  47. ;               if TimeSpentSinceLastFreeSliceOperation > 1 / WaitCounter then
  48. ;                   Free( WaitIdle milliseconds )
  49. ;
  50. ;"WaitCounter" = dword:0
  51.  
  52. ;------------------------------------------------------------------------
  53. ; 3.LogType: set of strings
  54. ;   RegType: strings
  55. ;      Name: Names of months to customize.
  56. ;            plugin search for next strings from registry:
  57. ;              "Jan","Feb","Mar","Apr","May","Jun","Jul",
  58. ;              "Aug","Sep","Oct","Nov","Dec"
  59. ;   Default: -- (the same values as string names)
  60. ;   Meaning: Some FTP servers use month names in regional language.
  61. ;            U can customize this values to correct understood by plugin.
  62. ;            You can use "months.reg" as a pattern to quickly create your own
  63. ;            month names.
  64. ;            You can set any numbers of month names delimited by ';' character.
  65. ;            Note: if you use multiple names delimited with ';' character you
  66. ;                  MUST end names list with ';' character too.
  67. ;            F.i.: "Jan"="Jan;ƒ¡ó;"
  68. ;
  69. ; (uncomment next lines to set values in registry)
  70. ;"Jan"="Jan"
  71. ;"Feb"="Feb"
  72. ;"Mar"="Mar"
  73. ;"Apr"="Apr"
  74. ;"May"="May"
  75. ;"Jun"="Jun"
  76. ;"Jul"="Jul"
  77. ;"Aug"="Aug"
  78. ;"Sep"="Sep"
  79. ;"Oct"="Oct"
  80. ;"Nov"="Nov"
  81. ;"Dec"="Dec"
  82.  
  83. ;------------------------------------------------------------------------
  84. ; 4.LogType: int
  85. ;   RegType: DWORD
  86. ;      Name: IdleShowPeriod
  87. ;   Default: 700 (milliseconds)
  88. ;   Meaning: Show period for "Waiting XX%" message in milliseconds.
  89. ;            Use zero value to disable drawing of this message.
  90. ;
  91. ; (uncomment next line to set value in registry)
  92. ;"IdleShowPeriod" = dword:2BC
  93.  
  94. ;------------------------------------------------------------------------
  95. ; 5.LogType: int
  96. ;   RegType: DWORD
  97. ;      Name: IdleStartPeriod
  98. ;   Default: 0 (milliseconds)
  99. ;   Meaning: Delay to show first idle message.
  100. ;            Affects only then value bigger then IdleShowPeriod.
  101. ;            Used to filter unstable connection to prevent short-time idle
  102. ;            messages appear on screen.
  103. ;
  104. ; (uncomment next line to set value in registry)
  105. ;"IdleStartPeriod" = dword:0
  106.  
  107. ;------------------------------------------------------------------------
  108. ; 6.LogType: set of strings
  109. ;   RegType: strings
  110. ;      Name: Names of FTP commands to execute (see FtpCmds.txt for details)
  111. ;   Default: --
  112. ;   Meaning: You can customize any FTP command used by plugin by change
  113. ;            it string value.
  114. ;            The length of command limited by 20 characters
  115. ;
  116. ; (uncomment next lines to set values in registry)
  117. ;"xcmdPUT"="STOR"
  118. ;"xcmdSTOR"="STOR"
  119. ;"xcmdSTOU"="STOU"
  120. ;"xcmdPASV"="PASV"
  121. ;"xcmdPORT"="PORT"
  122. ;"xcmdMDTM"="MDTM"
  123. ;"xcmdRETR"="RETR"
  124. ;"xcmdREST"="REST"
  125. ;"xcmdCWD"="CWD"
  126. ;"xcmdXCWD"="XCWD"
  127. ;"xcmdDELE"="DELE"
  128. ;"xcmdRNFR"="RNFR"
  129. ;"xcmdRNTO"="RNTO"
  130. ;"xcmdLIST"="LIST"
  131. ;"xcmdNLIST"="NLIST"
  132. ;"xcmdUSER"="USER"
  133. ;"xcmdPASS"="PASS"
  134. ;"xcmdACCT"="ACCT"
  135. ;"xcmdPWD"="PWD"
  136. ;"xcmdXPWD"="XPWD"
  137. ;"xcmdMKD"="MKD"
  138. ;"xcmdXMKD"="XMKD"
  139. ;"xcmdRMD"="RMD"
  140. ;"xcmdXRMD"="XRMD"
  141. ;"xcmdSITE"="SITE"
  142. ;"xcmdUMASK"="UMASK"
  143. ;"xcmdIDLE"="IDLE"
  144. ;"xcmdHELP"="HELP"
  145. ;"xcmdQUIT"="QUIT"
  146. ;"xcmdCDUP"="CDUP"
  147. ;"xcmdXCUP"="XCUP"
  148. ;"xcmdSYST"="SYST"
  149. ;"xcmdSIZE"="SIZE"
  150. ;"xcmdSTAT"="STAT"
  151.  
  152. ;------------------------------------------------------------------------
  153. ; 7.[HKEY_CURRENT_USER\Software\Far Manager\plugins\FTP\ServerDateFormat]
  154. ;   LogType: STRING
  155. ;   RegType: STRING
  156. ;      Name: ServerDateFormat
  157. ;   Default: "%*s %04d%02d%02d%02d%02d%02d"
  158. ;            (without quotes)
  159. ;   Meaning: Format of server reply string with date-time of single file (see
  160. ;            MDTM command in "FtpCmds.txt").
  161. ;            This string if the format for `scanf` C function.
  162. ;            The format used as:
  163. ;              scanf( ServerDateFormat, &year,&month,&day,&hour,&min,&sec );
  164. ;            and must be designed to read size integer fields or plugin may
  165. ;            crash.
  166. ;
  167. ; (uncomment next line to set value in registry)
  168. ;ServerDateFormat = "%*s %04d%02d%02d%02d%02d%02d"
  169.  
  170. ;------------------------------------------------------------------------
  171. ; 8.LogType: bit-field
  172. ;   RegType: DWORD
  173. ;      Name: PwdSecurity
  174. ;   Default: 0
  175. ;   Meaning: Value is a set of bits, each of them define one security option.
  176. ;            Description determines type of hexadecimal number.
  177. ;            The value is ON if number contains in registry key value and
  178. ;            is OFF if registry value does not contain number.
  179. ;            The numbers are:
  180. ;              0x0001   - place passwords in url as plain text
  181. ;
  182. ; (uncomment next line to set value in registry)
  183. ;"PwdSecurity" = dword:1
  184.  
  185. ;------------------------------------------------------------------------
  186. ; 9.LogType: int
  187. ;   RegType: DWORD
  188. ;      Name: RetryTimeout
  189. ;   Default: 10
  190. ;   Meaning: Auto retry pause.
  191. ;            Plugin will wait specified number of seconds for user cancel or
  192. ;            confirm retry operation.
  193. ;            If user cancel operation - it will be aborted, if user do nothing
  194. ;            plugin resume error operation.
  195. ;            This rule always used for the next operations:
  196. ;              - upload a file;
  197. ;              - download a file;
  198. ;              - query directory structure before downloading a file;
  199. ;              - creation of a directory;
  200. ;            Set this value to zero for disable auto resume.
  201. ;
  202. ; (uncomment next line to set value in registry)
  203. ;"RetryTimeout" = dword:A
  204.  
  205. ;------------------------------------------------------------------------
  206. ;10.LogType: BOOL
  207. ;   RegType: DWORD
  208. ;      Name: TruncateLogFile
  209. ;   Default: FALSE
  210. ;   Meaning: If this value set to TRUE (nonzero) plugin will delete old log
  211. ;            file on every start.
  212. ;
  213. ; (uncomment next line to set value in registry)
  214. ;"TruncateLogFile" = dword:0
  215.  
  216. ;------------------------------------------------------------------------
  217. ;11.LogType: STRING
  218. ;   RegType: strings
  219. ;      Name: InvalidSymbols and CorrectedSymbols
  220. ;
  221. ;   Default: "/<>|?*\"" and
  222. ;            "!()!__\'"
  223. ;
  224. ;   Meaning: This strings define conversion rulles for characters in th names
  225. ;            of downloading files.
  226. ;
  227. ;     Usage: You must define two strings. One contains symbols must be replaced and
  228. ;            the second symbols to replace with.
  229. ;
  230. ;      Note: DO NOT define backslash ('\') character as symbol to replace.
  231. ;            plugin uses this replacement for correct full pathnames and if you
  232. ;            command to replace backslash characters plugin will create wrong directories
  233. ;            and files.
  234. ;
  235. ;      Note: Strings length must be the same.
  236. ;            On load plugin will truncate strings to the length of smalest one.
  237. ;
  238. ; (uncomment next line to set value in registry)
  239. ;"InvalidSymbols"   = "/<>|?*\""
  240. ;"CorrectedSymbols" = "!()!__\'"
  241.