From 4908007842a1b73e8a69af5b644ba62cccd99001 Mon Sep 17 00:00:00 2001 From: Metabox Date: Thu, 3 Oct 2019 09:59:11 +1000 Subject: [PATCH] Config sections, bug fixes. --- Current Development Check List.md | 15 ++++++--------- htdocs/cgi-bin/config.cgi | 15 +++++++++++---- htdocs/cgi-bin/main.cgi | 4 ++-- 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/Current Development Check List.md b/Current Development Check List.md index 1ae2758..0889ca8 100644 --- a/Current Development Check List.md +++ b/Current Development Check List.md @@ -11,23 +11,18 @@ This version is not compatible in data structure to prior versions. Data migrati > i.e. $SESSN_EXPR, $RELEASE_VER, $TIME_ZONE, $LOG_PATH *✔ Dropdown for type of log amount (Mark as Expense). Default is Asset. Asset is neither, income or expense. - - *✔ Implement RTF Documents. > Useful as more document style formated details can be added instead of just plain text. - *✔ Preserve Search view selections. After edits and submit. > * ✔ Preserve from to date selections. > * ✔ Date View not working on Local entered date format. - *✔ Sum selected, income, expense, totals. -*✔ Sum on view. +✔ Sum on view. ## Urgent FIXES and Known Issuses ✔ Dynamic toggle of page sections, interaction fixed, bettered. ✔ View by Date - search not showing current month entries. - ✔ Fix Interaction jumping edits and creating new entries via now button. >✔ Fix some LTAGS not saved as LTags server side. @@ -45,8 +40,9 @@ This version is not compatible in data structure to prior versions. Data migrati ## New Features of Minor Relevance -* ✔ Config Export of Log and Categories to be provided as a button. -*Theme colours to be revisited, bettered. +* ✔ Config page, links on menu to sections. +* Theme colours to be revisited, bettered +* ✔ Config Export of Log and Categories to be provided as a button.. * ✔ Provide Exclude an Category View (if posible multiple categories). Should have option to session or not. * ✔ Provide Themes * Enable sticky log entries @@ -65,13 +61,14 @@ This version is not compatible in data structure to prior versions. Data migrati ## LifeLog RTF Documents using Quill Javascript RTF API -*✔ Separate JSON service page. +✔ Separate JSON service page. >* Provide for file attachments. > ✔ Display in log, read only RTF on click of button. > ✔ Uses compressed RTF Documents in a Notes tabe. >✔ Deletion of log, deletes the document. ## Bugs +* Bug - 08 CSV imports duplicate on DB Fix in config page. * Bug - 07, Editing and RTF entry, Dosen't strip the attached html to view in place. * ✔ Bug - 06, Invalid Time 00. Javascript error thrown, when 00am used. * ✔ Bug - 05, CRLF and apostrophe replacement not working. diff --git a/htdocs/cgi-bin/config.cgi b/htdocs/cgi-bin/config.cgi index d1b2301..866d32a 100755 --- a/htdocs/cgi-bin/config.cgi +++ b/htdocs/cgi-bin/config.cgi @@ -107,6 +107,13 @@ print qq(); @@ -333,9 +340,9 @@ my $frmPASS = qq( print qq(
$frm
-
$frmVars
-
$frmDB
-
$frmPASS
+
$frmVars
+
$frmDB
+
$frmPASS
 Configuration status -> $status 
@@ -766,7 +773,7 @@ try{ $dbs = $db->do("VACUUM;"); if($LOGOUT){ - &logout; + &logout; } diff --git a/htdocs/cgi-bin/main.cgi b/htdocs/cgi-bin/main.cgi index c7ffe60..51a143d 100755 --- a/htdocs/cgi-bin/main.cgi +++ b/htdocs/cgi-bin/main.cgi @@ -278,7 +278,7 @@ qq(
0){ - $stmt = $stmS . " ID_CAT!=$prm_xc"; + $stmt = $stmS . " ID_CAT!=$prm_xc" . $stmE; } if ($stmD) { $stmt = $stmS . $stmD . $stmE; @@ -290,7 +290,7 @@ qq(pre("### -> ".$stmt); + # print $cgi->pre("### -> ".$stmt); # my $tfId = 0; my $id = 0; -- 2.34.1