]> lifelog.hopto.org Git - LifeLog.git/commitdiff
updt.
authorWill Budic <redacted>
Wed, 5 Feb 2020 09:05:13 +0000 (20:05 +1100)
committerWill Budic <redacted>
Wed, 5 Feb 2020 09:05:13 +0000 (20:05 +1100)
.gitignore
CNF_Specs.md
Current Development Check List.md

index 440d59995272814ea11e37ccb08f49c43242cdb0..5f13caf9f114c27557fd5cb619aecd60a73745f2 100644 (file)
@@ -45,3 +45,5 @@ cgisess_*
 *.db
 *.swp
 
+log/thttpd.log
+.gitignore
index 1df1d77fc8af88e1dbd88a0272746e760773c09a..6393555787aee23d11e7e4797ad0b10f84a1e08a 100644 (file)
@@ -1,6 +1,5 @@
 # Configuration Network File Format Specifications
 
- Moon Stage v.1.0
 
 ## Introduction
 
@@ -8,6 +7,7 @@ This is a simple and fast file format. That allowes setting an network applicati
 SQL database structures and data. It is designed to accomodate an parser to read and parse CNF tags.
 These can be of three types, using an textual similar presentation.
 And are recognised as constants, anons and sqlites.
+
 ## CNF Formatting Rules
 
 * Text that isn't CNF tagged is ignored in the file and can be used as comments.
@@ -18,8 +18,11 @@ And are recognised as constants, anons and sqlites.
   * Constants are ususally scripted at the begining of the file, or parsed first in a separate file.
   * The instruction processor can use them if signifier $ surounds the constant name. Therefore, replacing it with the contants value if further found in the file.
 
+```HTML
         <<<CONST>$APP_PATH=~/MyApplication>>
         <<app_path>$APP_PATH$/module/main>>
+```
+
   * CNF Constant values can't be changed for th life of the application.
   * CNF Constant values can be changed in the file itself only.
 * A CNF Anon is to similar to constants but a more simpler property and value only pair.
@@ -27,8 +30,10 @@ And are recognised as constants, anons and sqlites.
   * Anon has no signifier.
   * Anon value is global to the application and its value can be modified.
 
+```HTML
         <<USE_SWITCH>true>>
         <<DIALOG_TITLE_EN>MyApplication Title>>
+```
 
 * CNF supports basic SQL Database structure statment generation. This is done via instruction based CNF tags. Named sqlites.
   * Supported is table, view, index and data creation statments.
@@ -39,18 +44,24 @@ And are recognised as constants, anons and sqlites.
 
 ### Property Value Tag
 
+```HTML
     <<{name}<{value}>>
+```
 
 ### Instruction Value Tag
 
+```HTML
     <<<{instruction}
     {value\n...valuen\n}>>
+```
 
 ### Full Tag
 
+```javascript
     <<{name}>{instruction}
         {value\n...value\n}
     >>
+```
 
 **Examples:**
 
@@ -106,6 +117,9 @@ And are recognised as constants, anons and sqlites.
 
 ***
 
+   Document is from project ->  <https://github.com/wbudic/LifeLog/>
+
+   An open source application.
 
+<center>Moon Stage - v.1.0 2020</center>
 
-     Project ->  <https://github.com/wbudic/LifeLog/>
index 557a876892d65d8e7d7b2ed8a5393275a2ad1132..79747cf9655539ef78dd369f82dafcd4ae7690a6 100644 (file)
@@ -1,4 +1,4 @@
-# Branch Development LifeLog in Perl - Sun Stage v. 1.8
+# Branch Development LifeLog in Perl
 
 *This page lists current development and issues being worked on in the LifeLog app. Being in the **Sun** stage, means there is a production environment. And usable, used. When, the project reaches **Earth** stage. It will be at its final specification. No data structures or major new features can be added or requested anymore. Only bug fixes, enhancements and efficiency fixes, if any at the **Earth** stage.*
 
@@ -29,7 +29,7 @@ This version is not compatible in data structure to prior versions. Data migrati
 ### v.1.6 and less
 
 * $CUR_MTH_SVIEW - Start view page is for current month, and the sticky set.
-* Some System settings to be stored in session. As these are  known even before logon.
+* &#10004; Some System settings to be stored in session. As these are  known even before logon.
   * i.e. $SESSN_EXPR, $RELEASE_VER, $TIME_ZONE, $LOG_PATH
 * &#10004; Various system setups, not dealing well with $ENV{'home'} in multi perl environment, releases.
 
@@ -39,8 +39,10 @@ This version is not compatible in data structure to prior versions. Data migrati
 * CVS Export and Import has not been implemented for RTF type log entries.
 &#10004; Dynamic toggle of page sections, interaction fixed, bettered.
 
-## New Features of Minor Relevance
+## Planned New Possible Features of Minor Relevance
 
+* Table sort in config system settings by variable name.
+* Enable automatic bold title heading for specified cattegories.
 * Theme colours to be revisited, bettered
 * Enable file attachment to log entries.
 * Enable Armour Mode
@@ -82,11 +84,13 @@ This version is not compatible in data structure to prior versions. Data migrati
 * &#10004; Bug - 04, Local not picked up properly on current date.
 * &#10004; Bug - 03, Keyword search not working on words as they are categorized wrongly by other dropdown in the background.
 * &#10004; Bug - 02, Record set paging to previous page not always working. Getting stuck.
-   * This occurs on new records placed in the far past. Complex problem.
+  * This occurs on new records placed in the far past. Complex problem.
 * &#10004; Bug - 01, date validation for proper entered time, there is no 24 h.
 
 ***
 
-     Checked (&#10004;) Are items that have been done and submitted to the branch.
+   Document is from project ->  <https://github.com/wbudic/LifeLog/>
 
-     Project ->  <https://github.com/wbudic/LifeLog/>
+   An open source application.
+
+<center>Sun Stage v.1.8 - 2020</center>