Compare commits

..

2 commits

Author SHA1 Message Date
88fe209c3e Added text part to build system 2025-06-18 15:45:14 +02:00
0eafa8adf1 Minor fixes 2025-06-18 15:44:43 +02:00
3 changed files with 16 additions and 8 deletions

View file

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

View file

@ -48,13 +48,13 @@ public class Model {
*/
public void fillMockData() {
// Studierende
this.add(new Student("students/jotto5", "Jocelyn", "Otto", "0001"));
this.add(new Student("students/vnachn", "Vorname", "Nachname", "0002"));
this.add(new Student("students/alovel", "Ada", "Lovelace", "0003"));
this.add(new Student("students/aturin", "Alan", "Turing", "0004"));
this.add(new Student("students/dknuth", "Donald", "Knuth", "0005"));
this.add(new Student("students/ltorva", "Linus", "Torvalds", "0006"));
this.add(new Student("students/dritch", "Dennis", "Ritchie", "0007"));
this.add(new Student("students/jotto5", "Jocelyn", "Otto", "000001"));
this.add(new Student("students/vnachn", "Vorname", "Nachname", "000002"));
this.add(new Student("students/alovel", "Ada", "Lovelace", "000003"));
this.add(new Student("students/aturin", "Alan", "Turing", "000004"));
this.add(new Student("students/dknuth", "Donald", "Knuth", "000005"));
this.add(new Student("students/ltorva", "Linus", "Torvalds", "000006"));
this.add(new Student("students/dritch", "Dennis", "Ritchie", "000007"));
// Gruppen und Beziehungen
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 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 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 HTMLFOOTER = "</main><footer><i><center>Hier k&ouml;nnte ihr Text stehen!</center></i></footer></div></body></html>";
}