Searched refs:escapeElem (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuihlpgraphsimple.py32 from common.webutils import escapeAttr, escapeElem; namespace
80 % (escapeElem(oRow.sName), escapeAttr(str(self.cxMaxBar + 2)));
85 sValue = escapeElem(oRow.asValues[j]);
121 % (sColor, escapeElem(aoTable[0].asValues[j]));
H A Dwuivcshistory.py79 sEntry += ' by <span class="tmvcstimeline-author">%s</span>' % ( webutils.escapeElem(oEntry.sAuthor), );
82 sEntry += ' <dd>%s</dd>\n' % ( webutils.escapeElem(oEntry.sMessage), );
H A Dwuitestresult.py63 return webutils.escapeElem(self.formatTsShort(oObject));
65 return webutils.escapeElem(oObject);
66 return webutils.escapeElem(str(oObject));
90 sHtml += u' <th scope="row">%s</th>\n' % (webutils.escapeElem(aoRow[0]),);
104 % ('red' if sStatus == 'failure' else 'green', webutils.escapeElem(sStatus.upper()))
130 sDisplayName = webutils.escapeElem(sName);
164 webutils.escapeElem(self.formatTsShort(tsEvent)),
166 webutils.escapeElem(str(oTestResult.tsElapsed)) if oTestResult.tsElapsed is not None else '',
169 webutils.escapeElem(oTestResult.enmStatus), webutils.escapeElem(sErrCn
[all...]
H A Dwuihlpform.py36 from common.webutils import escapeAttr, escapeElem; namespace
73 asParts[i] = escapeElem(asParts[i].strip());
76 sText = escapeElem(sText);
89 % (escapeAttr(sDivSubClass), escapeAttr(sName), escapeElem(sLabel),
94 % (escapeAttr(sDivSubClass), escapeAttr(sName), escapeElem(sLabel)) );
115 % ( escapeAttr(sName), escapeAttr(sName), sExtraAttribs, escapeElem(str(sValue)) ));
129 % ( escapeAttr(sName), escapeAttr(sName), sExtraAttribs, escapeElem(sValue), sPostHtml ));
138 % ( escapeAttr(sName), escapeAttr(sName), sExtraAttribs, escapeElem(str(sValue)), sPostHtml ));
159 % ( escapeAttr(sName), escapeAttr(sName), sExtraAttribs, escapeElem(sNewValue)))
169 % ( escapeAttr(sName), escapeAttr(sName), sExtraAttribs, escapeElem(sNewValu
[all...]
H A Dwuicontentbase.py110 return sFmt % (sExtraAttrs, webutils.escapeAttr(self.sUrl), webutils.escapeElem(self.sName));
183 % (webutils.escapeAttr(sSpanClass), webutils.escapeElem(sText),));
367 len(oEntry.aoChanges) + 1, webutils.escapeElem(self.formatTsShort(oEntry.tsEffective)),
368 len(oEntry.aoChanges) + 1, webutils.escapeElem(self.formatTsShort(oEntry.tsExpire)),
377 webutils.escapeElem(oChange.sAttr),
378 webutils.escapeElem(oChange.sOldText),
379 webutils.escapeElem(oChange.sNewText), );
543 sContent = '<p class="tmerrormsg">' + webutils.escapeElem(sErrorMsg) + '</p>\n' + sContent;
619 sRow += webutils.escapeElem(self.formatTsShort(oElement));
621 sRow += webutils.escapeElem(unicod
[all...]
H A Dwuilogviewer.py154 % (iLine, iLine, iLine, offLine, webutils.escapeElem(sLine.rstrip()));
181 return (sTitle, '<p>%s</p>\n' % (webutils.escapeElem(oSizeOrError),),);
H A Dwuiadminbuildcategory.py69 sHtml += ' <li class="tmshowall">%s</li>\n' % (webutils.escapeElem(sOsArch),);
H A Dwuiadmintestgroup.py106 % ( webutils.escapeElem(oMember.oTestCase.sName),
142 webutils.escapeElem(oVar.sArgs), );
H A Dwuiadminbuildsource.py100 sHtml += ' <li class="tmshowall">%s</a></li>\n' % (webutils.escapeElem(sTmp),);
H A Dwuiadmin.py653 self._sPageBody += '<h3>%s (ID %#d)</h3>' % (webutils.escapeElem(oGroup.sName), oGroup.idSchedGroup);
659 % (webutils.escapeElem(str(oXcpt)),);
667 self._sPageBody += '<p>%s.</p>' % (webutils.escapeElem(oError[0]),);
670 # self._sPageBody += '<p>%s.</p>' % (webutils.escapeElem(oError[0]),);
672 # self._sPageBody += '<p>%s.</p>' % (webutils.escapeElem(oError[0]),);
675 % (webutils.escapeElem(oError[0]), webutils.escapeElem(str(oError[1])));
677 self._sPageBody += '<p>%s<p>\n' % (webutils.escapeElem(sMsg),);
H A Dwuiadmintestcase.py88 webutils.escapeElem(oTmp.sArgs.replace('-', u'\u2011')),)
H A Dwuibase.py180 + webutils.escapeElem(aoItem[0]) + '</a></li>\n';
194 + webutils.escapeElem(asSubItem[0]) + '</a></li>\n';
/vbox/src/VBox/ValidationKit/common/
H A Dwebutils.py51 def escapeElem(sText): function
70 Stringifies the object and hands it to escapeElem.
73 return escapeElem(oObject);
74 return escapeElem(str(oObject));
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dwebservergluebase.py474 fnWrite(' <tr><td>' + webutils.escapeElem(sKey) + '</td><td>' \
475 + webutils.escapeElem(str(dDict.get(sKey))) \
502 fnWrite(' <tr><td>' + str(i) + '</td><td>' + webutils.escapeElem(str(aoStuff[i])) + '</td></tr>\n');
H A Ddb.py560 webutils.escapeElem(aEntry[1]),
561 webutils.escapeElem(aEntry[4]),
567 % (webutils.escapeElem('\n'.join([aoRow[0] for aoRow in aEntry[5]])),);

Completed in 2395 milliseconds