Changes between Version 2 and Version 3 of help/en/howto/preferences
- Timestamp:
- Jul 28, 2008 1:37:44 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
help/en/howto/preferences
v2 v3 10 10 Files can be transfered using either the connection from the browser or by opening a new dedicated transfer connection. Using the setting 'Open new connection' will add files to be transferred to the Transfer Window and open a new connection to the server to initiate the transfer. The option 'Use browser connection' will transfer files using the connection from the browser. The file transfer is only reported at the bottom of the browser window without any detailed progress indicator. The transferred files will not get added to the Transfer Window. 11 11 This setting is a also available per [wiki:help/en/howto/bookmarks bookmark]. 12 13 === Transfers → Advanced === 14 Files can be globaly excluded from uploads or downloads if they match a given regular expression. Standard PERL regular expressions are used, see Google for more help. The most important qualifiers are: 15 {{{ 16 . Any character 17 \d A digit: [0-9] 18 \D A non-digit: [^0-9] 19 \s A whitespace character: [ \t\n\x0B\f\r] 20 \S A non-whitespace character: [^\s] 21 \w A word character: [a-zA-Z_0-9] 22 \W A non-word character: [^\w] 23 Logical operators 24 XY X followed by Y 25 X|Y Either X or Y 26 Greedy quantifiers 27 X? X, once or not at all 28 X* X, zero or more times 29 X+ X, one or more times 30 }}}