Check-in [b2b373ff17]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update help for "fossil ui" to more closely match the behavior in the code.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b2b373ff17e3bfb9c6bb7649dae7cb5dc2aa7c4757e18d7a9b30a1d919e97296
User & Date: andybradford 2024-02-08 15:10:58.488
Context
2024-02-08
17:52
Performance and display improvements in /timeline for the use of bt= and ft= query parameters with from=. check-in: c651369ce3 user: drh tags: trunk
15:18
Update Pikchr to the experimental version that supports the "diamond" primitive. Closed-Leaf check-in: 7b4ab46a2c user: drh tags: pikchr-diamond
15:10
Update help for "fossil ui" to more closely match the behavior in the code. check-in: b2b373ff17 user: andybradford tags: trunk
14:03
In the /timeline page, add support for (from,ft) and (from,bt) query parameter pairs. check-in: 793c492415 user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/main.c.
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073


3074
3075
3076
3077
3078
3079
3080
** This only works for the "fossil ui" command, not the "fossil server"
** command.
**
** If REPOSITORY begins with a "HOST:" or "USER@HOST:" prefix, then
** the command is run on the remote host specified and the results are
** tunneled back to the local machine via SSH.  This feature only works for
** the "fossil ui" command, not the "fossil server" command.  The name of the
** fossil executable on the remote host is specified by the --fossilcmd option,
** or if there is no --fossilcmd, it first tries "$HOME/bin/fossil" and if
** not found there it searches for any executable named "fossil" on the
** default $PATH set by SSH on the remote.


**
** REPOSITORY may also be a directory (aka folder) that contains one or
** more repositories with names ending in ".fossil".  In this case, a
** prefix of the URL pathname is used to search the directory for an
** appropriate repository.  To thwart mischief, the pathname in the URL must
** contain only alphanumerics, "_", "/", "-", and ".", and no "-" may
** occur after "/", and every "." must be surrounded on both sides by







|
|
<
|
>
>







3063
3064
3065
3066
3067
3068
3069
3070
3071

3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
** This only works for the "fossil ui" command, not the "fossil server"
** command.
**
** If REPOSITORY begins with a "HOST:" or "USER@HOST:" prefix, then
** the command is run on the remote host specified and the results are
** tunneled back to the local machine via SSH.  This feature only works for
** the "fossil ui" command, not the "fossil server" command.  The name of the
** fossil executable on the remote host is specified by the --fossilcmd
** option, or if there is no --fossilcmd, it first tries "fossil" and if it

** is not found in the default $PATH set by SSH on the remote, it then adds
** "$HOME/bin:/usr/local/bin:/opt/homebrew/bin" to the PATH and tries again to
** run "fossil".
**
** REPOSITORY may also be a directory (aka folder) that contains one or
** more repositories with names ending in ".fossil".  In this case, a
** prefix of the URL pathname is used to search the directory for an
** appropriate repository.  To thwart mischief, the pathname in the URL must
** contain only alphanumerics, "_", "/", "-", and ".", and no "-" may
** occur after "/", and every "." must be surrounded on both sides by