Compare commits
2 commits
30fad90c87
...
88fe209c3e
Author | SHA1 | Date | |
---|---|---|---|
88fe209c3e | |||
0eafa8adf1 |
3 changed files with 16 additions and 8 deletions
|
@ -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>
|
||||
|
|
|
@ -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"));
|
||||
|
|
|
@ -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\">↑Startseite</a><hr>";
|
||||
public static final String HTMLFOOTER = "</main><footer><i><center>Hier könnte ihr Text stehen!</center></i></footer></div></body></html>";
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue