This file is indexed.

/usr/lib/python2.7/dist-packages/ubuntuone_credentials/TestWrapperExisting.qml is in ubuntuone-credentials-autopilot 14.04+14.04.20140415.

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
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.OnlineAccounts 0.1
import UbuntuOne 1.0


MainView {

    objectName: "mainView"

    applicationName: "Ubuntu One UOA Provider Plugin Tester"

    width: units.gu(100)    
    height: units.gu(100)

    Page {
        title: "testing"
        objectName: "testingPage"

        Rectangle {
            id: fakeAccount
            objectName: "FakeExistingUOAAccount"
            property var accountId: 47
            signal synced
            
            property string displayName: "my@email.com"
            function remove(){
            }
        }

        Loader {
            id: loader
            property var account: fakeAccount

            anchors.fill: parent

            source: "../../../Main.qml"

        }

    }
}