This file is indexed.

/usr/share/qtmir/qtmir-demo-client/qml-demo-client.qml is in qtmir-tests 0.4.8+16.04.20160330-0ubuntu1.

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
import QtQuick 2.0

Rectangle {
    onWidthChanged: print("WIDTH", width)
    onHeightChanged: print("HEIGHT", height)
    width: 600
    height: 80*6
    color: "blue"

    Column {
        anchors.fill: parent
        MovingRect {}
        MovingRect {}
        MovingRect {}
        MovingRect {}
        MovingRect {}
        MovingRect {}
    }

    Rectangle {
        id: flasher
        width: 100
        height: 100
        anchors.bottom: parent.bottom
        anchors.right: parent.right
        color: (on) ? "yellow" : "green"
        property bool on: false
        Timer {
            interval: 1000
            repeat: true
            running: true
            onTriggered: flasher.on = !flasher.on
        }
    }
}