This commit is contained in:
2021-09-10 20:34:51 +00:00
parent 5fb3285b26
commit 60d3dc97d8
2 changed files with 22 additions and 31 deletions

View File

@@ -24,7 +24,7 @@
DONE: keep the one setting for global that affects filtering only
make it apply to all filter ops (picklists and datalistfilters)
DONE: global filter case sensitive setting translated to say "filter" not "search"
todo: add locale settings of db server to log / support info ("show lc_collate" - Shows the collation order locale and "show lc_ctype" Shows the character classification and case conversion locale)
DONE: add locale settings of db server to log / support info ("show lc_collate" - Shows the collation order locale and "show lc_ctype" Shows the character classification and case conversion locale)
todo: help docs specific page about db collation ("sorting") and case sensitivity etc
How AyaNova does case insensitive matching
How AyaNova does collation (db server specific)
@@ -741,3 +741,6 @@ BUILD 130 CHANGES OF NOTE
- UI Menu all reportable pages: now have an additional menu option under Reports which is a quick access link to the most recent report used for that form on that browser
- Global settings: fixed issue where changing global settings was not updating the server's local cached copy of global settings so some things dependant on that wouldn't take effect unless server was restarted
- case 3965 case sensitivity in data table filters: several changes see case
- Ops->View server configuration: re-translated to "Server information", added detailed DB server parameter block for future troubleshooting purposes
- Server log: added detailed db server parameters to log when logging set to debug mode

View File

@@ -3,6 +3,7 @@
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
<v-col cols="12" md="7">
<v-card data-cy="configCard">
<v-subheader>AyaNova server settings</v-subheader>
<v-list two-line>
<v-list-item>
<v-list-item-content>
@@ -98,38 +99,25 @@
</v-list-item-content>
</v-list-item>
<v-divider class="mt-6"></v-divider>
<v-subheader>Server Environment</v-subheader>
<div v-for="(value, name) in config.booT_DIAGNOSTIC_INFO" :key="name">
<span class="ml-6 body-1">{{ name }}: </span>
<span class="body-2">{{ value }}</span>
<div>
<v-divider class="mt-6"></v-divider>
<v-subheader>Server Environment</v-subheader>
<div v-for="(value, name, index) in config.serverinfo" :key="index">
<span class="ml-6 body-1">{{ name }}: </span>
<span class="body-2">{{ value }}</span>
</div>
</div>
<v-divider class="mt-6"></v-divider>
<v-subheader>DB Server</v-subheader>
<div
v-for="(value, name) in config.DBSERVER_DIAGNOSTIC_INFO"
:key="name"
>
<span class="ml-6 body-1">{{ name }}: </span>
<span class="body-2">{{ value }}</span>
<div>
<v-divider class="mt-6"></v-divider>
<v-subheader>DB Server parameters</v-subheader>
<div
v-for="(value, name, index) in config.dbserverinfo"
:key="index"
>
<span class="ml-6 body-1">{{ name }}: </span>
<span class="body-2">{{ value }}</span>
</div>
</div>
<!-- {
"booT_DIAGNOSTIC_INFO": {
"OS": "Microsoft Windows NT 10.0.19043.0",
"Machine": "JOHNTHINKPADRED",
"User": "cardj",
".Net Version": "5.0.9",
"CPU count": "4",
"AyaNova server boot local time": "2021-09-07T13:17:02",
"Server up time": "00:01:07.7235937",
"TimeZone": "(UTC-08:00) Pacific Time (US & Canada)",
"RAM": "11.886 GiB",
"Backup file space": "89.789 GiB",
"Attachements file space": "89.789 GiB"
}
} -->
</v-list>
</v-card>
</v-col>