This commit is contained in:
2021-09-10 20:34:51 +00:00
parent 8cf8188ff9
commit b32c53da93
13 changed files with 69 additions and 38 deletions

View File

@@ -190,8 +190,8 @@ namespace AyaNova.Api.Controllers
AYANOVA_LOG_PATH = ServerBootConfig.AYANOVA_LOG_PATH,
AYANOVA_LOG_LEVEL = ServerBootConfig.AYANOVA_LOG_LEVEL,
AYANOVA_LOG_ENABLE_LOGGER_DIAGNOSTIC_LOG = ServerBootConfig.AYANOVA_LOG_ENABLE_LOGGER_DIAGNOSTIC_LOG,
BOOT_DIAGNOSTIC_INFO = ServerBootConfig.BOOT_DIAGNOSTIC_INFO,
DBSERVER_DIAGNOSTIC_INFO = ServerBootConfig.DBSERVER_DIAGNOSTIC_INFO
serverinfo = ServerBootConfig.BOOT_DIAGNOSTIC_INFO,
dbserverinfo = ServerBootConfig.DBSERVER_DIAGNOSTIC_INFO
}));
}

View File

@@ -102,7 +102,7 @@ namespace AyaNova.DataList
////////////////////////////////////////////////////////////////////////
//
/// <summary>
/// Translate DataFilter to Postgres friendly SQL criteria
/// Translate DataFilter to PostgreSQL friendly SQL criteria
/// </summary>
private static string DataFilterToColumnCriteria(string SqlColumnNameToFilter, UiFieldDataType DataType, string sOperator, string sValue, DateTimeOffset clientTimeStamp)
{
@@ -908,7 +908,7 @@ namespace AyaNova.DataList
////////////////////////////////////////////////////////////////////////
//
/// <summary>
/// Translate TAG DataFilter to Postgres friendly SQL criteria
/// Translate TAG DataFilter to PostgreSQL friendly SQL criteria
/// </summary>
private static string TagDataFilterToColumnCriteria(string SqlColumnNameToFilter, string sOperator, string sValue)
{
@@ -1029,7 +1029,7 @@ namespace AyaNova.DataList
/// <summary>
/// Postgres compatible date format
/// PostgreSQL compatible date format
/// https://www.postgresql.org/docs/current/datatype-datetime.html#DATATYPE-DATETIME-DATE-TABLE
/// </summary>
/// <returns></returns>

View File

@@ -570,7 +570,7 @@ namespace AyaNova
_newLog.LogInformation("Database server version - {0}", dbServerVersionInfo);
//db server extended parameters
_newLog.LogInformation("Database server runtime parameters - {0}", string.Join(Environment.NewLine, dbServerRunTimeParameters));
_newLog.LogDebug($"Database server runtime parameters{Environment.NewLine}{string.Join(Environment.NewLine, dbServerRunTimeParameters)}");
ServerBootConfig.DBSERVER_DIAGNOSTIC_INFO.Add("DB SERVER", dbServerVersionInfo);
foreach (var p in dbServerRunTimeParameters)

View File

@@ -2078,7 +2078,7 @@
"LargeLogo": "Großes Logo",
"ShutDownServer": "Server herunterfahren",
"AreYouSureShutDown": "Sind Sie sicher, dass Sie den Server herunterfahren möchten?",
"ViewServerConfiguration": "Konfiguration anzeigen",
"ViewServerConfiguration": "Serverinformation",
"UpdateAvailable": "Update ist verfügbar. Jetzt installieren?",
"DropFilesHere": "Dateien hier ablegen",
"First": "Zuerst",

View File

@@ -2078,7 +2078,7 @@
"LargeLogo": "Large sized logo",
"ShutDownServer": "Shut down server",
"AreYouSureShutDown": "Are you certain you want to shut down the server?",
"ViewServerConfiguration": "View server configuration",
"ViewServerConfiguration": "Server information",
"UpdateAvailable": "Update is available. Install it now?",
"DropFilesHere": "Drop files here",
"First": "First",

View File

@@ -2078,7 +2078,7 @@
"LargeLogo": "Logotipo de gran tamaño",
"ShutDownServer": "Apagar el servidor",
"AreYouSureShutDown": "¿Estás segura de que quieres cerrar el servidor?",
"ViewServerConfiguration": "Ver configuración",
"ViewServerConfiguration": "Información del servidor",
"UpdateAvailable": "Actualización disponible. ¿Instalarlo ahora?",
"DropFilesHere": "Suelta los archivos aquí",
"First": "Primero",

View File

@@ -2078,7 +2078,7 @@
"LargeLogo": "Logo de grande taille",
"ShutDownServer": "Arrêter le serveur",
"AreYouSureShutDown": "Êtes-vous certain de vouloir arrêter le serveur?",
"ViewServerConfiguration": "Afficher la configuration",
"ViewServerConfiguration": "Informations sur le serveur",
"UpdateAvailable": "La mise à jour est disponible. Installez-le maintenant?",
"DropFilesHere": "Déposez les fichiers ici",
"First": "Première",

View File

@@ -45,7 +45,7 @@ namespace AyaNova.Util
{
return new DateTime(5555, 1, 1);
//Was going to use MaxValue but apparently that varies depending on culture
// and Postgres has issues with year 1 as it interprets as year 2001
// and PostgreSQL has issues with year 1 as it interprets as year 2001
// so to be on safe side just defining one for all usage
}
}
@@ -74,7 +74,7 @@ namespace AyaNova.Util
{
return DateTime.Now.ToString("s");
//Was going to use MaxValue but apparently that varies depending on culture
// and Postgres has issues with year 1 as it interprets as year 2001
// and PostgreSQL has issues with year 1 as it interprets as year 2001
// so to be on safe side just defining one for all usage
}
}