Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | In the "fossil info -v" command, sort the access-url and check-out fields by date, not by name. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
12ab581fdac0c7d81b53f5c293e69c06 |
| User & Date: | drh 2017-05-12 15:11:46.081 |
Context
|
2017-05-12
| ||
| 16:22 | Fix an XSS issue with the /help webpage. ... (check-in: db482f1675 user: drh tags: trunk) | |
| 15:11 | In the "fossil info -v" command, sort the access-url and check-out fields by date, not by name. ... (check-in: 12ab581fda user: drh tags: trunk) | |
| 14:11 | In the hyperlink on the "Last Sync URL", omit the username to prevent warnings from Firefox. ... (check-in: 172c2235a4 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
128 129 130 131 132 133 134 |
** Print information about the URLs used to access a repository and
** checkouts in a repository.
*/
static void extraRepoInfo(void){
Stmt s;
db_prepare(&s, "SELECT substr(name,7), date(mtime,'unixepoch')"
" FROM config"
| | | | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
** Print information about the URLs used to access a repository and
** checkouts in a repository.
*/
static void extraRepoInfo(void){
Stmt s;
db_prepare(&s, "SELECT substr(name,7), date(mtime,'unixepoch')"
" FROM config"
" WHERE name GLOB 'ckout:*' ORDER BY mtime DESC");
while( db_step(&s)==SQLITE_ROW ){
const char *zName;
const char *zCkout = db_column_text(&s, 0);
if( g.localOpen ){
if( fossil_strcmp(zCkout, g.zLocalRoot)==0 ) continue;
zName = "alt-root:";
}else{
zName = "check-out:";
}
fossil_print("%-11s %-54s %s\n", zName, zCkout,
db_column_text(&s, 1));
}
db_finalize(&s);
db_prepare(&s, "SELECT substr(name,9), date(mtime,'unixepoch')"
" FROM config"
" WHERE name GLOB 'baseurl:*' ORDER BY mtime DESC");
while( db_step(&s)==SQLITE_ROW ){
fossil_print("access-url: %-54s %s\n", db_column_text(&s, 0),
db_column_text(&s, 1));
}
db_finalize(&s);
}
|
| ︙ | ︙ |