From 1d74ba438b47a23ec5746494e284e93c4d2d5f35 Mon Sep 17 00:00:00 2001 From: hahn <hahn@AAE49.campus.unibe.ch> Date: Fri, 28 Mar 2014 14:38:50 +0100 Subject: [PATCH] - added: comparison of lang texts - project class: removed a hardcoded variable - project overview: no tabs (was not handy) - added: logging project actions - added .htkeep in database directory; excluded log.db - added class actionlog to class documentation --- config/lang/de.json | 1 + config/lang/en.json | 1 + public_html/deployment/pages/act_doc.php | 1 + public_html/deployment/pages/act_overview.php | 2 ++ 4 files changed, 5 insertions(+) diff --git a/config/lang/de.json b/config/lang/de.json index e8114eeb..d7f7e1dc 100644 --- a/config/lang/de.json +++ b/config/lang/de.json @@ -153,6 +153,7 @@ "page-doc-error-class-not-configured": "Die Doku kann nicht angezeigt werden. Eine Klasse namens [%s] wurde in [%s] nicht konfiguriert.", "page-doc-info-project": "Projekte-Klasse. Alle Aktionen zum Lesen/ Builden/ Deployen/ ... eines Projektes als auch Rendering Funktionen für die Webgui.", "page-doc-info-projectlist": "Genrieren der Projektübersicht (kann ggf. gelöscht werden)", + "page-doc-info-actionlog": "Loggen der Projekt-Aktionen, wie Build, Deploy, etc. und Loganalyse", "page-doc-info-page": "Abstraktion des Http Response der Webgui", "page-doc-info-formgen": "Helfer zum Zeichnen von FORM Elementen", "page-doc-info-select-class": "Wähle eine Klasse", diff --git a/config/lang/en.json b/config/lang/en.json index 9ec56b4f..5db10412 100644 --- a/config/lang/en.json +++ b/config/lang/en.json @@ -163,6 +163,7 @@ "page-doc-error-class-not-configured": "The documentation cannot be displayed. A class [%s] was not configured in [%s].", "page-doc-info-project": "Project class. All functions to read/ build/ deploy ... of a project and rendering functions for the web gui as well.", "page-doc-info-projectlist": "Generete overview page of all projects", + "page-doc-info-actionlog": "Logging of all project specific actions like build, deploy, etc. and loganalytics", "page-doc-info-page": "Abstraction of http response of the web gui", "page-doc-info-formgen": "helper to render form elements", "page-doc-info-select-class": "Select a class", diff --git a/public_html/deployment/pages/act_doc.php b/public_html/deployment/pages/act_doc.php index 6734850e..e00e63a8 100644 --- a/public_html/deployment/pages/act_doc.php +++ b/public_html/deployment/pages/act_doc.php @@ -14,6 +14,7 @@ require_once("./classes/classinfos.class.php"); $aClasses = array( "project" => array("name" => "project"), "projectlist" => array("name" => "projectlist"), + "actionlog" => array("name" => "Actionlog"), "page" => array("name" => "Page"), "formgen" => array("name" => "formgen"), ); diff --git a/public_html/deployment/pages/act_overview.php b/public_html/deployment/pages/act_overview.php index 6e57f877..637a3f60 100644 --- a/public_html/deployment/pages/act_overview.php +++ b/public_html/deployment/pages/act_overview.php @@ -30,7 +30,9 @@ if (!array_key_exists("prj", $aParams)) { </div> <h3>' . t("repositoryinfos") . '</h3> + <div style="max-width: 60%"> ' . $oPrj->renderRepoInfo() . ' + </div> '; if ($oPrj->getActivePhases()) { -- GitLab