From 3cceed4af466d11e0735246bbd09f8451f6f9383 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Tue, 14 Apr 2020 15:48:25 -0400 Subject: cgi search form: path; theme; download remote src - config output path - dark theme - allow downloads flag for download of remote file cgi.d --- src/doc_reform/io_out/cgi_sqlite_search_form.d | 116 ++++++++++++++++--------- src/doc_reform/io_out/hub.d | 7 +- src/doc_reform/spine.d | 6 +- 3 files changed, 86 insertions(+), 43 deletions(-) (limited to 'src/doc_reform') diff --git a/src/doc_reform/io_out/cgi_sqlite_search_form.d b/src/doc_reform/io_out/cgi_sqlite_search_form.d index 4523c2d..7bfd5ef 100644 --- a/src/doc_reform/io_out/cgi_sqlite_search_form.d +++ b/src/doc_reform/io_out/cgi_sqlite_search_form.d @@ -521,44 +521,52 @@ void cgi_function_intro(Cgi cgi) { } body { height : 100vh; - background-color : #FFFFFF; + background-color : #%s; } body { - color : #000000; - background : #FFFFFF; - background-color : #FFFFFF; + color : #%s; + background : #%s; + background-color : #%s; } a:link { - color : #003399; + color : #%s; text-decoration : none; } a:visited { - color : #003399; + color : #%s; text-decoration : none; } a:hover { - color : #000000; - background-color : #F9F9AA; + color : #%s; + background-color : #%s; } a.lnkocn:link { - color : #777777; + color : #%s; text-decoration : none; } a.lnkocn:visited { - color : #32CD32; + color : #%s; text-decoration : none; } a.lnkocn:hover { - color : #777777; + color : #%s; font-size : 15px; } a:hover img { - background-color : #FFFFFF; + background-color : #%s; } a:active { - color : #003399; + color : #%s; text-decoration : underline; } + textarea { + color : #%s; + background-color : #%s; + } + span.match { + color : #%s; + background-color : #%s; + } p.norm { } p.i1 { padding-left : 1em; } p.i2 { padding-left : 2em; } @@ -991,7 +999,7 @@ void cgi_function_intro(Cgi cgi) {

- SiSU +
git @@ -1000,7 +1008,7 @@ void cgi_function_intro(Cgi cgi) {
- + ┃"); @@ -1116,7 +1124,7 @@ void cgi_function_intro(Cgi cgi) { %%s - + index @@ -1220,9 +1228,7 @@ void cgi_function_intro(Cgi cgi) { string highlight_text_matched(string _txt, string search_field) { string _mark_open = "┤"; string _mark_close = "├"; - string _span_yellow = ""; - string _span_red = ""; - string _span_blue = ""; + string _span_match = ""; string _span_close = ""; string _sf_str = search_field.strip.split("%%20").join(" ").strip; string[] _sf_arr = _sf_str.split(regex(r"\s+AND\s+|\s+OR\s+")); @@ -1242,13 +1248,13 @@ void cgi_function_intro(Cgi cgi) { )(m.hit, rgx_marked_pair) )(_txt, rgx_url); _txt = replaceAll!(m => - _span_yellow + _span_match ~ m["keep"] ~ _span_close )(_txt, rgx_marked_pair); } else { _txt = replaceAll!(m => - _span_yellow + _span_match ~ m.captures[0] ~ _span_close )(_txt, rgx_matched_text); @@ -1431,9 +1437,32 @@ LIMIT %%s OFFSET %%s mixin GenericMain!cgi_function_intro; ≓", _sqlite_db_fn, + (opt_action.css_theme_default) ? "FFFFFF" : "000000", + (opt_action.css_theme_default) ? "000000" : "CCCCCC", + (opt_action.css_theme_default) ? "FFFFFF" : "000000", + (opt_action.css_theme_default) ? "FFFFFF" : "000000", + (opt_action.css_theme_default) ? "003399" : "FFFFFF", + (opt_action.css_theme_default) ? "003399" : "999999", + "000000", + (opt_action.css_theme_default) ? "F9F9AA" : "555555", + (opt_action.css_theme_default) ? "777777" : "BBBBBB", + (opt_action.css_theme_default) ? "32CD32" : "9ACD32", + (opt_action.css_theme_default) ? "777777" : "BBBBBB", + (opt_action.css_theme_default) ? "FFFFFF" : "000000", + (opt_action.css_theme_default) ? "003399" : "888888", + (opt_action.css_theme_default) ? "000000" : "FFFFFF", + (opt_action.css_theme_default) ? "FFFFFF" : "777777", + (opt_action.css_theme_default) ? "000000" : "FFFF48", + (opt_action.css_theme_default) ? "FFFF48" : "777748", + (opt_action.css_theme_default) ? "222222" : "AAAAAA", _cgi_search_script, ).strip; - auto pth_sqlite_cgi = spinePathsSQLiteCGI!()(_cgi_search_script_raw_fn_d, _cgi_search_script, opt_action.output_dir_set); // TODO + string _cgi_path = (opt_action.output_dir_set.length > 0) + ? opt_action.output_dir_set + : (make_and_meta_struct.conf.w_srv_data_root_path.length > 0) + ? make_and_meta_struct.conf.w_srv_data_root_path + : ""; + auto pth_sqlite_cgi = spinePathsSQLiteCGI!()(_cgi_search_script_raw_fn_d, _cgi_search_script, _cgi_path); { // cgi-bin search form src d try { if (!exists(pth_sqlite_cgi.src)) { @@ -1461,6 +1490,8 @@ authors "Ralph Amissah" copyright "Copyright © 2020, Ralph Amissah" license "GPL-3.0+" dependency "d2sqlite3" version="%s" +dependency "arsd-official:cgi" version="%s" + subConfiguration "arsd-official:cgi" "cgi" targetType "executable" targetPath "./cgi-bin" mainSourceFile "%s" @@ -1471,6 +1502,7 @@ configuration "default" { } ≓", "~>0.18.3", // d2sqlite3 dependency version + "~>7.2.0", // arsd-official:cgi dependency version "src/" ~ _cgi_search_script_raw_fn_d, _cgi_search_script ).strip; @@ -1485,24 +1517,26 @@ configuration "default" { // Handle error } } - { // get cgi.d - import std.net.curl, std.stdio; - char[] cgi_d; - try { - cgi_d = get!HTTP("https://raw.githubusercontent.com/adamdruppe/arsd/master/cgi.d"); - } catch (ErrnoException ex) { - // Handle error - // CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError); - CurlCode perform(ThrowOnError throwOnError = No.throwOnError); - } - if (cgi_d && cgi_d.length > 0) { - try { - auto f = File(pth_sqlite_cgi.cgi_d_path_out, "w"); - f.write(cgi_d); - } catch (ErrnoException ex) { - // Handle error - } - } - } + // { // get cgi.d + // // import std.net.curl, std.stdio; + // // char[] cgi_d; + // // if (opt_action.allow_downloads) { + // // try { + // // cgi_d = get!HTTP("https://raw.githubusercontent.com/adamdruppe/arsd/master/cgi.d"); + // // } catch (ErrnoException ex) { + // // // Handle error + // // // CurlCode perform(ThrowOnError throwOnError = Yes.throwOnError); + // // CurlCode perform(ThrowOnError throwOnError = No.throwOnError); + // // } + // // if (cgi_d && cgi_d.length > 0) { + // // try { + // // auto f = File(pth_sqlite_cgi.cgi_d_path_out, "w"); + // // f.write(cgi_d); + // // } catch (ErrnoException ex) { + // // // Handle error + // // } + // // } + // // } + // } } } diff --git a/src/doc_reform/io_out/hub.d b/src/doc_reform/io_out/hub.d index 2220d33..729b569 100644 --- a/src/doc_reform/io_out/hub.d +++ b/src/doc_reform/io_out/hub.d @@ -150,7 +150,12 @@ template outputHubOp() { string _cgi_search_script_raw_fn_d = (opt_action.cgi_sqlite_search_filename_d.empty) ? config.conf.w_srv_cgi_search_script_raw_fn_d : opt_action.cgi_sqlite_search_filename_d; - auto pth_sqlite_cgi = spinePathsSQLiteCGI!()(_cgi_search_script_raw_fn_d, _cgi_search_script, opt_action.output_dir_set); + string _cgi_path = (opt_action.output_dir_set.length > 0) + ? opt_action.output_dir_set + : (config.conf.w_srv_data_root_path.length > 0) + ? config.conf.w_srv_data_root_path + : ""; + auto pth_sqlite_cgi = spinePathsSQLiteCGI!()(_cgi_search_script_raw_fn_d, _cgi_search_script, _cgi_path); writeln("sqlite cgi search form..."); writeln(" ", pth_sqlite_cgi.search_form_path_out); } diff --git a/src/doc_reform/spine.d b/src/doc_reform/spine.d index 53a4a5a..6d6d543 100755 --- a/src/doc_reform/spine.d +++ b/src/doc_reform/spine.d @@ -181,7 +181,8 @@ string program_name = "spine"; ]; auto helpInfo = getopt(args, std.getopt.config.passThrough, - "abstraction", "document abstraction ", &opts["abstraction"], + "abstraction", "document abstraction", &opts["abstraction"], + "allow-downloads", "allow downloads (includes cgi.d from github)", &opts["allow-downloads"], "assert", "set optional assertions on", &opts["assertions"], "cgi-search-form-codegen", "generates (pre-compiled) d code for search of specified db", &opts["cgi-search-form-codegen"], "cgi-sqlite-search-filename", "=[filename]", &settings["cgi-sqlite-search-filename"], @@ -252,6 +253,9 @@ string program_name = "spine"; } enum outTask { source_or_pod, sqlite, sqlite_multi, latex, odt, epub, html_scroll, html_seg, html_stuff } struct OptActions { + @trusted bool allow_downloads() { + return opts["allow-downloads"]; + } @trusted bool assertions() { return opts["assertions"]; } -- cgit v1.2.3