Compare commits

..

No commits in common. "88fe209c3e3604edb6a946dbc56423ad206853dc" and "30fad90c87bf7e60c7c2e834711db3fd6ebe31a4" have entirely different histories.

3 changed files with 8 additions and 16 deletions

View file

@ -6,7 +6,6 @@
<delete dir="build"/> <delete dir="build"/>
<delete dir="doc"/> <delete dir="doc"/>
<delete file="beleg.jar"/> <delete file="beleg.jar"/>
<delete file="beleg.ps"/>
</target> </target>
<target name="compile"> <target name="compile">
@ -38,11 +37,4 @@
</javadoc> </javadoc>
</target> </target>
<target name="text">
<exec name="groff">
<!-- TODO: Make folder independent -->
<arg value="-M../hsmw-thesis/"/>
</exec>
</target>
</project> </project>

View file

@ -48,13 +48,13 @@ public class Model {
*/ */
public void fillMockData() { public void fillMockData() {
// Studierende // Studierende
this.add(new Student("students/jotto5", "Jocelyn", "Otto", "000001")); this.add(new Student("students/jotto5", "Jocelyn", "Otto", "0001"));
this.add(new Student("students/vnachn", "Vorname", "Nachname", "000002")); this.add(new Student("students/vnachn", "Vorname", "Nachname", "0002"));
this.add(new Student("students/alovel", "Ada", "Lovelace", "000003")); this.add(new Student("students/alovel", "Ada", "Lovelace", "0003"));
this.add(new Student("students/aturin", "Alan", "Turing", "000004")); this.add(new Student("students/aturin", "Alan", "Turing", "0004"));
this.add(new Student("students/dknuth", "Donald", "Knuth", "000005")); this.add(new Student("students/dknuth", "Donald", "Knuth", "0005"));
this.add(new Student("students/ltorva", "Linus", "Torvalds", "000006")); this.add(new Student("students/ltorva", "Linus", "Torvalds", "0006"));
this.add(new Student("students/dritch", "Dennis", "Ritchie", "000007")); this.add(new Student("students/dritch", "Dennis", "Ritchie", "0007"));
// Gruppen und Beziehungen // Gruppen und Beziehungen
this.add(new Group("groups/if24ws2-b", "Softwareentwicklung WiSe 24/25 Seminargruppe 2")); this.add(new Group("groups/if24ws2-b", "Softwareentwicklung WiSe 24/25 Seminargruppe 2"));

View file

@ -5,7 +5,7 @@ package hsmw.jotto5.beleg.views;
*/ */
public class Defaults { public class Defaults {
public static final String HTMLHEADER = "<!DOCTYPE html><html><title>Beleg SoSe 2025</title><link rel=stylesheet href=\"/style.css\"><head></head><body><div id=\"content\"><main><a href=\"/main\">&uarr;Startseite</a><hr>"; public static final String HTMLHEADER = "<!DOCTYPE html><html><title>Beleg SoSe 2025</title><link rel=stylesheet href=\"/style.css\"><head></head><body><div id=\"content\"><main><hr>";
public static final String HTMLFOOTER = "</main><footer><i><center>Hier k&ouml;nnte ihr Text stehen!</center></i></footer></div></body></html>"; public static final String HTMLFOOTER = "</main><footer><i><center>Hier k&ouml;nnte ihr Text stehen!</center></i></footer></div></body></html>";
} }