This file is indexed.

/usr/share/kde4/apps/plasma/services/tweet.operations is in plasma-dataengines-addons 4:4.13.0-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
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM
    "http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfg>
    <!-- FIXME KDE5: refresh, auth and update to become statuses/refresh statuses/auth statuses/update -->
    <group name="refresh">
    </group>

    <group name="loadMore">
        <entry name="before_id" type="String">
            <label>Load tweets before this id</label>
        </entry>
    </group>

    <group name="auth">
        <entry name="user" type="String">
            <label>The user name of the account</label>
        </entry>
        <entry name="password" type="String">
            <label>The login password for the account</label>
        </entry>
    </group>

    <group name="forget">
        <entry name="user" type="String">
            <label>The user name of the account to be forgotten</label>
        </entry>
        <entry name="serviceUrl" type="String">
            <label>Service API URL of the account to be forgotten</label>
        </entry>
    </group>

    <group name="update">
        <entry name="status" type="String">
            <label>The tweet text</label>
        </entry>
        <entry name="in_reply_to_status_id" type="String">
            <label>The Id we're of the message we reply to</label>
        </entry>
    </group>

    <group name="statuses/retweet">
        <entry name="id" type="String">
            <label>The Id of the message we're retweeting</label>
        </entry>
    </group>

    <group name="friendships/create">
        <entry name="screen_name" type="String">
            <label>The screen name of the user to follow</label>
        </entry>
    </group>

    <group name="friendships/destroy">
        <entry name="screen_name" type="String">
            <label>The screen name of the user to unfollow</label>
        </entry>
    </group>

    <group name="favorites/create">
        <entry name="id" type="String">
            <label>The Id we're marking as favorite</label>
        </entry>
    </group>

    <group name="favorites/destroy">
        <entry name="id" type="String">
            <label>The Id we're no longer marking as favorite</label>
        </entry>
    </group>
</kcfg>