~super-friends/friends/raring

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
<schemalist>
  <schema id="com.canonical.friends" path="/com/canonical/friends/">

    <key name="interval" type="i">
      <default>15</default>
      <summary>Refresh interval in minutes.</summary>
      <range min="5" max="30"/>
      <description>
        The number of minutes friends-service will wait in between
        attempts at downloading new messages.
      </description>
    </key>

    <key name="notifications" type="s">
      <choices>
        <choice value='all'/>
        <choice value='mentions-only'/>
        <choice value='none'/>
      </choices>
      <default>'mentions-only'</default>
      <summary>What kind of notifications should we display?</summary>
      <description>
        Possible values are "all" for all notifications (warning: you
        will get spammed with a lot of notifications), "mentions-only"
        which will only notify you of messages that are addressed
        specifically to you, or "none", which hides all notifications.
      </description>
    </key>

    <key name="debug" type="b">
      <default>false</default>
      <summary>Display debugging messages?</summary>
      <description>
        Whether or not to show verbose debugging messages in the logfile.
      </description>
    </key>

    <key name="shorten-urls" type="b">
      <default>true</default>
      <summary>Shorten URLs?</summary>
      <description>
        Whether or not to automatically shorten URLs in messages that
        we send out to the world.
      </description>
    </key>

    <key name="urlshorter" type="s">
      <choices>
        <choice value="is.gd"/>
        <choice value="cli.gs"/>
        <choice value="tinyurl.com"/>
        <choice value="ur1.ca"/>
      </choices>
      <default>"is.gd"</default>
      <summary>URL shortening service.</summary>
      <description>
        Choose the preferred URL shortening service.
      </description>
    </key>

  </schema>
</schemalist>