diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-03-31 11:19:24 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-20 11:27:25 -0400 |
commit | e0354c367e309248d7c2bf613750417ce915f9b9 (patch) | |
tree | 4a2e21b6c47ea628bee5a4e9d945c0f68dba463d /src/doc_reform/io_out/xmls.d | |
parent | cgi.d track changes by Adam Ruppe (diff) |
search, simplify & remove un-implemented features
Diffstat (limited to 'src/doc_reform/io_out/xmls.d')
-rw-r--r-- | src/doc_reform/io_out/xmls.d | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/doc_reform/io_out/xmls.d b/src/doc_reform/io_out/xmls.d index fb33fd0..7649d40 100644 --- a/src/doc_reform/io_out/xmls.d +++ b/src/doc_reform/io_out/xmls.d @@ -161,18 +161,21 @@ template outputXHTMLs() { <a name="search"></a> <form action="%s" target="_top" method="POST" accept-charset="UTF-8" id="search"> <font size="2"> - <input type="text" name="sf" size="24" maxlength="255" /> - <input type="hidden" name="db" value="%s" /> - <input type="hidden" name="sml" value="1000" /> - <input type="hidden" name="ec" value="on" /> - <input type="hidden" name="url" value="on" /> + <input type="text" name="sf" size="24" maxlength="255">%s + <input type="hidden" name="sml" value="1000"> + <input type="hidden" name="ec" value="on"> + <input type="hidden" name="url" value="on"> <button type="submit" form="search" name="fn" value="%s">doc</button> <button type="submit" form="search">db</button> </font></form> <!-- SiSU Spine Search --> </div>┃", doc_matters.conf_make_meta.conf.w_srv_cgi_action, - doc_matters.conf_make_meta.conf.w_srv_db_sqlite, + (doc_matters.conf_make_meta.conf.w_srv_db_sqlite.empty) + ? "" + : "\n <input type=\"hidden\" name=\"db\" value=\"" + ~ doc_matters.conf_make_meta.conf.w_srv_db_sqlite + ~ "\">", doc_matters.src.filename_base, ); } else { |