Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the default page for the "fossil ui" command to the new /ckout page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
db2f309787b18b1798081604bee4f171 |
| User & Date: | drh 2024-12-10 16:57:20.853 |
Context
|
2024-12-10
| ||
| 18:18 | Try to always use /ckout as the start page for "fossil ui" invocations, even on remote hosts, unless something else is specified by the user. ... (check-in: 58849c4098 user: drh tags: trunk) | |
| 16:57 | Change the default page for the "fossil ui" command to the new /ckout page. ... (check-in: db2f309787 user: drh tags: trunk) | |
| 13:13 | Add an "unprotect()" call to /ckout so that it can see that files have changed and update the vfile table appropriately. Updates to diff command-line parser comments to mention all the latest options. ... (check-in: a2a0390cbf user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
3383 3384 3385 3386 3387 3388 3389 |
allowRepoList = 1;
}
if( !zRemote ){
find_server_repository(findServerArg, fCreate);
}
if( zInitPage==0 ){
if( isUiCmd && g.localOpen ){
| | | 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 |
allowRepoList = 1;
}
if( !zRemote ){
find_server_repository(findServerArg, fCreate);
}
if( zInitPage==0 ){
if( isUiCmd && g.localOpen ){
zInitPage = "ckout";
}else{
zInitPage = "";
}
}
if( zPort ){
if( strchr(zPort,':') ){
int i;
|
| ︙ | ︙ |