Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the action= on the Admin/Wiki setup page. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
341a31c6a382905169c3b0bde0521c2e |
| User & Date: | drh 2018-12-30 23:28:36.300 |
Context
|
2018-12-31
| ||
| 20:10 | Allow wiki pages with names like "branch/BRANCH", "checkin/HASH", and "tag/TAGNAME" to automatically link to displays of the corresponding branch, checkin, or tag. check-in: 5602385493 user: drh tags: trunk | |
|
2018-12-30
| ||
| 23:28 | Fix the action= on the Admin/Wiki setup page. check-in: 341a31c6a3 user: drh tags: trunk | |
| 00:29 | NetBSD wants a header for isspace() check-in: ae62c08cbe user: bch tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
936 937 938 939 940 941 942 |
if( !g.perm.Setup ){
login_needed(0);
return;
}
style_header("Wiki Configuration");
db_begin_transaction();
| | | 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 |
if( !g.perm.Setup ){
login_needed(0);
return;
}
style_header("Wiki Configuration");
db_begin_transaction();
@ <form action="%s(g.zTop)/setup_wiki" method="post"><div>
login_insert_csrf_secret();
@ <input type="submit" name="submit" value="Apply Changes" /></p>
@ <hr />
onoff_attribute("Enable WYSIWYG Wiki Editing",
"wysiwyg-wiki", "wysiwyg-wiki", 0, 0);
@ <p>Enable what-you-see-is-what-you-get (WYSIWYG) editing of wiki pages.
@ The WYSIWYG editor generates HTML instead of markup, which makes
|
| ︙ | ︙ |