[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/deploy RMLDeploy.java,1.5,1.6
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2003-02-17 02:48:52
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy
In directory sc8-pr-cvs1:/tmp/cvs-serv8260/dev/src/net/sourceforge/idrs/deploy
Modified Files:
RMLDeploy.java
Log Message:
Added methods to assist in file upload
Index: RMLDeploy.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/deploy/RMLDeploy.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** RMLDeploy.java 6 Feb 2003 20:13:44 -0000 1.5
--- RMLDeploy.java 17 Feb 2003 02:48:48 -0000 1.6
***************
*** 179,183 ****
// }
! public void setSrc(
String src,
PrintWriter logger,
--- 179,183 ----
// }
! public void setSrc (
String src,
PrintWriter logger,
***************
*** 185,189 ****
String rmlTrans,
boolean isFile,
! String rmlSchema) {
//System.out.println("Compile : " + compile);
if (compile) {
--- 185,189 ----
String rmlTrans,
boolean isFile,
! String rmlSchema) throws Exception {
//System.out.println("Compile : " + compile);
if (compile) {
***************
*** 210,214 ****
err = true;
exc = e;
! return;
}
} else {
--- 210,215 ----
err = true;
exc = e;
! throw e;
!
}
} else {
|