Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Oops, somehow one dash in `--file` got lost in 92d3fdba73a44c4c. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0bf2eaaf6528f5d3d90d45c9c0d09c07 |
| User & Date: | km 2023-01-06 14:27:58.222 |
Context
|
2023-01-07
| ||
| 15:36 | Add the ability to enable users to request an email message that contains a special secure hyperlink that they can follow to reset their password. check-in: 07bfe3fee3 user: drh tags: trunk | |
| 00:03 | Add the /resetpw web page. The name argument must contain a hash that proves knowledge of the old password and that limits the valid lifetime of the argument. check-in: ac86dfa085 user: drh tags: self-service-password-reset | |
|
2023-01-06
| ||
| 21:33 | Do not try to resolve the IP from the hostname when syncing using ssh:// protocol. Ssh may use the provided name as an alias defined in ~/.ssh/config which may not be resolvable or even resolve to an unrelated ip. This change can potentially avoid long timeout during name resolution failure. Equivalent to [52f08008e2790a81]. check-in: e5c5622d4b user: mgagnon tags: no_ssh_sync_ip_resolve | |
| 14:27 | Oops, somehow one dash in `--file` got lost in 92d3fdba73a44c4c. check-in: 0bf2eaaf65 user: km tags: trunk | |
| 14:25 | Minor adjustments in description of the `--file` option for `whatis`. check-in: 92d3fdba73 user: km tags: trunk | |
Changes
Changes to src/name.c.
| ︙ | ︙ | |||
1062 1063 1064 1065 1066 1067 1068 | ** ** Resolve the symbol NAME into its canonical artifact hash ** artifact name and provide a description of what role that artifact ** plays. ** ** Options: ** | | | 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 |
**
** Resolve the symbol NAME into its canonical artifact hash
** artifact name and provide a description of what role that artifact
** plays.
**
** Options:
**
** -f|--file Find artifacts with the same hash as file NAME.
** If NAME is "-", read content from standard input.
** --type TYPE Only find artifacts of TYPE (one of: 'ci', 't',
** 'w', 'g', or 'e')
** -v|--verbose Provide extra information (such as the RID)
*/
void whatis_cmd(void){
int verboseFlag;
|
| ︙ | ︙ |