Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Silence warning about unused variable |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2f72c1fbd2a066e50052c042569446a2 |
User & Date: | andygoth 2018-08-30 16:13:35 |
Context
2018-08-30
| ||
21:20 | Merge the email.c-to-alerts.c refactor. check-in: fc5c7d26 user: drh tags: trunk | |
16:13 | Silence warning about unused variable check-in: 2f72c1fb user: andygoth tags: trunk | |
16:05 | Add the ability to delete users to the /setup_uedit webpage. check-in: 1e5cdd35 user: drh tags: trunk | |
Changes
Changes to src/style.c.
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
static int needHrefJs = 0; /* href.js */
static int needSortJs = 0; /* sorttable.js */
static int needGraphJs = 0; /* graph.js */
/*
** Extra JS added to the end of the file.
*/
static Blob blobJs = BLOB_INITIALIZER;
static Blob blobOnLoad = BLOB_INITIALIZER;
/*
** Generate and return a anchor tag like this:
**
** <a href="URL">
** or <a id="ID">
|
< |
87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
static int needHrefJs = 0; /* href.js */ static int needSortJs = 0; /* sorttable.js */ static int needGraphJs = 0; /* graph.js */ /* ** Extra JS added to the end of the file. */ static Blob blobOnLoad = BLOB_INITIALIZER; /* ** Generate and return a anchor tag like this: ** ** <a href="URL"> ** or <a id="ID"> |