Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | In the /winfo view (/info/WIKI_ARTIFACT_ID), honor the timeline-utc configuration flag, per request in [forum:7e7219e59120b2db]. Though that setting is ostensibly only for the timeline, it seems to be used just about where except where times are explicitly labeled as UTC. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
17ebe42d6183ed601599632b8d3a7ebe |
| User & Date: | stephan 2022-06-10 14:11:28.867 |
References
|
2022-07-02
| ||
| 20:05 | Honor 'timeline-utc' setting while rendering of <code>/wdiff</code> pages. This is similar to [17ebe42d6183ed]. ... (check-in: 46de798a6a user: george tags: trunk) | |
Context
|
2022-06-10
| ||
| 14:12 | Minor /pikchrshow CSS cleanups. ... (check-in: 864ed8d0a3 user: stephan tags: trunk) | |
| 14:11 | In the /winfo view (/info/WIKI_ARTIFACT_ID), honor the timeline-utc configuration flag, per request in [forum:7e7219e59120b2db]. Though that setting is ostensibly only for the timeline, it seems to be used just about where except where times are explicitly labeled as UTC. ... (check-in: 17ebe42d61 user: stephan tags: trunk) | |
|
2022-06-09
| ||
| 09:12 | build.wiki: added a note about minimum emcc version and notes about using alternatives to Emscripten. ... (check-in: f7d53fa82a user: stephan tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
986 987 988 989 990 991 992 |
}
if( strcmp(zModAction,"approve")==0 ){
moderation_approve('w', rid);
}
}
style_header("Update of \"%h\"", pWiki->zWikiTitle);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
| | | 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 |
}
if( strcmp(zModAction,"approve")==0 ){
moderation_approve('w', rid);
}
}
style_header("Update of \"%h\"", pWiki->zWikiTitle);
zUuid = db_text(0, "SELECT uuid FROM blob WHERE rid=%d", rid);
zDate = db_text(0, "SELECT datetime(%.17g,toLocal())", pWiki->rDate);
style_submenu_element("Raw", "%R/artifact/%s", zUuid);
style_submenu_element("History", "%R/whistory?name=%t", pWiki->zWikiTitle);
style_submenu_element("Page", "%R/wiki?name=%t", pWiki->zWikiTitle);
login_anonymous_available();
@ <div class="section">Overview</div>
@ <p><table class="label-value">
@ <tr><th>Artifact ID:</th>
|
| ︙ | ︙ |