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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
<gconfschemafile>
<schemalist>
<schema>
<key>/schemas/apps/qa-assistant/user/use-gpg</key>
<applyto>/apps/qa-assistant/user/use-gpg</applyto>
<owner>qa-assistant</owner>
<type>bool</type>
<default>false</default>
<locale name="C">
<short>Whether to gpg sign a review</short>
<long>
A QA Review may be gpg signed. Setting this value tells us the user
wants to sign their reviews.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/user/gpg-identity</key>
<applyto>/apps/qa-assistant/user/gpg-identity</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<locale name="C">
<short>Identifier for selecting a gpg signing key.</short>
<long>
Set this value to a string that can be used as a gpg ID to use
the proper key to sign the review.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/no-auto-display</key>
<applyto>/apps/qa-assistant/display/no-auto-display</applyto>
<owner>qa-assistant</owner>
<type>bool</type>
<default>false</default>
<locale name="C">
<short>Do not auto display a negative item.</short>
<long>
When an item is reviewed negatively (Fail or Non-Blocker) it
usually makes sense to display the message in the Review. Setting
this to false allows that to happen. Setting it to true prevents
that.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/fail-color</key>
<applyto>/apps/qa-assistant/display/fail-color</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<default>#FF0000</default>
<locale name="C">
<short>Color of failed entries</short>
<long>
Color failed entries this color when we display them on the screen.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/pass-color</key>
<applyto>/apps/qa-assistant/display/pass-color</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<default>#006400</default>
<locale name="C">
<short>Color of passed entries</short>
<long>
Color passed entries this color when we display them on the screen.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/minor-color</key>
<applyto>/apps/qa-assistant/display/minor-color</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<default>#A020F0</default>
<locale name="C">
<short>Color of entries for minor problems</short>
<long>
Color minor problem entries this color when we display them on
the screen.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/notes-color</key>
<applyto>/apps/qa-assistant/display/notes-color</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<locale name="C">
<default>#000000</default>
<short>Color of entries that are just notes</short>
<long>
Color entries that are only informational this color when we
display them on the screen.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/disable-checklist-descriptions</key>
<applyto>/apps/qa-assistant/display/disable-checklist-descriptions</applyto>
<owner>qa-assistant</owner>
<type>bool</type>
<default>false</default>
<locale name="C">
<short>Don't display checklist descriptions.</short>
<long>
Each checklist entry can have a long description associated with
it that explains what the entry is for. It may also contain hints
for filling out the item. Setting this to False enables display of
these descriptions. A True setting disables it.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/display/checklist-description-wait</key>
<applyto>/apps/qa-assistant/display/checklist-description-wait</applyto>
<owner>qa-assistant</owner>
<type>int</type>
<default>500</default>
<locale name="C">
<short>Time before displaying the description</short>
<long>
When the user leaves the mouse over the checklist items we will
wait this number of milliseconds before popping up a window to
display the description.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/files/gpg-path</key>
<applyto>/apps/qa-assistant/files/gpg-path</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<default>/usr/bin/gpg</default>
<locale name="C">
<short>Path to the gpg program</short>
<long>
Set this value to the path to the gpg binary. On most systems this
is /usr/bin/gpg.
</long>
</locale>
</schema>
<schema>
<key>/schemas/apps/qa-assistant/files/user-state-dir</key>
<applyto>/apps/qa-assistant/files/user-state-dir</applyto>
<owner>qa-assistant</owner>
<type>string</type>
<default>~/qa-assistant</default>
<locale name="C">
<short>Directory for user state data</short>
<long>
Sometimes the program needs to create files for processing a
requested action on the checklist. This can either be saved into
a per-user temporary directory or a per-user state directory.
Sometimes the program can use the results that are saved in this
directory between runs.
</long>
</locale>
</schema>
</schemalist>
</gconfschemafile>
|