Index: trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/ApplicationWorkbenchWindowAdvisor.java
===================================================================
--- trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/ApplicationWorkbenchWindowAdvisor.java	(revision 6)
+++ trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/ApplicationWorkbenchWindowAdvisor.java	(revision 7)
@@ -25,5 +25,4 @@
 		configurer.setShowCoolBar(false);
 		configurer.setShowStatusLine(false);
-		configurer.setTitle("The Exercise Manager");
 	}
 }
Index: trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/exercisesheet/PdfGenerator.java
===================================================================
--- trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/exercisesheet/PdfGenerator.java	(revision 6)
+++ trunk/de.ugoe.cs.swe.exercises/src/de/ugoe/cs/swe/exercises/exercisesheet/PdfGenerator.java	(revision 7)
@@ -102,4 +102,9 @@
 			}
 
+			String templatePath = ExerciseSVN.SVNpath;
+			templatePath = templatePath.replace('\\','/');
+
+			String deliveryDate = "todo...";
+			
 			template = template.replaceAll("(\\W)LECTURE(\\W)", "$1"
 					+ Matcher.quoteReplacement(event.toString()) + "$2");
@@ -113,4 +118,8 @@
 			template = template.replaceAll("(\\W)EXERCISES(\\W)", "$1"
 					+ Matcher.quoteReplacement(exercisesString) + "$2");
+			template = template.replaceAll("(\\W)TEMPLATEPATH(\\W)", "$1"
+					+ Matcher.quoteReplacement(templatePath) + "$2");
+			template = template.replaceAll("(\\W)DELIVERYDATE(\\W)", "$1"
+					+ Matcher.quoteReplacement(deliveryDate) + "$2");
 
 			FileOutputStream ofstream = new FileOutputStream(latexFile);
