Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.0 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / data / gconf / revelation.schemas

  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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
<?xml version="1.0" ?>
<gconfschemafile>
        <schemalist>
                <schema>
                        <key>/schemas/apps/revelation/behavior/doubleclick</key>
                        <applyto>/apps/revelation/behavior/doubleclick</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>goto</default>

                        <locale name="C">
                                <short>Action to take on doubleclick</short>
                                <long>
                                        The action to take when doubleclicking an
                                        account in the treeview - valid values
                                        are "goto", "edit", and "copy".
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/clipboard/chain_username</key>
                        <applyto>/apps/revelation/clipboard/chain_username</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>When copying password, also copy username (chained)</short>
                                <long>
                                        If set, Revelation will copy both the username
                                        and the password to the clipboard when pressing
                                        "Copy Password" one after the other (when username
                                        is pasted, the password is automatically copied).
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/file/autoload</key>
                        <applyto>/apps/revelation/file/autoload</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>Autoload a file on startup</short>
                                <long>
                                        If set, Revelation will automatically
                                        load a data file on startup. The file to
                                        open is specified in the "autoload_file" key.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/file/autoload_file</key>
                        <applyto>/apps/revelation/file/autoload_file</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>
                        <locale name="C">
                                <short>A file to autoload on startup</short>
                                <long>
                                        The full path to a file which Revelation
                                        should autoload when starting. The "autoload"
                                        key must also be set to true for this to
                                        work.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/file/autolock</key>
                        <applyto>/apps/revelation/file/autolock</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Autolock file when inactive</short>
                                <long>
                                        If set, Revelation will automatically
                                        lock the current file after a period of inactivity.
                                        The inactivity period is specified in the
                                        "autolock_timeout" key.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/file/autolock_timeout</key>
                        <applyto>/apps/revelation/file/autolock_timeout</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>15</default>

                        <locale name="C">
                                <short>Timeout before autolocking file</short>
                                <long>
                                        The number of minutes of inactivity
                                        before the data file is automatically
                                        locked. The "autolock" option must be
                                        enabled for this to take effect.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/file/autosave</key>
                        <applyto>/apps/revelation/file/autosave</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>Autosave data when changed</short>
                                <long>
                                        If set, Revelation will automatically
                                        save the data file when an entry is added,
                                        updated or removed.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/creditcard</key>
                        <applyto>/apps/revelation/launcher/creditcard</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for creditcard accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a creditcard account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/cryptokey</key>
                        <applyto>/apps/revelation/launcher/cryptokey</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for encryption key accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a encryption key account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/database</key>
                        <applyto>/apps/revelation/launcher/database</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>gnome-terminal -x mysql -h %h %(-u %u%) %(-p%p%) %?D</default>

                        <locale name="C">
                                <short>Launcher for database accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a database account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/door</key>
                        <applyto>/apps/revelation/launcher/door</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for door accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a door account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/email</key>
                        <applyto>/apps/revelation/launcher/email</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for email accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching an email account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/ftp</key>
                        <applyto>/apps/revelation/launcher/ftp</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>nautilus ftp://%?u%(:%p%)@%h%(:%o%)/</default>

                        <locale name="C">
                                <short>Launcher for ftp accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching an ftp account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/generic</key>
                        <applyto>/apps/revelation/launcher/generic</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for genereic accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a generic account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/phone</key>
                        <applyto>/apps/revelation/launcher/phone</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default></default>

                        <locale name="C">
                                <short>Launcher for phone accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a phone account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/shell</key>
                        <applyto>/apps/revelation/launcher/shell</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>gnome-terminal -x ssh %(-l %u%) %h</default>

                        <locale name="C">
                                <short>Launcher for shell accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a shell account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/launcher/website</key>
                        <applyto>/apps/revelation/launcher/website</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>gnome-open %U</default>

                        <locale name="C">
                                <short>Launcher for website accounts</short>
                                <long>
                                        A command which will be executed when
                                        launching a website account.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/passwordgen/avoid_ambiguous</key>
                        <applyto>/apps/revelation/passwordgen/avoid_ambiguous</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Avoid ambiguous characters</short>
                                <long>
                                        If enabled, generated passwords will not
                                        include ambiguous characters (such as
                                        0 and O).
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/passwordgen/length</key>
                        <applyto>/apps/revelation/passwordgen/length</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>8</default>

                        <locale name="C">
                                <short>Length of passwords</short>
                                <long>
                                        The number of characters in generated
                                        passwords. A length less than 4 characters
                                        will be ignored.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/search/folders</key>
                        <applyto>/apps/revelation/search/folders</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Search for folders</short>
                                <long>
                                        When enabled, the entry searcher will search
                                        for folders as well as normal accounts.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/search/namedesc</key>
                        <applyto>/apps/revelation/search/namedesc</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>Search in name and description only</short>
                                <long>
                                        When enabled, the entry searcher will only
                                        search in the name and description of
                                        entries.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/search/casesens</key>
                        <applyto>/apps/revelation/search/casesens</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>Case-sensitive search</short>
                                <long>
                                        When enabled, searches will be case-sensitive.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/pane-position</key>
                        <applyto>/apps/revelation/view/pane-position</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>300</default>

                        <locale name="C">
                                <short>Initial main pane position</short>
                                <long>
                                        The initial position of the pane in
                                        the main application window, in pixels.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/passwords</key>
                        <applyto>/apps/revelation/view/passwords</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Show passwords</short>
                                <long>
                                        When set, passwords will be displayed
                                        in plain text. Turning this option off
                                        will obscure passwords with ******.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/searchbar</key>
                        <applyto>/apps/revelation/view/searchbar</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>false</default>

                        <locale name="C">
                                <short>Displays the searchbar</short>
                                <long>
                                        When set, Revelation will display
                                        its searchbar.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/statusbar</key>
                        <applyto>/apps/revelation/view/statusbar</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Displays the statusbar</short>
                                <long>
                                        When set, Revelation will display
                                        its statusbar.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/toolbar</key>
                        <applyto>/apps/revelation/view/toolbar</applyto>
                        <owner>revelation</owner>
                        <type>bool</type>
                        <default>true</default>

                        <locale name="C">
                                <short>Displays the toolbar</short>
                                <long>
                                        When set, Revelation will display
                                        its toolbar.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/toolbar_style</key>
                        <applyto>/apps/revelation/view/toolbar_style</applyto>
                        <owner>revelation</owner>
                        <type>string</type>
                        <default>desktop</default>

                        <locale name="C">
                                <short>Sets the toolbar style</short>
                                <long>
                                        Sets the style of the toolbar items. "desktop" uses
                                        desktop default, "both" shows icons and text, "both-horiz"
                                        shows icons and important text, "icons" shows icons only,
                                        and "text" shows text only.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/window-height</key>
                        <applyto>/apps/revelation/view/window-height</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>400</default>

                        <locale name="C">
                                <short>Initial window height</short>
                                <long>
                                        The initial height of the main window,
                                        in pixels.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/window-position-x</key>
                        <applyto>/apps/revelation/view/window-position-x</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>0</default>

                        <locale name="C">
                                <short>Initial horizontal window position</short>
                                <long>
                                        The initial horizontal position of the main
                                        window, in pixels.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/window-position-y</key>
                        <applyto>/apps/revelation/view/window-position-y</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>0</default>

                        <locale name="C">
                                <short>Initial vertical window position</short>
                                <long>
                                        The initial vertical position of the main
                                        window, in pixels.
                                </long>
                        </locale>
                </schema>

                <schema>
                        <key>/schemas/apps/revelation/view/window-width</key>
                        <applyto>/apps/revelation/view/window-width</applyto>
                        <owner>revelation</owner>
                        <type>int</type>
                        <default>600</default>

                        <locale name="C">
                                <short>Initial window width</short>
                                <long>
                                        The initial width of the main window,
                                        in pixels.
                                </long>
                        </locale>
                </schema>

        </schemalist>
</gconfschemafile>