mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
This commit is contained in:
@@ -67,6 +67,26 @@ else
|
||||
<td class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="260" class='tdwrap'>Mag. Dietmar Nestlang (Leitung)</td>
|
||||
<td width="50" class='tdwrap'>215</td>
|
||||
<td class='tdwrap'><?php echo ($visible?'<a class="Item" href="mailto:nestlang@technikum-wien.at">nestlang@technikum-wien.at</a>':'')?></td>
|
||||
<td class='tdwrap'> </td>
|
||||
<td class='tdwrap'>Termin nach Vereinbarung </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="260" class='tdwrap'><strong>Helpdesk</strong></td>
|
||||
<td width="50" class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
<td width="56" class='tdwrap'> </td>
|
||||
<td class='tdwrap'> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="260" class='tdwrap'>Ing. Esberger Franz (Teamleiter)</td>
|
||||
<td width="50" class='tdwrap'>243</td>
|
||||
@@ -116,16 +136,16 @@ else
|
||||
<td class='tdwrap'> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="260" class='tdwrap'>Kata Papp </td>
|
||||
<td width="50" class='tdwrap'>247</td>
|
||||
<td class='tdwrap'><?php echo ($visible?'<a class="Item" href="mailto:kata.papp@technikum-wien.at">kata.papp@technikum-wien.at</a>':'')?></td>
|
||||
<td width="260" class='tdwrap'>Mag. Gerald Raab (Teamleiter)</td>
|
||||
<td width="50" class='tdwrap'>342</td>
|
||||
<td class='tdwrap'><?php echo ($visible?'<a class="Item" href="mailto:gerald.rool@technikum-wien.at">gerald.rool@technikum-wien.at</a>':'')?></td>
|
||||
<td width="56" class='tdwrap'> </td>
|
||||
<td class='tdwrap'>Termin nach Vereinbarung</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="260" class='tdwrap'>Gerald Rool (Teamleiter)</td>
|
||||
<td width="50" class='tdwrap'> </td>
|
||||
<td class='tdwrap'><?php echo ($visible?'<a class="Item" href="mailto:gerald.rool@technikum-wien.at">gerald.rool@technikum-wien.at</a>':'')?></td>
|
||||
<td width="260" class='tdwrap'>Kata Papp </td>
|
||||
<td width="50" class='tdwrap'>247</td>
|
||||
<td class='tdwrap'><?php echo ($visible?'<a class="Item" href="mailto:kata.papp@technikum-wien.at">kata.papp@technikum-wien.at</a>':'')?></td>
|
||||
<td width="56" class='tdwrap'> </td>
|
||||
<td class='tdwrap'>Termin nach Vereinbarung</td>
|
||||
</tr>
|
||||
|
||||
@@ -91,6 +91,18 @@ $pruefung = new abschlusspruefung($conn, null, true);
|
||||
if($result_rek = pg_query($conn, $qry))
|
||||
if($row_rek = pg_fetch_object($result_rek))
|
||||
$rektor = $row_rek->titelpre.' '.$row_rek->vorname.' '.$row_rek->nachname.' '.$row_rek->titelpost;
|
||||
$qry = "SELECT themenbereich, ende FROM lehre.tbl_projektarbeit WHERE student_uid='$student->uid' AND (projekttyp_kurzbz='Bachelor' OR projekttyp_kurzbz='Diplom') ORDER BY beginn LIMIT 1";
|
||||
$themenbereich='';
|
||||
$datum_projekt='';
|
||||
|
||||
if($result_proj = pg_query($conn, $qry))
|
||||
{
|
||||
if($row_proj = pg_fetch_object($result_proj))
|
||||
{
|
||||
$themenbereich = $row_proj->themenbereich;
|
||||
$datum_projekt = $datum_obj->convertISODate($row_proj->ende);
|
||||
}
|
||||
}
|
||||
|
||||
echo "\t<pruefung>".'
|
||||
<abschlusspruefung_id><![CDATA['.$row->abschlusspruefung_id.']]></abschlusspruefung_id>
|
||||
@@ -130,7 +142,9 @@ $pruefung = new abschlusspruefung($conn, null, true);
|
||||
<anmerkung><![CDATA['.$row->anmerkung.']]></anmerkung>
|
||||
<bescheidbgbl1><![CDATA['.$studiengang->bescheidbgbl1.']]></bescheidbgbl1>
|
||||
<titelbescheidvom><![CDATA['.$datum_obj->convertISODate($studiengang->titelbescheidvom).']]></titelbescheidvom>
|
||||
<rektor><![CDATA['.$rektor.']]></rektor>';
|
||||
<rektor><![CDATA['.$rektor.']]></rektor>
|
||||
<themenbereich><![CDATA['.$themenbereich.']]></themenbereich>
|
||||
<datum_projekt><![CDATA['.$datum_projekt.']]></datum_projekt>';
|
||||
|
||||
echo "\n\t</pruefung>";
|
||||
}
|
||||
|
||||
@@ -69,11 +69,23 @@ if (isset($_REQUEST["xmlformat"]) && $_REQUEST["xmlformat"] == "xml")
|
||||
}
|
||||
else
|
||||
die('Student not found'.$uid_arr[$i]);
|
||||
|
||||
$qry = "SELECT * FROM lehre.tbl_akadgrad WHERE studiengang_kz='$row->studiengang_kz'";
|
||||
$titel = '';
|
||||
$titel_kurzbz = '';
|
||||
if($result_titel = pg_query($conn, $qry))
|
||||
{
|
||||
if($row_titel = pg_fetch_object($result_titel))
|
||||
{
|
||||
$titel = $row_titel->titel;
|
||||
$titel_kurzbz = $row_titel->akadgrad_kurzbz;
|
||||
}
|
||||
}
|
||||
echo ' <supplement>';
|
||||
echo ' <nachname>'.$row->nachname.'</nachname>';
|
||||
echo ' <nachname><![CDATA['.$row->nachname.']]></nachname>';
|
||||
echo ' <vorname>'.$row->vorname.'</vorname>';
|
||||
echo ' <vornamen>'.$row->vornamen.'</vornamen>';
|
||||
echo ' <titel>'.$titel.'</titel>';
|
||||
echo ' <titel_kurzbz>'.$titel_kurzbz.'</titel_kurzbz>';
|
||||
echo ' <geburtsdatum>'.$datum->convertISODate($row->gebdatum).'</geburtsdatum>';
|
||||
echo ' <matrikelnummer>'.$row->matrikelnr.'</matrikelnummer>';
|
||||
echo ' <studiengang_kz>'.sprintf("%04s", $row->studiengang_kz).'</studiengang_kz>';
|
||||
@@ -88,34 +100,34 @@ if (isset($_REQUEST["xmlformat"]) && $_REQUEST["xmlformat"] == "xml")
|
||||
echo ' <studienart>Vollzeitstudium/Full-time degree programm</studienart>';
|
||||
if($row->typ=='d')
|
||||
{
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Allgemeine Universitätsreife (vgl. $4 Abs. 3 FHStG idgF), Berufsreifeprüfung bzw. Studienberechtigungsprüfung oder einschlägige berufliche Qualifikation (Lehrabschluss bzw. Abschluss einer berufsbildenden mittleren Schule mit Zulassungsprüfung). Die Aufnahme erfolgt auf Basis eines Auswahlverfahrens (Werdegang, Eignungstest, Bewerbungsgespräch).]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[Austrian or quivalent foreign school leaving certificate (Reifeprüfung), university entrance examination certificate (Studienberechtigungsprüfung), certificate or quivalent relevant professional qualification (Berufsreifeprüfung) plus entrance examination equal to the university entrance examination. There is a selection procedure prior to admission (including entrance exam and interview, professional background is considered).]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von Lehrveranstaltungen(Vorlesungen, Übungen, Seminare, Projekte, integrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro Semester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung integriert technische, wirtschaftliche, organisatorische und persönlichkeitsbildende Elemente. Das Studium beinhaltet ein facheinschlägiges Berufpraktikum. Im Rahmen des Studiums ist eine Diplomarbeit zu verfassen und eine abschließende Prüfung (Diplomprüfung) zu absolvieren. Curriculum des Studienganges gemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures, labs, seminars, projekct work, and integrated courses) to the extend of 30 ECTS per semester according to the curriculum. The programm integrates technical, economical, management and personal study elements. Included in the program is a relevant work placement. The degree is awarded upon the successful completion of a diploma these and the final examination. Curriculum of the program according to the application as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')]]></anforderungen_englisch>';
|
||||
echo ' <zugangsberechtigung_deutsch><![CDATA[Der Abschluss des Diplomstudiengangs berechtigt zu einem facheinschlägigen Doktoratsstudium, Magister- bzw. Master-Studium oder postgradualen Studium (in Abhängigkeit vom Studium mit eventuellen Zusatzprüfungen). Die Qualifikation entspricht einem Master of Science in Engineering, MSc.]]></zugangsberechtigung_deutsch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Diploma Degree Program qualifies the graduate to apply for admission to a relevant Doctoral Degree Program, Master Degree Program or postgraduate studies (depending on the program additional qualifying exams may be required). The Diplioma Degree Program is a graduate program, the qualification is equvalent to Master of Science in Engineering, MSc]]></zugangsberechtigung_englisch>';
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Allgemeine Universitätsreife (vgl. $4 Abs. 3 FHStG idgF),\nBerufsreifeprüfung bzw. Studienberechtigungsprüfung oder\neinschlägige berufliche Qualifikation (Lehrabschluss bzw. Abschluss\neiner berufsbildenden mittleren Schule mit Zulassungsprüfung). Die\nAufnahme erfolgt auf Basis eines Auswahlverfahrens (Werdegang,\nEignungstest, Bewerbungsgespräch).]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[Austrian or quivalent foreign school leaving certificate\n(Reifeprüfung), university entrance examination certificate\n(Studienberechtigungsprüfung), certificate or quivalent relevant\nprofessional qualification (Berufsreifeprüfung) plus entrance\nexamination equal to the university entrance examination. There is a\nselection procedure prior to admission (including entrance exam and\ninterview, professional background is considered).]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von\nLehrveranstaltungen (Vorlesungen, Übungen, Seminare, Projekte,\nintegrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro\nSemester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung\nintegriert technische, wirtschaftliche, organisatorische und\npersönlichkeitsbildende Elemente. Das Studium beinhaltet ein\nfacheinschlägiges Berufpraktikum. Im Rahmen des Studiums ist eine\nDiplomarbeit zu verfassen und eine abschließende Prüfung\n(Diplomprüfung) zu absolvieren. Curriculum des Studienganges\ngemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures,\nlabs, seminars, projekct work, and integrated courses) to the extend of\n30 ECTS per semester according to the curriculum. The programm\nintegrates technical, economical, management and personal study\nelements. Included in the program is a relevant work placement. The\ndegree is awarded upon the successful completion of a diploma these\nand the final examination. Curriculum of the program according to the application as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')]]></anforderungen_englisch>';
|
||||
echo ' <zugangsberechtigung_deutsch><![CDATA[Der Abschluss des Diplomstudiengangs berechtigt zu einem facheinschlägigen Doktoratsstudium, Magister- bzw. Master-Studium\noder postgradualen Studium (in Abhängigkeit vom Studium mit\neventuellen Zusatzprüfungen). Die Qualifikation entspricht einem\nMaster of Science in Engineering, MSc.]]></zugangsberechtigung_deutsch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Diploma Degree Program qualifies the graduate to apply for admission to a relevant Doctoral Degree Program, Master Degree Program or postgraduate studies (depending on the\nprogram additional qualifying exams may be required). The Diplioma\nDegree Program is a graduate program, the qualification is equvalent to\nMaster of Science in Engineering, MSc]]></zugangsberechtigung_englisch>';
|
||||
echo ' <niveau_deutsch>Diplomstudium (UNESCO ISCED 5A)</niveau_deutsch>';
|
||||
echo ' <niveau_englisch>Diploma degree program (UNESCO ISCED 5A)</niveau_englisch>';
|
||||
}
|
||||
elseif($row->typ=='m')
|
||||
{
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Die fachgliche Zugangsvoraussetzung (vgl. $4 Abs. 2 FHStG idgF) zu einem FH-Masterstudiengang ist ein abgeschlossener facheinschlägiger FH-Bachelorstudiengang ist ein abgeschlossener facheinschlägiger FH-Bachelorstudiengang order der Abschluss eines gleichwertigen Studiums an einer anerkannten inländischen oder ausländischen postsekundären Bildungseinrichtung. Die Aufnahme in den Studiengang erfolgt auf Basis eines Aufnahmeverfahrens.]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[Admission to the master\'s degree program is granted on the basis of the successful completion of a relevant post-secondary degree acknoledgement to be its equivalent. Admission is on the basis of a selection process.]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von Lehrveranstaltungen(Vorlesungen, Übungen, Seminare, Projekte, integrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro Semester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung integriert technische, wirtschaftliche, organisatorische und persönlichkeitsbildende Elemente. Im Rahmen des Studiums ist eine Diplomarbeit zu verfassen und eine abschließende Prüfung (Diplomprüfung) zu absolvieren. Curriculum des Studienganges gemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures, labs, seminars, projekct work, and integrated courses) to the extend of 30 ECTS per semester according to the curriculum. The programm integrates technical, economical, management and personal study elements. The degree is awarded upon the successful completion of a diploma these and the final examination. Curriculum of the program according to the application as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')]]></anforderungen_englisch>';
|
||||
echo ' <zugangsberechtigung_deutsch><![CDATA[Der Abschluss des Masterstudiengangs berechtigt zu einem facheinschlägigen Doktoratsstudium an Universität (in Abhängigkeit vom Studium mit eventuellen Zusatzprüfungen)]]></zugangsberechtigung_deutsch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Master Degree Program qualifies the graduate to apply for admission to a relevant Doctoral Degree Program at an University (depending on the program additional qualifying exams may be required).]]></zugangsberechtigung_englisch>';
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Die fachliche Zugangsvoraussetzung (vgl. $4 Abs. 2 FHStG idgF) zu\neinem FH-Masterstudiengang ist ein abgeschlossener\nfacheinschlägiger FH-Bachelorstudiengang oder der Abschluss eines\ngleichwertigen Studiums an einer anerkannten inländischen oder\nausländischen postsekundären Bildungseinrichtung. Die Aufnahme in\nden Studiengang erfolgt auf Basis eines Aufnahmeverfahrens.]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[\nAdmission to the master\'s degree program is granted on the basis of\nthe successful completion of a relevant post-secondary degree\nacknoledgement to be its equivalent. Admission is on the basis of a\nselection process.\n\n]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von\nLehrveranstaltungen(Vorlesungen, Übungen, Seminare, Projekte,\nintegrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro\nSemester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung\nintegriert technische, wirtschaftliche, organisatorische und\npersönlichkeitsbildende Elemente. Im Rahmen des Studiums ist eine\nDiplomarbeit zu verfassen und eine abschließende Prüfung\n(Diplomprüfung) zu absolvieren. Curriculum des Studienganges\ngemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.\n]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures,\nlabs, seminars, projekct work, and integrated courses) to the extend of\n30 ECTS per semester according to the curriculum. The programm\nintegrates technical, economical, management and personal study\nelements. The degree is awarded upon the successful completion of a diploma these and the final examination. Curriculum of the program according to the application as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')\n]]></anforderungen_englisch>';
|
||||
echo ' <zugangsberechtigung_deutsch><![CDATA[Der Abschluss des Masterstudiengangs berechtigt zu einem facheinschlägigen Doktoratsstudium an Universität (in Abhängigkeit\nvom Studium mit eventuellen Zusatzprüfungen)]]></zugangsberechtigung_deutsch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Master Degree Program qualifies the graduate to apply for admission to a relevant Doctoral Degree Program\nat an University (depending on the program additional qualifying exams\nmay be required).\n\n\n\n]]></zugangsberechtigung_englisch>';
|
||||
echo ' <niveau_deutsch>Masterstudium (UNESCO ISCED 5A)</niveau_deutsch>';
|
||||
echo ' <niveau_englisch>Master degree program (UNESCO ISCED 5A)</niveau_englisch>';
|
||||
}
|
||||
elseif($row->typ=='b')
|
||||
{
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Allgemeine Universitätsreife (vgl. $4 Abs. 3 FHStG idgF), Berufsreifeprüfung bzw. Studienberechtigungsprüfung oder einschlägige berufliche Qualifikation (Lehrabschluss bzw. Abschluss einer berufsbildenden mittleren Schule mit Zulassungsprüfung). Die Aufnahme erfolgt auf Basis eines Auswahlverfahrens (Werdegang, Eignungstest, Bewerbungsgespräch).]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[Austrian or quivalent foreign school leaving certificate (Reifeprüfung), university entrance examination certificate (Studienberechtigungsprüfung), certificate or quivalent relevant professional qualification (Berufsreifeprüfung) plus entrance examination equal to the university entrance examination. There is a selection procedure prior to admission (including entrance exam and interview, professional background is considered).]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von Lehrveranstaltungen(Vorlesungen, Übungen, Seminare, Projekte, integrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro Semester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung integriert technische, wirtschaftliche, organisatorische und persönlichkeitsbildende Elemente. Das Studium beinhaltet ein facheinschlägiges Berufpraktikum. Im Rahmen des Studiums sind zwei Bachelorarbeiten zu verfassen und eine abschließende Prüfung (Bachelorprüfung) zu absolvieren. Curriculum des Studienganges gemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures, labs, seminars, projekct work, and integrated courses) to the extend of 30 ECTS per semester according to the curriculum. The programm integrates technical, economical, management and personal study elements. Included in the program is a relevant work placement. The degree is awarded upon the successful completion of 2 bachelor these and the final examination. Curriculum of the program according to the application as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')]]></anforderungen_englisch>';
|
||||
echo ' <zulassungsvoraussetzungen_deutsch><![CDATA[Allgemeine Universitätsreife (vgl. $4 Abs. 3 FHStG idgF),\nBerufsreifeprüfung bzw. Studienberechtigungsprüfung oder\neinschlägige berufliche Qualifikation (Lehrabschluss bzw. Abschluss\neiner berufsbildenden mittleren Schule mit Zulassungsprüfung). Die\nAufnahme erfolgt auf Basis eines Auswahlverfahrens (Werdegang,\nEignungstest, Bewerbungsgespräch).]]></zulassungsvoraussetzungen_deutsch>';
|
||||
echo ' <zulassungsvoraussetzungen_englisch><![CDATA[Austrian or quivalent foreign school leaving certificate\n(Reifeprüfung), university entrance examination certificate\n(Studienberechtigungsprüfung), certificate or quivalent relevant\nprofessional qualification (Berufsreifeprüfung) plus entrance\nexamination equal to the university entrance examination. There is a\nselection procedure prior to admission (including entrance exam\nand interview, professional background is considered).]]></zulassungsvoraussetzungen_englisch>';
|
||||
echo ' <anforderungen_deutsch><![CDATA[Das Studium erfordert die positive Absolvierung von\nLehrveranstaltungen (Vorlesungen, Übungen, Seminare, Projekte,\nintegrierte Lehrveranstaltungen) im Ausmass von jeweils 30 ECTS pro\nSemester gemäß dem vorgeschriebenen Studienplan. Die Ausbildung\nintegriert technische, wirtschaftliche, organisatorische und\npersönlichkeitsbildende Elemente. Das Studium beinhaltet ein\nfacheinschlägiges Berufpraktikum. Im Rahmen des Studiums sind\nzwei Bachelorarbeiten zu verfassen und eine abschließende Prüfung\n(Bachelorprüfung) zu absolvieren. Curriculum des Studienganges\ngemäß dem vom FHR mit Kennzahl '.sprintf('%04s', $row->studiengang_kz).' genehmigten Antrag.]]></anforderungen_deutsch>';
|
||||
echo ' <anforderungen_englisch><![CDATA[The programm requires the positive completion of all courses (lectures,\nlabs, seminars, projekct work, and integrated courses) to the extend of\n30 ECTS per semester according to the curriculum. The programm\nintegrates technical, economical, management and personal study\nelements. Included in the program is a relevant work placement. The\ndegree is awarded upon the successful completion of 2 bachelor these\nand the final examination. Curriculum of the program according to the\napplication as approved by the Fachhochschul Council (Classification number: '.sprintf('%04s', $row->studiengang_kz).')]]></anforderungen_englisch>';
|
||||
echo ' <zugangsberechtigung_deutsch><![CDATA[Der Abschluss des Diplomstudiengangs berechtigt zu einem facheinschlägigen Magister- bzw. Master-Studium an einer fachhochschulischen Einrichtung oder Universität (mit eventuellen Zusatzprüfungen).]]></zugangsberechtigung_deutsch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Bachlor Degree Program qualifies the graduate to apply for admission to a relevant Master Degree Program at a University of Applied Sciences or a University (depending on the program additional qualifying exams may be required).]]></zugangsberechtigung_englisch>';
|
||||
echo ' <zugangsberechtigung_englisch><![CDATA[The successful completion of the Bachlor Degree Program qualifies the graduate to apply for admission to a relevant Master Degree Program\nat a University of Applied Sciences or a University (depending on the program additional qualifying exams may be required).\n\n\n]]></zugangsberechtigung_englisch>';
|
||||
echo ' <niveau_deutsch>Bachelorstudium (UNESCO ISCED 5A)</niveau_deutsch>';
|
||||
echo ' <niveau_englisch>Bachelor degree program (UNESCO ISCED 5A)</niveau_englisch>';
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
@@ -74,7 +74,7 @@ born <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort" />,<xs
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="175mm" left="25mm" height="10mm">
|
||||
<fo:block-container position="absolute" top="160mm" left="25mm" height="10mm">
|
||||
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
|
||||
and in accordance with the notice of
|
||||
\nthe Fachhochschulrat on <xsl:value-of select="titelbescheidvom" />,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -18,430 +18,429 @@
|
||||
<fo:page-sequence master-reference="PageMaster">
|
||||
<fo:flow flow-name="xsl-region-body" >
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="76pt" left="443pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<fo:inline vertical-align="super">
|
||||
Personenkennzeichen
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="95pt" left="450pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="12pt">
|
||||
|
||||
0410227046
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="120pt" left="443pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<fo:inline vertical-align="super">
|
||||
Studiengangskennzahl
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="91pt" left="445pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="45mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="25pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="135pt" left="445pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="45mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="25pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="139pt" left="450pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="12pt">
|
||||
|
||||
0011
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="150pt" left="30pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="16pt">
|
||||
Diplomprüfungszeugnis
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="180pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="181pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Vorname(n), Familienname
|
||||
<fo:inline font-size="12pt">
|
||||
\n aaaaaaaa
|
||||
</fo:inline>
|
||||
|
||||
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="180pt" left="400pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="181pt" left="402pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Geburtsdatum
|
||||
|
||||
<fo:inline font-size="12pt">
|
||||
\n bbbbbbbbb
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="221pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="191mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="100pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="223pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Diplom-Studiengang
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
\n
|
||||
\n cccccccccc
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="322pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="191mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="323pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Gesetzliche Grundlage: gem. § 5 Abs. 1 des Bundesgesetzes über Fachhochschul-Studiengänge (FHStG), BGBl.Nr. 340/1993
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="353pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="191mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="80pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="354pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Gesamtnote der Diplomprüfung
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
|
||||
\n dddddddddd
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Diplomprüfung
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="400pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="402pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Datum
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
1. Teil der Diplomprüfung: Diplomarbeit
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="400pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="402pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
eeeeeeeeeeee
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="490pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="191mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="80pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="491pt" left="32pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Thema der Diplomarbeit
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
\n fffffffffffffffff
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="32pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
2. Teil der Diplomprüfung: Kommissionelle Prüfung
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="400pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="402pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
ggggggggggggg
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="204pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="60pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="206pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Vorsitzender des Prüfungssenats
|
||||
\n
|
||||
\n
|
||||
\n
|
||||
iiiiiiiiiiiiiiiii
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="30pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="60pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="32pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Ort, Ausstellungsdatum
|
||||
\n
|
||||
\n
|
||||
\n
|
||||
Wien, hhhhhhhhhhhhhh
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="650pt" left="32pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="6pt">
|
||||
|
||||
Gesamtnote: mit ausgezeichnetem Erfolg bestanden, mit gutem Erfolg bestanden \n ZVR-Nr.: 074476426, DVR-Nr.: 0928381
|
||||
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
<fo:block-container position="absolute" top="100pt" left="443pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<fo:inline vertical-align="super">
|
||||
Personenkennzeichen
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="125pt" left="450pt" height="0pt">
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="12pt" content-width="40mm" text-align="center">
|
||||
|
||||
<xsl:value-of select="matrikelnr" />
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="150pt" left="443pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<fo:inline vertical-align="super">
|
||||
Studiengangskennzahl
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="120pt" left="445pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="45mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="25pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="165pt" left="445pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="45mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="25pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="170pt" left="450pt" height="0pt">
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="12pt" content-width="45mm" text-align="center">
|
||||
|
||||
<xsl:value-of select="studiengang_kz" />
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="170pt" left="60pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="16pt">
|
||||
Diplomprüfungszeugnis
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="210pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="120.3mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="210pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Vorname(n), Familienname
|
||||
<fo:inline font-size="12pt">
|
||||
\n <xsl:value-of select="vorname" /><xsl:text> </xsl:text><xsl:value-of select="nachname" />
|
||||
</fo:inline>
|
||||
|
||||
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="210pt" left="402pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="60.3mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="210pt" left="402pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Geburtsdatum
|
||||
|
||||
<fo:inline font-size="12pt">
|
||||
\n <xsl:value-of select="gebdatum" />
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="241pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="181mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="80pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="243pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Diplom-Studiengang
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
\n
|
||||
\n <xsl:value-of select="stg_bezeichnung" />
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="322pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="181mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="30pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="323pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Gesetzliche Grundlage: gem. § 5 Abs. 1 des Bundesgesetzes über Fachhochschul-Studiengänge (FHStG), BGBl.Nr. <xsl:value-of select="bescheidbgbl1" />
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="353pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="181mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="80pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="354pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Gesamtnote der Diplomprüfung
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
|
||||
\n <xsl:value-of select="abschlussbeurteilung_kurzbz" />
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Diplomprüfung
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="430pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="51mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="460pt" left="432pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Datum
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
1. Teil der Diplomprüfung: Diplomarbeit
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="430pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="51mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="475pt" left="432pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<xsl:value-of select="datum_projekt" />
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="490pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="181.5mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="80pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="491pt" left="62pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Thema der Diplomarbeit
|
||||
|
||||
<fo:inline font-size="12pt" font-weight="900" text-align="center" > \n
|
||||
\n <xsl:value-of select="themenbereich" />
|
||||
</fo:inline>
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="130mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="62pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
2. Teil der Diplomprüfung: Kommissionelle Prüfung
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="430pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="51mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="10pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="571pt" left="432pt" height="0pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
<xsl:value-of select="datum" />
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="234pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="120.1mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="60pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="236pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Vorsitzender des Prüfungssenats
|
||||
\n
|
||||
\n
|
||||
\n
|
||||
<xsl:value-of select="vorsitz_nachname" />
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="60pt" height="0pt">
|
||||
<fo:table table-layout="fixed" border-collapse="separate">
|
||||
<fo:table-column column-width="61mm"/>
|
||||
<fo:table-body>
|
||||
<fo:table-row line-height="60pt">
|
||||
<fo:table-cell border-align="right" border-width="0.2mm" border-style="solid" >
|
||||
<fo:block line-height="12pt" font-family="sans-serif" font-size="10pt" content-width="45mm" text-align="center">
|
||||
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="586pt" left="62pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
|
||||
Ort, Ausstellungsdatum
|
||||
\n
|
||||
\n
|
||||
\n
|
||||
Wien, <xsl:value-of select="datum_aktuell" />
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
<fo:block-container position="absolute" top="650pt" left="62pt" height="1pt">
|
||||
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="6pt">
|
||||
|
||||
Gesamtnote: mit ausgezeichnetem Erfolg bestanden, mit gutem Erfolg bestanden, bestanden \n ZVR-Nr.: 074476426, DVR-Nr.: 0928381
|
||||
|
||||
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<fo:flow flow-name="xsl-region-body" >
|
||||
<!-- Logo -->
|
||||
<fo:block>
|
||||
<fo:external-graphic src="../skin/images/TWLogo_klein.jpg" posx="140" posy="15" />
|
||||
<fo:external-graphic src="../skin/images/logo.jpg" posx="140" posy="15" width="60mm" height="20mm" />
|
||||
</fo:block>
|
||||
<!-- Titel -->
|
||||
<fo:block font-size="15pt">Fachhochschule Technikum Wien Lehrauftrag</fo:block>
|
||||
|
||||
Reference in New Issue
Block a user