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 /org/out_xmls.org | |
parent | cgi.d track changes by Adam Ruppe (diff) |
search, simplify & remove un-implemented features
Diffstat (limited to 'org/out_xmls.org')
-rw-r--r-- | org/out_xmls.org | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/org/out_xmls.org b/org/out_xmls.org index db3f0e5..da5b640 100644 --- a/org/out_xmls.org +++ b/org/out_xmls.org @@ -264,18 +264,21 @@ import <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 { |