Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor /wikiedit layout improvements and removed the probably-obvious '?' button from the auto-refresh checkbox. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f83c4fa41d920293a714d909ce367aed |
| User & Date: | stephan 2020-08-29 14:22:17.155 |
Context
|
2020-08-30
| ||
| 06:05 | Add db_unprotect()/db_protect_pop() to /setup_skin_admin when the user selects one of the builtin skins to fix problem reported at [https://fossil-scm.org/forum/forumpost/72a1db2bdc | /forumpost/72a1db2bdc]. check-in: 37c290597d user: stephan tags: trunk | |
|
2020-08-29
| ||
| 14:22 | Minor /wikiedit layout improvements and removed the probably-obvious '?' button from the auto-refresh checkbox. check-in: f83c4fa41d user: stephan tags: trunk | |
| 14:07 | Plugged a leaky abstraction in wikiedit and fileedit which applied when connecting a 3rd-party editor widget and added an example of how to plug in TinyMCE to the fileedit docs. check-in: 88703f001d user: stephan tags: trunk | |
Changes
Changes to src/wiki.c.
| ︙ | |||
1159 1160 1161 1162 1163 1164 1165 | 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 | + - + + - - - + + |
/******* Content tab *******/
{
CX("<div id='wikiedit-tab-content' "
"data-tab-parent='wikiedit-tabs' "
"data-tab-label='Editor' "
"class='hidden'"
">");
CX("<div class='"
|
| ︙ | |||
1227 1228 1229 1230 1231 1232 1233 | 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 | - - - - + - - + + + |
/* ^^^ dest elem ID */
">Refresh</button>");
/* Toggle auto-update of preview when the Preview tab is selected. */
CX("<div class='input-with-label'>"
"<input type='checkbox' value='1' "
"id='cb-preview-autorefresh' checked>"
"<label for='cb-preview-autorefresh'>Auto-refresh?</label>"
|
| ︙ |