/usr/share/checkbox-gui/qml/SubmissionDialog.qml is in checkbox-gui 0.17.6-0ubuntu6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | /*
* This file is part of Checkbox
*
* Copyright 2013 Canonical Ltd.
*
* Authors:
* - Julia Segal <julia.segal@cellsoftware.co.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.Popups 0.1
import "."
Dialog {
id: dialog
title: i18n.tr("Report")
text: settings.value("submission/message", i18n.tr("The following test report has been generated. You may view it now or save it for later."))
TextField {
RegExpValidator {
id: regex_validator
regExp: new RegExp(settings.value("submission/regex", ".*"));
}
function initialize() {
var input_type = settings.value("submission/input_type", "")
if (input_type == "regex") {
validator = regex_validator;
visible = true;
}
else if (input_type == "none") {
visible = false;
}
else {
inputMethodHints = Qt.ImhEmailCharactersOnly;
visible = true;
}
var secure_id = settings.value("submission/secure_id","");
if (secure_id) {
text = secure_id;
}
}
id: upload_input
placeholderText: settings.value("submission/input_placeholder", i18n.tr("Launchpad E-Mail Address"))
Component.onCompleted: initialize()
}
Row {
function initialize() {
if (settings.value("submission/submit_to_hexr","false").toLowerCase() == "true") {
visible = true;
}
}
spacing: units.gu(8)
visible: false
Label {
id: submit_to_hexr_label
text: i18n.tr("Submit to HEXR:")
}
CheckBox {
id: submit_to_hexr
text: i18n.tr("Submit to HEXR:")
}
Component.onCompleted: initialize()
}
Button {
id: submitbutton
text: settings.value("submission/ok_btn_text", "Submit Results")
enabled: upload_input.acceptableInput
color: UbuntuColors.orange
onClicked: {
var submit_to = settings.value("transport/submit_to", "")
var export_path = settings.value("exporter/xml_export_path", "/tmp/submission.xml")
if (!export_path) {
export_path = guiEngine.GetSaveFileName();
}
var success = guiEngine.GuiExportSessionToFileAsXML(export_path);
if (submit_to == "certification") {
if (success) {
dialog.text = guiEngine.SendSubmissionViaCertificationTransport(export_path,
upload_input.text,
submit_to_hexr.checked);
}
else {
dialog.text = i18n.tr("Could not export the tests results for uploading.");
}
}
else if (submit_to == "local") {
if (success) {
runmanagerview.reportIsSaved = success;
}
}
else {
dialog.text = guiEngine.SendSubmissionViaLaunchpadTransport(export_path,
upload_input.text);
}
}
}
Button {
id: view_button
text: i18n.tr("View Results")
color: UbuntuColors.lightAubergine
onClicked: {
onClicked:{
var mysavepath = '/tmp/report.html';
runmanagerview.reportIsSaved = guiEngine.GuiExportSessionToFileAsHTML(mysavepath);
Qt.openUrlExternally(mysavepath);
}
}
}
Button {
id: donebutton
text: i18n.tr("Done")
color: UbuntuColors.warmGrey
onClicked: {
if (!runmanagerview.reportIsSaved)
PopupUtils.open(submission_warning_dialog, donebutton);
else
PopupUtils.close(dialog)
}
}
Component {
id: submission_warning_dialog
WarningDialog{
text: settings.value("submission/cancel_warning", i18n.tr("You are about to exit this test run without saving your results report. Do you want to save the report?"))
showContinue: false
showCheckbox: false
onCancel: PopupUtils.close(dialog)
}
}
}
|