Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaudi
Gaudi
Commits
527b3ed3
Commit
527b3ed3
authored
10 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Patches
Plain Diff
Fixed escaping of special XML/HTML chars in CTestXML2HTML.
parent
bafd02ff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiPolicy/doc/release.notes
+3
-0
3 additions, 0 deletions
GaudiPolicy/doc/release.notes
GaudiPolicy/scripts/CTestXML2HTML
+14
-15
14 additions, 15 deletions
GaudiPolicy/scripts/CTestXML2HTML
with
17 additions
and
15 deletions
GaudiPolicy/doc/release.notes
+
3
−
0
View file @
527b3ed3
...
...
@@ -2,6 +2,9 @@ package GaudiPolicy
package manager: Marco Clemencic
Commit Id: $Format:%H$
! 2015-03-04 - Marco Clemencic
- Fixed escaping of special XML/HTML chars in CTestXML2HTML.
! 2015-02-21 - Marco Clemencic
- Fixed issue in run_qmtest when called from CMT.
(it should have been fixed already, but the fix disappeared in the merge)
...
...
This diff is collapsed.
Click to expand it.
GaudiPolicy/scripts/CTestXML2HTML
+
14
−
15
View file @
527b3ed3
...
...
@@ -6,7 +6,6 @@ import re
import
shutil
import
bisect
import
time
import
codecs
from
datetime
import
datetime
,
timedelta
from
optparse
import
OptionParser
...
...
@@ -50,6 +49,15 @@ def cleanXml(xmlFileName):
xmlFile
.
write
(
_illegal_xml_chars_Re
.
sub
(
""
,
data
))
xmlFile
.
close
()
def
formatMeasurementText
(
txt
):
'''
Helper to correctly convert plain text to valid HTML (in a <pre> tag).
'''
from
xml.sax.saxutils
import
escape
from
codecs
import
encode
return
'
<pre>{0}</pre>
'
.
format
(
escape
(
encode
(
txt
,
'
utf-8
'
,
'
xmlcharrefreplace
'
)))
## Some regular expression that is going to be used in the next functions
space_Re
=
re
.
compile
(
r
"
[ ]
"
)
illegal_web_chars_Re
=
re
.
compile
(
r
"
[<>,\'\"#]
"
)
...
...
@@ -629,13 +637,10 @@ def main():
# write the stdout
if
Results
.
find
(
"
Measurement
"
)
is
not
None
:
value
=
Results
.
find
(
"
Measurement
"
).
find
(
"
Value
"
)
stdout
=
open
(
os
.
path
.
join
(
testCaseDir
,
"
stdout
"
),
"
w
"
)
stdout
=
open
(
os
.
path
.
join
(
testCaseDir
,
"
stdout
"
),
"
w
"
)
if
value
is
not
None
and
value
.
text
is
not
None
:
stdout
.
write
(
"
<pre>
"
+
codecs
.
encode
(
value
.
text
,
'
utf-8
'
,
'
xmlcharrefreplace
'
)
+
"
</pre>
"
)
else
:
stdout
.
write
(
formatMeasurementText
(
value
.
text
))
else
:
stdout
.
write
(
"
<pre></pre>
"
)
stdout
.
close
()
else
:
...
...
@@ -652,10 +657,7 @@ def main():
# Consider the void measurment
if
value
is
not
None
and
value
.
text
is
not
None
:
NamedMeasurementFile
.
write
(
"
<pre>
"
+
codecs
.
encode
(
value
.
text
,
'
utf-8
'
,
'
xmlcharrefreplace
'
)
+
"
</pre>
"
)
NamedMeasurementFile
.
write
(
formatMeasurementText
(
value
.
text
))
else
:
NamedMeasurementFile
.
write
(
"
<pre></pre>
"
)
NamedMeasurementFile
.
close
()
...
...
@@ -670,10 +672,7 @@ def main():
# Consider the void measurment
if
value
is
not
None
and
value
.
text
is
not
None
:
NamedMeasurementFile
.
write
(
"
<pre>
"
+
codecs
.
encode
(
value
.
text
,
'
utf-8
'
,
'
xmlcharrefreplace
'
)
+
"
</pre>
"
)
NamedMeasurementFile
.
write
(
formatMeasurementText
(
value
.
text
))
else
:
NamedMeasurementFile
.
write
(
"
<pre></pre>
"
)
NamedMeasurementFile
.
close
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment