Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improved help message for the /mlink page |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
bf94ffa00994355a83945ef8f9206993 |
| User & Date: | drh 2017-10-06 16:36:52.292 |
Context
|
2017-10-10
| ||
| 23:08 | Fix the on-line help for the pgo-command and gdiff-command settings. check-in: 7aad2af7d3 user: drh tags: trunk | |
|
2017-10-06
| ||
| 16:36 | Improved help message for the /mlink page check-in: bf94ffa009 user: drh tags: trunk | |
|
2017-10-05
| ||
| 11:41 | Only show hyperlinks to the /mlink page to admin users. check-in: dead084ee5 user: drh tags: trunk | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
594 595 596 597 598 599 600 | /* ** WEBPAGE: mlink ** URL: /mlink?name=FILENAME ** URL: /mlink?ci=NAME ** ** Show all MLINK table entries for a particular file, or for | | > > | > > > > | 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 |
/*
** WEBPAGE: mlink
** URL: /mlink?name=FILENAME
** URL: /mlink?ci=NAME
**
** Show all MLINK table entries for a particular file, or for
** a particular check-in.
**
** This screen is intended for use by Fossil developers to help
** in debugging Fossil itself. Ordinary Fossil users are not
** expected to know what the MLINK table is or why it is important.
**
** To avoid confusing ordinary users, this page is only available
** to adminstrators.
*/
void mlink_page(void){
const char *zFName = P("name");
const char *zCI = P("ci");
Stmt q;
login_check_credentials();
|
| ︙ | ︙ |