This commit is contained in:
Andreas Österreicher
2007-07-31 15:22:32 +00:00
parent 7dbf9fc999
commit 92d8742440
7 changed files with 1100 additions and 14 deletions
+15 -4
View File
@@ -78,14 +78,20 @@ $pruefung = new abschlusspruefung($conn, null, true);
$akadgrad = new akadgrad($conn, $row->akadgrad_id, false);
if($mitarbeiter->load($row->vorsitz))
$vorsitz = $mitarbeiter->nachname;
$vorsitz = $mitarbeiter->titelpre.' '.$mitarbeiter->nachname.' '.$mitarbeiter->titelpost;
if($person->load($row->pruefer1))
$pruefer1 = $person->nachname;
if($person->load($row->pruefer2))
$pruefer2 = $person->nachname;
if($person->load($row->pruefer3))
$pruefer3 = $person->nachname;
$qry = "SELECT * FROM public.tbl_benutzerfunktion JOIN campus.vw_mitarbeiter USING(uid) WHERE funktion_kurzbz='rek'";
$rektor = '';
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;
echo "\t<pruefung>".'
<abschlusspruefung_id><![CDATA['.$row->abschlusspruefung_id.']]></abschlusspruefung_id>
<student_uid><![CDATA['.$row->student_uid.']]></student_uid>
@@ -108,8 +114,9 @@ $pruefung = new abschlusspruefung($conn, null, true);
<vorname><![CDATA['.$student->vorname.']]></vorname>
<vornamen><![CDATA['.$student->vornamen.']]></vornamen>
<nachname><![CDATA['.$student->nachname.']]></nachname>
<matrikelnr><![CDATA['.$student->matrikelnr.']]></matrikelnr>
<gebdatum_iso><![CDATA['.$student->gebdatum.']]></gebdatum_iso>
<gebdatum><![CDATA['.$student->gebdatum.']]></gebdatum>
<gebdatum><![CDATA['.$datum_obj->convertISODate($student->gebdatum).']]></gebdatum>
<gebort><![CDATA['.$student->gebort.']]></gebort>
<staatsbuergerschaft><![CDATA['.$staatsbuergerschaft.']]></staatsbuergerschaft>
<staatsbuergerschaft_engl><![CDATA['.$staatsbuergerschaft_engl.']]></staatsbuergerschaft_engl>
@@ -120,7 +127,11 @@ $pruefung = new abschlusspruefung($conn, null, true);
<akadgrad_kurzbz><![CDATA['.$akadgrad->akadgrad_kurzbz.']]></akadgrad_kurzbz>
<titel><![CDATA['.$akadgrad->titel.']]></titel>
<datum_aktuell><![CDATA['.date('d.m.Y').']]></datum_aktuell>
<anmerkung><![CDATA['.$row->anmerkung.']]></anmerkung>';
<anmerkung><![CDATA['.$row->anmerkung.']]></anmerkung>
<bescheidbgbl1><![CDATA['.$studiengang->bescheidbgbl1.']]></bescheidbgbl1>
<titelbescheidvom><![CDATA['.$datum_obj->convertISODate($studiengang->titelbescheidvom).']]></titelbescheidvom>
<rektor><![CDATA['.$rektor.']]></rektor>';
echo "\n\t</pruefung>";
}
@@ -70,8 +70,8 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
gemäß § 5 Abs. 1 des Bundesgesetzes
\nüber Fachhochschul-Studiengänge (Fachhochschul-Studiengesetz - FHStG),
\nBGBl.Nr. 340/1993, idgF,
\nden mit Bescheid des Fachhochschulrates vom 31.08.2006,
\nBGBl.Nr. <xsl:value-of select="bescheidbgbl1" />, idgF,
\nden mit Bescheid des Fachhochschulrates vom <xsl:value-of select="titelbescheidvom" />,
\ngemäß § 5 Abs. 2 FHStG festgesetzten
</fo:block>
@@ -89,7 +89,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="185mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
Bachelor of Science in Engineering
<xsl:value-of select="titel" />
</fo:block>
</fo:block-container>
@@ -106,7 +106,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="205mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
BSc
<xsl:value-of select="akadgrad_kurzbz" />
</fo:block>
</fo:block-container>
@@ -129,7 +129,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="250mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
FH-Prof. Dipl.-Ing. Dr. Fritz Schmöllebeck
<xsl:value-of select="rektor" />
</fo:block>
</fo:block-container>
@@ -0,0 +1,142 @@
<?xml version="1.0" encoding="ISO-8859-15"?>
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes" />
<xsl:template match="abschlusspruefung">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master page-height="297mm" page-width="210mm" margin="5mm 25mm 5mm 25mm" master-name="PageMaster">
<fo:region-body margin="20mm 0mm 20mm 0mm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<xsl:apply-templates select="pruefung"/>
</fo:root>
</xsl:template>
<xsl:template match="pruefung">
<fo:page-sequence master-reference="PageMaster">
<fo:flow flow-name="xsl-region-body" >
<fo:block-container position="absolute" top="42mm" left="25mm" height="20mm">
<fo:block text-align="center" line-height="20pt" font-family="sans-serif" font-size="18pt">
<xsl:text>DIPLOMA</xsl:text>
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="56mm" left="25mm" height="20mm">
<fo:block text-align="center" line-height="20pt" font-family="sans-serif" font-size="12pt">
<xsl:text>The Fachhochschulkollegium awards</xsl:text>
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="70mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="anrede" /><xsl:text> </xsl:text><xsl:value-of select="vorname" /><xsl:text> </xsl:text><xsl:value-of select="vornamen" /><xsl:text> </xsl:text><xsl:value-of select="nachname" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="80mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
born <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort" />,<xsl:text> </xsl:text><xsl:value-of select="geburtsnation" />,
\ncitizen of <xsl:value-of select="staatsbuergerschaft" />,
\nstudent of the FH bachelor degree programme
\nprogramme classification number <xsl:value-of select="studiengang_kz" />,
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="108mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
"<xsl:value-of select="stg_bezeichnung" />"
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="120mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
who successfully passed the bachelor examination on <xsl:value-of select="datum" />
\nat the "Fachhochschule Technikum Wien"
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="145mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
pursuant to the paragraph 5 subsection 1 of the Fachhochschule Studiens Act
\n(Austrian legal reference: Fachhochschul-Studiengesetz - FHStG,
\nBGBl.Nr. <xsl:value-of select="bescheidbgbl1" />, idgF)
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="175mm" 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" />,
\nthe academic degree
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="185mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="titel" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="195mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
abbreviation
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="205mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="akadgrad_kurzbz" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="215mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
Vienna,<xsl:text> </xsl:text><xsl:value-of select="datum_aktuell" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="225mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
On behalf of the Fachhochschulkollegium:
\nThe Rector
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="250mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
<xsl:value-of select="rektor" />
</fo:block>
</fo:block-container>
</fo:flow>
</fo:page-sequence>
</xsl:template>
</xsl:stylesheet >
+336
View File
@@ -0,0 +1,336 @@
<?xml version="1.0" encoding="ISO-8859-15"?>
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes" />
<xsl:template match="abschlusspruefung">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="PageMaster">
<fo:region-body margin="20mm 0mm 20mm 0mm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<xsl:apply-templates select="pruefung"/>
</fo:root>
</xsl:template>
<xsl:template match="pruefung">
<fo:page-sequence master-reference="PageMaster">
<fo:flow flow-name="xsl-region-body" >
<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">
Bachelorprü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.25mm"/>
<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">
Bachelor-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">
Note der Bachelorprü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="560pt" left="60pt" height="0pt">
<fo:table table-layout="fixed" border-collapse="separate">
<fo:table-column column-width="119.4mm"/>
<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="560pt" left="62pt" height="0pt">
<fo:block text-align="left" line-height="12pt" font-family="sans-serif" font-size="8pt">
Kommissionelle Prüfung
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="560pt" left="400pt" height="0pt">
<fo:table table-layout="fixed" border-collapse="separate">
<fo:table-column column-width="60.75mm"/>
<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="560pt" left="402pt" 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="575pt" 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="575pt" left="206pt" height="0pt">
<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="575pt" left="60pt" height="0pt">
<fo:table table-layout="fixed" border-collapse="separate">
<fo:table-column column-width="50.25mm"/>
<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="575pt" left="62pt" height="0pt">
<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="640pt" left="62pt" height="0pt">
<fo:block text-align="left" line-height="4pt" font-family="sans-serif" font-size="6pt">
Gesamtnote: mit ausgezeichnetem Erfolg bestanden, mit gutem Erfolg bestanden, bestanden
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="650pt" left="62pt" height="0pt">
<fo:block text-align="left" line-height="4pt" font-family="sans-serif" font-size="6pt">
ZVR-Nr.: 074476426, DVR-Nr.: 0928381
</fo:block>
</fo:block-container>
</fo:flow>
</fo:page-sequence>
</xsl:template>
</xsl:stylesheet >
+5 -5
View File
@@ -70,8 +70,8 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
gemäß § 5 Abs. 1 des Bundesgesetzes
\nüber Fachhochschul-Studiengänge (Fachhochschul-Studiengesetz - FHStG),
\nBGBl.Nr. 340/1993, idgF,
\nden mit Bescheid des Fachhochschulrates vom 31.08.2006,
\nBGBl.Nr. <xsl:value-of select="bescheidbgbl1" />, idgF,
\nden mit Bescheid des Fachhochschulrates vom <xsl:value-of select="titelbescheidvom" />,
\ngemäß § 5 Abs. 2 FHStG festgesetzten
</fo:block>
@@ -89,7 +89,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="185mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
Diplomingenieur (FH) für technisch-wissenschaftliche Berufe
<xsl:value-of select="titel" />
</fo:block>
</fo:block-container>
@@ -106,7 +106,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="205mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
Dipl.-Ing. (FH)
<xsl:value-of select="akadgrad_kurzbz" />
</fo:block>
</fo:block-container>
@@ -129,7 +129,7 @@ geboren am <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort"
<fo:block-container position="absolute" top="250mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
FH-Prof. Dipl.-Ing. Dr. Fritz Schmöllebeck
<xsl:value-of select="rektor" />
</fo:block>
</fo:block-container>
@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="ISO-8859-15"?>
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes" />
<xsl:template match="abschlusspruefung">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master page-height="297mm" page-width="210mm" margin="5mm 25mm 5mm 25mm" master-name="PageMaster">
<fo:region-body margin="20mm 0mm 20mm 0mm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<xsl:apply-templates select="pruefung"/>
</fo:root>
</xsl:template>
<xsl:template match="pruefung">
<fo:page-sequence master-reference="PageMaster">
<fo:flow flow-name="xsl-region-body" >
<fo:block-container position="absolute" top="42mm" left="25mm" height="20mm">
<fo:block text-align="center" line-height="20pt" font-family="sans-serif" font-size="18pt">
<xsl:text>DIPLOMA</xsl:text>
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="56mm" left="25mm" height="20mm">
<fo:block text-align="center" line-height="20pt" font-family="sans-serif" font-size="12pt">
<xsl:text>The Fachhochschulkollegium awards</xsl:text>
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="70mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="anrede" /><xsl:text> </xsl:text><xsl:value-of select="vorname" /><xsl:text> </xsl:text><xsl:value-of select="vornamen" /><xsl:text> </xsl:text><xsl:value-of select="nachname" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="80mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
born <xsl:value-of select="gebdatum" /> in <xsl:value-of select="gebort" />,<xsl:text> </xsl:text><xsl:value-of select="geburtsnation" />,
\ncitizen of <xsl:value-of select="staatsbuergerschaft" />,
\nstudent of the FH diploma degree programme
\nprogramme classification number <xsl:value-of select="studiengang_kz" />,
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="108mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
"<xsl:value-of select="stg_bezeichnung" />"
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="120mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
who successfully passed the diploma examination on <xsl:value-of select="datum" />
\nat the "Fachhochschule Technikum Wien"
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="145mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
pursuant to the paragraph 5 subsection 1 of the Fachhochschule Studies Act
\n(Austrian legal reference: Fachhochschul-Studiengesetz FHStG,
\nBGBl. Nr. <xsl:value-of select="bescheidbgbl1" />, idgF)
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="165mm" 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" />,
\nthe academic degree
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="185mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="titel" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="195mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
abbreviation
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="205mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="14pt">
<xsl:value-of select="akadgrad_kurzbz" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="215mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
Vienna,<xsl:text> </xsl:text><xsl:value-of select="datum_aktuell" />
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="225mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
On behalf of the Fachhochschulkollegium:
\nThe Rector
</fo:block>
</fo:block-container>
<fo:block-container position="absolute" top="250mm" left="25mm" height="10mm">
<fo:block text-align="center" line-height="14pt" font-family="sans-serif" font-size="12pt">
<xsl:value-of select="rektor" />
</fo:block>
</fo:block-container>
</fo:flow>
</fo:page-sequence>
</xsl:template>
</xsl:stylesheet >
+456
View File
@@ -0,0 +1,456 @@
<?xml version="1.0" encoding="ISO-8859-15"?>
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes" />
<xsl:template match="abschlusspruefung">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master page-height="350mm" page-width="210mm" margin="5mm 10mm 5mm 10mm" master-name="PageMaster">
<fo:region-body margin="20mm 0mm 20mm 0mm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<xsl:apply-templates select="pruefung"/>
</fo:root>
</xsl:template>
<xsl:template match="pruefung">
<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:flow>
</fo:page-sequence>
</xsl:template>
</xsl:stylesheet >