Files
FHC-Core/content/projekt/projekttaskdetail.overlay.xul.php
Paolo 0bc0a09bf4 - Removed file system execute permission for all files (no directories)
- application/extensions file system permission now is 775
- application/logs file system permission now is 775
- Added extensions directory in application/: config, controllers, helpers, hooks, libraries, models, views and widgets
- Added view views/extensions/manage.php
- Added controller controllers/system/extensions/Manager.php
- Added library ExtensionsLib to manage extensions
- Added model models/system/Extensions_model.php
- Moved code related to print out info from MigrationLib to EPrintfLib
2017-11-13 10:45:49 +01:00

127 lines
4.7 KiB
PHP

<?php
/* Copyright (C) 2006 Technikum-Wien
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>
* Karl Burkhart <burkhart@technikum-wien.at>
*/
header("Cache-Control: no-cache");
header("Cache-Control: post-check=0, pre-check=0",false);
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Pragma: no-cache");
header("Content-type: application/vnd.mozilla.xul+xml");
require_once('../../config/vilesci.config.inc.php');
echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
?>
<overlay id="ProjekttaskDetailOverlay"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<!-- ************************ -->
<!-- * Projekttaskdetail * -->
<!-- ************************ -->
<vbox id="box-projekttask-detail" flex="1">
<groupbox flex="1">
<caption id="caption-projekttask-detail" label="Neuer Task"/>
<grid id="grid-projekttask-detail" style="overflow:auto;margin:4px;" flex="1">
<columns >
<column flex="1"/>
<column flex="5"/>
</columns>
<rows>
<row>
<label value="Task ID" control="textbox-projekttask-detail-projekttask_id "/>
<hbox>
<textbox id="textbox-projekttaskdetail-projekttask_id" disabled="true" size="3"/>
<spacer />
</hbox>
</row>
<row>
<label value="Projektphase ID" control="textbox-projekttask-detail-projektphase_id"/>
<hbox>
<textbox id="textbox-projekttaskdetail-projektphase_id" size="3"/>
<spacer />
</hbox>
</row>
<row>
<label value="Bezeichnung" control="textbox-projekttask-detail-bezeichnung"/>
<textbox id="textbox-projekttask-detail-bezeichnung" disabled="true"/>
</row>
<row>
<box orient="vertical">
<button label=" Beschreibung" image="../skin/images/markdown_button.png" id="button-projekttask-beschreibung-parsedown" oncommand="showProjekttaskParsedown()" control="textbox-projekttask-detail-beschreibung"/>
<spacer />
</box>
<textbox id="textbox-projekttask-detail-beschreibung" multiline="true" disabled="true" rows="10"/>
</row>
<row>
<label value="Aufwand" control="textbox-projekttask-detail-aufwand"/>
<hbox>
<textbox id="textbox-projekttask-detail-aufwand" size="5" maxlength="5" disabled="true"/>
<spacer />
</hbox>
</row>
<row>
<label value="ScrumSprintID" control="textbox-projekttask-detail-scrumsprint_id"/>
<hbox>
<textbox id="textbox-projekttask-detail-scrumsprint_id" size="5" maxlength="5" disabled="true"/>
<spacer />
</hbox>
</row>
<row>
<label value="MantisID" control="textbox-projekttask-detail-mantis_id"/>
<hbox>
<textbox id="textbox-projekttask-detail-mantis_id" size="5" maxlength="5" disabled="true"/>
<spacer />
</hbox>
</row>
<row>
<label value="Ressource" control="textbox-projekttask-detail-ressource"/>
<menulist id="textbox-projekttask-detail-ressource"
datasources="rdf:null"
xmlns:RESSOURCE="http://www.technikum-wien.at/ressource/rdf#"
ref="http://www.technikum-wien.at/ressource/alle"
disabled="true"
>
<template>
<menupopup>
<menuitem value="rdf:http://www.technikum-wien.at/ressource/rdf#ressource_id"
label="rdf:http://www.technikum-wien.at/ressource/rdf#bezeichnung ( rdf:http://www.technikum-wien.at/ressource/rdf#typ )"
uri="rdf:*"/>
</menupopup>
</template>
</menulist>
</row>
<row>
<label value="Ende" control="textbox-projekttask-detail-ende"/>
<box class="Datum" id="textbox-projekttask-detail-ende" disabled="true"/>
</row>
</rows>
</grid>
<hbox>
<spacer flex="1" />
<button id="button-projekttask-detail-speichern" oncommand="saveProjekttaskDetail()" label="Speichern" disabled="true"/>
</hbox>
</groupbox>
</vbox>
</overlay>