Skip to content
Snippets Groups Projects
Commit 1d74ba43 authored by hahn's avatar hahn
Browse files

- 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
parent 0b8e8d83
No related branches found
No related tags found
No related merge requests found
...@@ -153,6 +153,7 @@ ...@@ -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-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-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-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-page": "Abstraktion des Http Response der Webgui",
"page-doc-info-formgen": "Helfer zum Zeichnen von FORM Elementen", "page-doc-info-formgen": "Helfer zum Zeichnen von FORM Elementen",
"page-doc-info-select-class": "Wähle eine Klasse", "page-doc-info-select-class": "Wähle eine Klasse",
......
...@@ -163,6 +163,7 @@ ...@@ -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-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-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-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-page": "Abstraction of http response of the web gui",
"page-doc-info-formgen": "helper to render form elements", "page-doc-info-formgen": "helper to render form elements",
"page-doc-info-select-class": "Select a class", "page-doc-info-select-class": "Select a class",
......
...@@ -14,6 +14,7 @@ require_once("./classes/classinfos.class.php"); ...@@ -14,6 +14,7 @@ require_once("./classes/classinfos.class.php");
$aClasses = array( $aClasses = array(
"project" => array("name" => "project"), "project" => array("name" => "project"),
"projectlist" => array("name" => "projectlist"), "projectlist" => array("name" => "projectlist"),
"actionlog" => array("name" => "Actionlog"),
"page" => array("name" => "Page"), "page" => array("name" => "Page"),
"formgen" => array("name" => "formgen"), "formgen" => array("name" => "formgen"),
); );
......
...@@ -30,7 +30,9 @@ if (!array_key_exists("prj", $aParams)) { ...@@ -30,7 +30,9 @@ if (!array_key_exists("prj", $aParams)) {
</div> </div>
<h3>' . t("repositoryinfos") . '</h3> <h3>' . t("repositoryinfos") . '</h3>
<div style="max-width: 60%">
' . $oPrj->renderRepoInfo() . ' ' . $oPrj->renderRepoInfo() . '
</div>
'; ';
if ($oPrj->getActivePhases()) { if ($oPrj->getActivePhases()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment