summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/util/XMLCreator.java
diff options
context:
space:
mode:
authorunknown2014-05-08 13:59:31 +0200
committerunknown2014-05-08 13:59:31 +0200
commitea2bbcbaa29508d11404a31b2c17380edc38f80a (patch)
tree275929ef8da853da76e62ad1780ef233aadf0120 /Dozentenmodulserver/src/util/XMLCreator.java
parentFAQ & OTRS (diff)
parent-Kopieren von Temp zu Prod inkl. änderung des Pfades in SQL-DB (diff)
downloadtutor-module-ea2bbcbaa29508d11404a31b2c17380edc38f80a.tar.gz
tutor-module-ea2bbcbaa29508d11404a31b2c17380edc38f80a.tar.xz
tutor-module-ea2bbcbaa29508d11404a31b2c17380edc38f80a.zip
Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module
Conflicts: Dozentenmodul/bin/gui/image/FTPCreateUploader_GUI$6.class Dozentenmodul/bin/gui/image/FTPCreateUploader_GUI$7.class Dozentenmodul/bin/gui/image/FTPCreateUploader_GUI$8.class Dozentenmodul/bin/gui/image/FTPCreateUploader_GUI.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$1.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$2.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$3.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$4.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$5.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI$6.class Dozentenmodul/bin/gui/image/FTPEditUploader_GUI.class Dozentenmodul/bin/gui/lecture/EditLectureAllgemein_GUI$3.class Dozentenmodul/bin/gui/lecture/EditLectureAllgemein_GUI$4.class Dozentenmodul/bin/gui/lecture/EditLectureAllgemein_GUI.class
Diffstat (limited to 'Dozentenmodulserver/src/util/XMLCreator.java')
-rw-r--r--Dozentenmodulserver/src/util/XMLCreator.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dozentenmodulserver/src/util/XMLCreator.java b/Dozentenmodulserver/src/util/XMLCreator.java
index 111a6337..bf49dfe3 100644
--- a/Dozentenmodulserver/src/util/XMLCreator.java
+++ b/Dozentenmodulserver/src/util/XMLCreator.java
@@ -18,6 +18,8 @@ import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
+import models.Configuration;
+
import org.apache.log4j.Logger;
import org.w3c.dom.Comment;
import org.w3c.dom.Document;
@@ -36,7 +38,7 @@ public class XMLCreator {
private Statement st = null;
private ResultSet rs = null;
private String vmName;
- private String filePath = "/srv/openslx/nfs/temp/";
+ private String filePath = Configuration.config.getAbsolute_path()+"prod/";
private String imageName;
private String xmlName;
private static Logger log = Logger.getLogger( BinaryListener.class );