Changeset 56762 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Jul 3, 2015 1:41:28 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/webutils.py
r56295 r56762 78 78 Stringifies the object and hands it to escapeAttr. May return unicode string. 79 79 """ 80 return escapeAttr(oObject); 80 if utils.isString(oObject): 81 return escapeAttr(oObject); 82 return escapeAttr(str(oObject)); 81 83 82 84 def escapeAttrJavaScriptStringDQ(sText):
Note:
See TracChangeset
for help on using the changeset viewer.