Fossil

Check-in [341a31c6]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the action= on the Admin/Wiki setup page.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 341a31c6a382905169c3b0bde0521c2e1cbb17cbf438724b5a23020a0e51dc81
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: 56023854 user: drh tags: trunk)
2018-12-30
23:28
Fix the action= on the Admin/Wiki setup page. ... (check-in: 341a31c6 user: drh tags: trunk)
00:29
NetBSD wants a header for isspace() ... (check-in: ae62c08c user: bch tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/setup.c.
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_config" 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







|







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