This commit is contained in:
Andreas Österreicher
2009-06-17 15:42:39 +00:00
parent 4e1e6a05ec
commit ed6df5063a
5 changed files with 36 additions and 5 deletions
+5 -4
View File
@@ -36,9 +36,9 @@ echo '<?xml-stylesheet href="'.APP_ROOT.'skin/tempus.css" type="text/css"?>';
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<vbox>
<hbox>
<hbox style="margin-top: 20px">
<spacer flex="1"/>
<image src='<?php echo APP_ROOT; ?>skin/images/fhcomplete.png' width="290" height="160"/>
<image src='<?php echo APP_ROOT; ?>skin/images/fh_complete_logo.png' width="392" height="60"/>
<spacer flex="1"/>
</hbox>
<hbox>
@@ -67,8 +67,9 @@ echo '<?xml-stylesheet href="'.APP_ROOT.'skin/tempus.css" type="text/css"?>';
Authors: Christian Paminger &lt;christian.paminger@technikum-wien.at&gt;,
Andreas Oesterreicher &lt;andreas.oesterreicher@technikum-wien.at&gt;,
Rudolf Hangl &lt;rudolf.hangl@technikum-wien.at&gt; and
Gerald Raab &lt;gerald.raab@technikum-wien.at&gt;.
Rudolf Hangl &lt;rudolf.hangl@technikum-wien.at&gt;,
Gerald Raab &lt;gerald.raab@technikum-wien.at&gt; and
Gerald Simane-Sequens &lt;gerald.simane-sequence@technikum-wien.at&gt;
</description>
</groupbox>
<spacer flex="1"/>
+7
View File
@@ -97,6 +97,7 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
<command id="menu-statistic-mitarbeiterstatistik:command" oncommand="StatistikPrintMitarbeiterstatistik();"/>
<command id="menu-statistic-studentendetails:command" oncommand="StatistikPrintStudentExportExtended();"/>
<command id="menu-statistic-lektorenstatistik:command" oncommand="StatistikPrintLektorenstatistik();"/>
<command id="menu-statistic-stromanalyse:command" oncommand="StatistikPrintStromanalyse();"/>
<command id="menu-dokumente-inskriptionsbestaetigung:command" oncommand="StudentPrintInskriptionsbestaetigung();"/>
<command id="menu-dokumente-zeugnis:command" oncommand="StudentCreateZeugnis('Zeugnis');"/>
<command id="menu-dokumente-zeugniseng:command" oncommand="StudentCreateZeugnis('ZeugnisEng');"/>
@@ -404,6 +405,12 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
label = "&menu-statistic-mitarbeiterstatistik.label;"
command = "menu-statistic-mitarbeiterstatistik:command"
accesskey = "&menu-statistic-mitarbeiterstatistik.accesskey;"/>
<menuitem
id = "menu-statistic-stromanalyse"
key = "menu-statistic-stromanalyse:key"
label = "&menu-statistic-stromanalyse.label;"
command = "menu-statistic-stromanalyse:command"
accesskey = "&menu-statistic-stromanalyse.accesskey;"/>
</menupopup>
</menu>
</menupopup>
+13
View File
@@ -1007,6 +1007,19 @@ function StatistikPrintMitarbeiterstatistik()
window.open('<?php echo APP_ROOT ?>content/statistik/mitarbeiterstatistik.php?stsem='+stsem,'Mitarbeiterstatistik');
}
// ****
// * Liefert eine Stromanalyse der Studenten
// ****
function StatistikPrintStromanalyse()
{
var stsem = getStudiensemester();
if(stsem.startsWith('WS'))
param = "?studiensemester_kurzbz="+stsem;
else
param ='';
window.open('<?php echo APP_ROOT ?>content/statistik/stromanalyse.php'+param,'Stromanalyse');
}
function StatistikPrintStudentExportExtended()
{
var tree = document.getElementById('student-tree');
+7 -1
View File
@@ -238,4 +238,10 @@ function getTreeCellText(tree, col, idx)
// ****
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
}
// ****
// * StartsWidth Member Function fuer Strings
// ****
String.prototype.startsWith = function(str)
{return (this.match("^"+str)==str)}
+4
View File
@@ -168,6 +168,10 @@
<!ENTITY menu-statistic-studentendetails.label "Personendetails Excel">
<!ENTITY menu-statistic-studentendetails.accesskey "P">
<!ENTITY menu-statistic-stromanalyse.key "S">
<!ENTITY menu-statistic-stromanalyse.label "Stromanalyse">
<!ENTITY menu-statistic-stromanalyse.accesskey "S">
<!-- Dokumente -->
<!ENTITY menu-dokumente.label "Dokumente">
<!ENTITY menu-dokumente.accesskey "D">