|
ccollab admin review-xml |
|
The ccollab admin review-xml command allows you to export the specified reviews to XML format. Additionally, you may specify an XPath expression to evaluate against the resulting XML, or specify an XSL file to post-process the XML. Command Line Syntax: ccollab [global-options] admin review-xml [--xpath <value>] [--xsl-file <value>] <review> [<review> ...]
Examples: Output 'last' review to console: ccollab admin review-xml last Export reviews 1234 and 1354 to XML file: ccollab admin review-xml 1234 1354 > reviews.xml Export reviews 1234 and 1354 to HTML file by applying XSL post-processing: ccollab admin review-xml --xsl-file ToHTML.xsl 1234 1354 > reviews.html Get ID of 'last' review: ccollab admin review-xml last --xpath string(//reviews/review/@reviewId) Get title of review 1354: ccollab admin review-xml 1354 --xpath //reviews/review/general/title/text() Get number of defects in review 2478 with 'Major' severity: ccollab admin review-xml 2478 --xpath count(//reviews/review/defects/defect[custom-defect-fields/severity='Major']) Remarks:
ccollab admin review-xml 43 --xpath "//reviews/review/participants/participant[role='Author']"
|
|
© 2003-2025 SmartBear Software. All rights reserved. |