From efffc8687a0fe92b993e9b65de3e4511df36815d Mon Sep 17 00:00:00 2001 From: Egil Moeller Date: Mon, 22 Mar 2010 19:26:32 +0100 Subject: Bugfix for ACE compiler --- infrastructure/ace/bin/make | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'infrastructure') diff --git a/infrastructure/ace/bin/make b/infrastructure/ace/bin/make index dad11ff..0a39d91 100755 --- a/infrastructure/ace/bin/make +++ b/infrastructure/ace/bin/make @@ -263,15 +263,15 @@ def doMake { def copyFileToEtherpad(fromName: String, toName: String) { var code = getFile(srcDir+"/"+fromName); - code = replaceFirstLine(code, "// DO NOT EDIT THIS FILE, edit "+ - "infrastructure/ace/www/"+fromName); + code = "// DO NOT EDIT THIS FILE, edit "+ + "infrastructure/ace/www/"+fromName+"\n"+code; code = code.replaceAll("""(?<=\n)\s*//\s*%APPJET%:\s*""", ""); putFile(code, "../../etherpad/src/etherpad/collab/ace/"+toName); } def copyFileToClientSide(fromName: String, toName: String) { var code = getFile(srcDir+"/"+fromName); - code = replaceFirstLine(code, "// DO NOT EDIT THIS FILE, edit "+ - "infrastructure/ace/www/"+fromName); + code = "// DO NOT EDIT THIS FILE, edit "+ + "infrastructure/ace/www/"+fromName+"\n"+code; code = code.replaceAll("""(?<=\n)\s*//\s*%APPJET%:.*?\n""", ""); code = code.replaceAll("""(?<=\n)\s*//\s*%CLIENT FILE ENDS HERE%[\s\S]*""", ""); -- cgit v1.2.3-1-g7c22