From 1a41e605cb9030a8fd6f93399bc7dd6a6804f2df Mon Sep 17 00:00:00 2001 From: Minijackson Date: Mon, 26 Feb 2018 14:48:34 +0100 Subject: Remove backup file added by accident --- views/log/main.qml.bak | 139 ------------------------------------------------- 1 file changed, 139 deletions(-) delete mode 100644 views/log/main.qml.bak diff --git a/views/log/main.qml.bak b/views/log/main.qml.bak deleted file mode 100644 index fbe47238..00000000 --- a/views/log/main.qml.bak +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Copyright (C) 2018 Christian Mollekopf, - * - * 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; either version 2 of the License, or - * (at your option) any later version. - * - * 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, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -import QtQuick 2.7 -import QtQuick.Controls 2.0 -import QtQuick.Window 2.0 - -import org.kube.framework 1.0 as Kube -import org.kube.test 1.0 -import "qml" - -ApplicationWindow { - id: app - height: Screen.desktopAvailableHeight * 0.8 - width: Screen.desktopAvailableWidth * 0.8 - - Component.onCompleted: { - var initialState = { - accounts: [{ - id: "account1", - name: "Test Account" - }], - identities: [{ - account: "account1", - name: "Test Identity", - address: "identity@example.org" - }], - resources: [{ - id: "resourceaccount1", - account: "account1", - type: "dummy" - }, - { - id: "resourceaccount2", - account: "account1", - type: "mailtransport" - }], - folders: [{ - id: "folder1", - resource: "resourcefolder1", - name: "Folder 1", - specialpurpose: ["drafts"], - mails: [{ - resource: "resourcemail1", - messageId: "", - date: "2017-07-24T15:46:29", - subject: "subject1", - body: "body", - to: ["to@example.org"], - cc: ["cc@example.org"], - bcc: ["bcc@example.org"], - draft: true - }, - { - resource: "resourcemail2", - messageId: "", - date: "2017-07-23T15:46:29", - subject: "LooooooooooooooooooooooooooooooooooooooooooooooooooooooooonggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggEnd", - body: "LooooooooooooooooooooooooooooooooooooooooooooooooooooooooonggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggEnd\nbody\nbody\n\n\nbody\n\n\nbody\n\n\nbody\n\n\nbody\nbody\n\n\nbody\n\n\nbody\n\n\nbody\n\n\nbody\n\n\n\n\n\n\n\n\nbody\nbody\n\n\nbody\n\n\nbody\n\n\nbody\n\n\nbody\n\n\nbody", - to: ["toLoooooooooooooooooooooooooooooooooooooooooooooooooong@example.org"], - cc: ["ccLoooooooooooooooooooooooooooooooooooooooooooooooooong@example.org"], - bcc: ["bccLoooooooooooooooooooooooooooooooooooooooooooooooooong@example.org"], - draft: true - } - ] - }], - } - TestStore.setup(initialState) - Kube.Fabric.postMessage( - Kube.Messages.notification, - { - "type": Kube.Notifications.error, - "subtype": Kube.Notifications.loginError, - message: "merge1", - resource: "resourceaccount1", - entities: [] - } - ); - Kube.Fabric.postMessage( - Kube.Messages.notification, - { - "type": Kube.Notifications.error, - "subtype": Kube.Notifications.hostNotFoundError, - message: "merge1", - resource: "resourceaccount1", - entities: [] - } - ) - Kube.Fabric.postMessage( - Kube.Messages.notification, - { - "type": Kube.Notifications.error, - "subtype": Kube.Notifications.connectionError, - message: "merge1", - resource: "resource1account", - entities: [] - } - ) - Kube.Fabric.postMessage( - Kube.Messages.notification, - { - "type": Kube.Notifications.error, - "subtype": Kube.Notifications.transmissionError, - message: "merge1", - resource: "resourceaccount1", - entities: ["resourcemail1"] - } - ) - Kube.Fabric.postMessage( - Kube.Messages.notification, - { - "type": Kube.Notifications.error, - "subtype": "customSubType", - message: "merge1", - resource: "resource1", - entities: [] - } - ) - } - - View { - anchors.fill: parent - } -} -- cgit v1.2.3