Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the computation of capabilities in the "Capability Summary" report so that it ignores the special users "nobody", "anonymous", "reader", and "developer". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
63febeb7f4229aff7918a92ca9d37447 |
User & Date: | drh 2019-04-23 13:50:30.141 |
Context
2019-04-24
| ||
12:59 | Preserve the basis-file suffix when generating temporary file names. ... (check-in: a072be1e user: drh tags: trunk) | |
2019-04-23
| ||
13:50 | Fix the computation of capabilities in the "Capability Summary" report so that it ignores the special users "nobody", "anonymous", "reader", and "developer". ... (check-in: 63febeb7 user: drh tags: trunk) | |
13:16 | Updates to the "fossil git export" documentation. ... (check-in: 1c15ebf8 user: drh tags: trunk) | |
Changes
Changes to src/capabilities.c.
︙ | ︙ | |||
362 363 364 365 366 367 368 | "('developer',4))" " SELECT id, fullcap(user.cap),seq,1" " FROM t LEFT JOIN user ON t.id=user.login" " UNION ALL" " SELECT 'New User Default', fullcap(%Q), 10, 1" " UNION ALL" " SELECT 'Regular User', fullcap(capunion(cap)), 20, count(*) FROM user" | | | 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | "('developer',4))" " SELECT id, fullcap(user.cap),seq,1" " FROM t LEFT JOIN user ON t.id=user.login" " UNION ALL" " SELECT 'New User Default', fullcap(%Q), 10, 1" " UNION ALL" " SELECT 'Regular User', fullcap(capunion(cap)), 20, count(*) FROM user" " WHERE cap NOT GLOB '*[as]*' AND login NOT IN (SELECT id FROM t)" " UNION ALL" " SELECT 'Adminstrator', fullcap(capunion(cap)), 30, count(*) FROM user" " WHERE cap GLOB '*[as]*'" " ORDER BY 3 ASC", db_get("default-perms","") ); @ <table id='capabilitySummary' cellpadding="0" cellspacing="0" border="1"> |
︙ | ︙ |