- rolled in a fix the KDE folks did for the operations that generate HTML fragments
* kjs/string_object.cpp: (StringProtoFuncImp::call): Added quote marks to generated HTML.
- rolled out an old workaround we don't need any more
* JavaScriptCore.pbproj/project.pbxproj: Remove -Wno-long-double because the <math.h> issue that
required it is no longer there.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7747
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
-2004-09-30 Richard Williamson <rjw@apple.com>
+2004-10-04 Darin Adler <darin@apple.com>
+
+ Reviewed by Ken.
+
+ - rolled in a fix the KDE folks did for the operations that generate HTML fragments
+
+ * kjs/string_object.cpp: (StringProtoFuncImp::call): Added quote marks to generated HTML.
+
+ - rolled out an old workaround we don't need any more
+
+ * JavaScriptCore.pbproj/project.pbxproj: Remove -Wno-long-double because the <math.h> issue that
+ required it is no longer there.
+
+2004-09-30 Richard Williamson <rjw@apple.com>
Fixed <rdar://problem/3821215> NPN hasMethod and hasProperty functions should take NPObjects, not NPClass
SECTORDER_FLAGS = "-sectorder __TEXT __text /AppleInternal/OrderFiles/JavaScriptCore.order";
STYLE_LDFLAGS = "-umbrella WebKit -allowable_client JavaScriptGlue";
USE_GCC3_PFE_SUPPORT = YES;
- WARNING_CFLAGS = "-Werror -Wall -W -Wcast-align -Wchar-subscripts -Wformat-security -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wwrite-strings -Wno-format-y2k -Wno-unused-parameter -Wno-long-double";
+ WARNING_CFLAGS = "-Werror -Wall -W -Wcast-align -Wchar-subscripts -Wformat-security -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wwrite-strings -Wno-format-y2k -Wno-unused-parameter";
WRAPPER_EXTENSION = framework;
};
dependencies = (
result = String("<sup>" + s + "</sup>");
break;
case Fontcolor:
- result = String("<font color=" + a0.toString(exec) + ">"
- + s + "</font>");
+ result = String("<font color=\"" + a0.toString(exec) + "\">" + s + "</font>");
break;
case Fontsize:
- result = String("<font size=" + a0.toString(exec) + ">"
- + s + "</font>");
+ result = String("<font size=\"" + a0.toString(exec) + "\">" + s + "</font>");
break;
case Anchor:
- result = String("<a name=" + a0.toString(exec) + ">"
- + s + "</a>");
+ result = String("<a name=\"" + a0.toString(exec) + "\">" + s + "</a>");
break;
case Link:
- result = String("<a href=" + a0.toString(exec) + ">"
- + s + "</a>");
+ result = String("<a href=\"" + a0.toString(exec) + "\">" + s + "</a>");
break;
#endif
}