summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/settings_files.xml
blob: ec5574535864bbe19e7e374f7ddc9f530d8e2858 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<llsd>
  <map>
    <key>Locations</key>
    <map>
      <!--
      The Locations LLSD block specifies the usage pattern of 
      the settings file types listed above. 
      Each location is represented by a LLSD containing the following values:
      PathIndex = hard coded path indicies.
      Files = map of files to load, from above 'Files' section. 
        Each file can have:
        Requirement = level of necessity for loading. 
          0 ( or Req. no key) = do not load
          1 = required, fail if not found
        NameFromSetting = Use the given setting to specify the name. Not valid for
                          "Default"
      -->
      <key>Comment</key>
      <string>List location from which to load files, and the rules about loading those files.</string>
      <key>Persist</key>
      <integer>0</integer>
      <key>Type</key>
      <string>LLSD</string>
      <key>Value</key>
      <map>
        <key>Default</key>
        <map>
          <key>PathIndex</key>
          <integer>2</integer>
          <key>Files</key>
          <map>
            <key>Global</key>
            <map>
              <key>Name</key>
              <string>settings.xml</string>
              <key>Requirement</key>
              <integer>1</integer>
            </map>
            <key>PerAccount</key>
            <map>
              <key>Name</key>
              <string>settings_per_account.xml</string>
              <key>Requirement</key>
              <integer>1</integer>
            </map>
            <key>CrashSettings</key>
            <map>
              <key>Name</key>
              <string>settings_crash_behavior.xml</string>
              <key>Requirement</key>
              <integer>1</integer>
            </map>
          </map>
        </map>
        <key>User</key>
        <map>
          <key>PathIndex</key>
          <integer>1</integer>
          <key>Files</key>
          <map>
            <key>Global</key>
            <map>
              <key>Name</key>
              <string>settings.xml</string>
              <key>NameFromSetting</key>
              <string>ClientSettingsFile</string>
            </map>
            <key>CrashSettings</key>
            <map>
              <key>Name</key>
              <string>settings_crash_behavior.xml</string>
            </map>
          </map>
        </map>
        <key>Account</key>
        <map>
          <key>PathIndex</key>
          <integer>3</integer>
          <key>Files</key>
          <map>
            <key>PerAccount</key>
            <map>
              <key>Name</key>
              <string>settings_per_account.xml</string>
            </map>
          </map>
        </map>
      </map>
    </map>
  </map>
</llsd>