]> err.no Git - sope/commitdiff
fixed a <style> comment bug
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 17 Aug 2006 17:40:34 +0000 (17:40 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 17 Aug 2006 17:40:34 +0000 (17:40 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1342 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/WEExtensions/ChangeLog
sope-appserver/WEExtensions/Version
sope-appserver/WEExtensions/WECalendarField.m

index 6096ac77d1fec13978e7ef32945dd61af058dbec..51fd5bb0fc603d624468254c6a70ea9325ee7dbc 100644 (file)
@@ -1,5 +1,8 @@
 2006-08-17  Wolfgang Sourdeau  <WSourdeau@Inverse.CA>
 
+       * WECalendarField.m: do not use "<!--" in <style> tags, those comments
+         are not valid in CSS (v4.5.90)
+
        * JSStringTable.m: properly HTML escape JavaScript inside <script>
          sections (v4.5.89)
 
index deecfadacfd229e9f1a9a919e4407ee45d8e867a..67c5dd5d8d96acd949b8c8e6695cffaa6104bf8d 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=89
+SUBMINOR_VERSION:=90
 
 # v4.5.76 requires libNGObjWeb v4.5.176
 # v4.5.75 requires libNGObjWeb v4.5.174
index 6e3fa7a4280d7637850d4fd44cf0cb0dc8267d28..826551e4072653e9563ab8dd7e36c7b9e4b3ef58 100644 (file)
@@ -160,11 +160,9 @@ static NSString *retStr02ForInt(int i) {
   if (divCount == 0) {
     [_response appendContentString:
       @"<style type=\"text/css\">\n"
-      @"<!--\n"
       @"A.DDLlink { width: 23px; font: normal 10pt Arial; color: "
       @"#6F1537; text-decoration: none; } \n"
       @"A.DDLlink:hover { color: red; background: #FAE8B8; } \n"
-      @"//-->\n"
       @"</style>"];
     [_response appendContentString:
       @"<script language=\"JavaScript\">\n"
@@ -777,7 +775,6 @@ static NSString *retStr02ForInt(int i) {
   
   if (![_ctx valueForKey: @"WEDateFieldScriptDone"]) {
     tmp = @"<style type='text/css'>\n"
-          @"<!--\n"
           @"TD.heading { text-decoration: none; color: black; "
             @"font: bold 8pt arial, helvetica; } \n "
           @"A.focusDay { color: blue; text-decoration: none; "
@@ -791,7 +788,6 @@ static NSString *retStr02ForInt(int i) {
             @"{ color: %@; text-decoration: none; font: 8pt Arial; }\n"
           @"TD.topCal "
             @"{ font: 10pt Arial; color: %@; background-color: %@; } \n"
-          @"-->\n"
           @"</style>\n";
     tmp = [StrClass stringWithFormat: tmp, _hNav, _hCol, _hBack];
     [_response appendContentString: tmp];