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
Branches
No related tags found
No related merge requests found
......@@ -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",
......
......@@ -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",
......
......@@ -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"),
);
......
......@@ -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()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment