Differences
This shows you the differences between the selected revisions of the page.
| 2012-04-23 | 2012-08-14 | ||
| switches in scripting use - (martin) | rawsettings (martin) | ||
| Line 9: | Line 9: | ||
| ===== Session Settings ===== | ===== Session Settings ===== | ||
| - | For session settings, you can use ''-rawsettings'' switch (&beta_feature) or pre-configure a [[session_configuration#stored|stored session]] with all your settings [[ui_login|from GUI]] and open that stored session using ''[[scriptcommand_open|open]]'' command. | + | For session settings, you can use ''-rawsettings'' switch or ''[[scriptcommand_open|open]]'' command (&beta_feature) or pre-configure a [[session_configuration#stored|stored session]] with all your settings [[ui_login|from GUI]] and open that stored session using the ''open'' command. |
| ==== Using -rawsettings Switch ==== | ==== Using -rawsettings Switch ==== | ||
| Line 18: | Line 18: | ||
| open <session_url> -rawsettings ProxyMethod=3 ProxyHost=proxy ProxyPort=8080 | open <session_url> -rawsettings ProxyMethod=3 ProxyHost=proxy ProxyPort=8080 | ||
| </code> | </code> | ||
| - | |||
| - | To find connect syntax for particular settings, configure the setting in the GUI, store it into a stored session, [[config|save configuration to an INI file]] and use the same syntax as in an INI file. See the next section for example. | ||
| ==== Using Stored Session ==== | ==== Using Stored Session ==== | ||
| Line 44: | Line 42: | ||
| del server.ini | del server.ini | ||
| </code> | </code> | ||
| + | |||
| + | ==== Syntax and Examples ==== | ||
| + | See [[rawsettings|raw session settings]] syntax. | ||
| ===== Transfer Settings ===== | ===== Transfer Settings ===== | ||
| For [[transfer_settings|transfer setting]], you can pre-configure your preferred settings as [[ui_pref_transfer|default transfer settings]]. The script uses the default transfer settings as initial. | For [[transfer_settings|transfer setting]], you can pre-configure your preferred settings as [[ui_pref_transfer|default transfer settings]]. The script uses the default transfer settings as initial. | ||
| + | ==== Examples ==== | ||
| + | You can use INI file using following syntax: | ||
| For example, to configure changing case of filenames to lowercase during transfer, use following INI file: | For example, to configure changing case of filenames to lowercase during transfer, use following INI file: | ||
| <code ini> | <code ini> | ||
| [Configuration\Interface\CopyParam] | [Configuration\Interface\CopyParam] | ||
| + | ; File name case modification (1 = Upper case, 2 = Lower case, 4 = Lower case 8.3) | ||
| FileNameCase=2 | FileNameCase=2 | ||
| + | ; Transfer resume/Transfer to temporary file names (0 = All files, 1 = Files above threshold, 3 = Disabled) | ||
| + | ResumeSupport=0 | ||
| </code> | </code> | ||