-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Advanced UI implementarion ready for testing
Implements requests from issue #13
- Loading branch information
Showing
6 changed files
with
158 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,7 @@ button.btn { | |
fill: contrast(@main-color); | ||
width: 22px; | ||
float: left; | ||
margin-right: 5px; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
export default [ | ||
{ | ||
name: 'reconnect', | ||
type: 'bool', | ||
description: 'Reconnect to server' | ||
}, | ||
{ | ||
name: 'delay_connect', | ||
type: 'bool', | ||
description: 'Delay connection to server' | ||
}, | ||
{ | ||
name: 'sshfs_sync', | ||
type: 'bool', | ||
description: 'Synchronous writes' | ||
}, | ||
{ | ||
name: 'no_readahead', | ||
type: 'bool', | ||
description: 'Synchronous reads (no speculative readahead)' | ||
}, | ||
{ | ||
name: 'sshfs_debug', | ||
type: 'bool', | ||
description: 'Print some debugging information' | ||
}, | ||
{ | ||
name: 'cache', | ||
type: 'string', | ||
description: 'Enable caching {yes,no} (default: yes)' | ||
}, | ||
{ | ||
name: 'cache_timeout', | ||
type: 'number', | ||
description: 'Sets timeout for caches in seconds (default: 20)' | ||
}, | ||
{ | ||
name: 'cache_stat_timeout', | ||
type: 'number', | ||
description: 'Sets timeout for stat cache' | ||
}, | ||
{ | ||
name: 'cache_dir_timeout', | ||
type: 'number', | ||
description: 'Sets timeout for dir cache' | ||
}, | ||
{ | ||
name: 'cache_link_timeout', | ||
type: 'number', | ||
description: 'Sets timeout for link cache' | ||
}, | ||
{ | ||
name: 'workaround', | ||
type: 'string', | ||
description: 'Colon separated list of workarounds' | ||
}, | ||
{ | ||
name: 'idmap', | ||
type: 'string', | ||
description: 'User/group ID mapping' | ||
}, | ||
{ | ||
name: 'oidfile', | ||
type: 'string', | ||
description: 'File containing username:uid mappings for idmap=file' | ||
}, | ||
{ | ||
name: 'gidfile', | ||
type: 'string', | ||
description: 'File containing groupname:gid mappings for idmap=file' | ||
}, | ||
{ | ||
name: 'nomap', | ||
type: 'string', | ||
description: 'With idmap=file, how to handle missing mappings' | ||
}, | ||
{ | ||
name: 'ssh_command', | ||
type: 'string', | ||
description: 'Execute CMD instead of "ssh"' | ||
}, | ||
{ | ||
name: 'ssh_protocol', | ||
type: 'string', | ||
description: 'SSH protocol to use (default: 2)' | ||
}, | ||
{ | ||
name: 'sftp_server', | ||
type: 'string', | ||
description: 'Path to SFTP server or subsystem (default: sftp)' | ||
}, | ||
{ | ||
name: 'directport', | ||
type: 'number', | ||
description: 'Directly connect to port bypassing SSH -o slave communicate over stdin and stdout bypassing network' | ||
}, | ||
{ | ||
name: 'transform_symlinks', | ||
type: 'bool', | ||
description: 'Transform absolute symlinks to relative' | ||
}, | ||
{ | ||
name: 'follow_symlinks', | ||
type: 'bool', | ||
description: 'Follow symlinks on the server' | ||
}, | ||
{ | ||
name: 'no_check_root', | ||
type: 'bool', | ||
description: 'Don\'t check for existence of "dir" on server' | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters