/usr/share/xul-ext/gnome-keyring/content/options.xul is in xul-ext-gnome-keyring 0.10-1~deb8u1.
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 | <?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<dialog id="gnome-keyring-options"
onload="GnomeKeyringOptions.init()"
ondialogaccept="return GnomeKeyringOptions.save()"
title="GNOME Keyring Options"
buttons="accept,cancel"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="options.js" />
<hbox align="left">
<radiogroup id="keyringType">
<radio label="Use the default keyring" value="default"/>
<radio label="Store passwords only for this session" value="session"/>
<hbox align="left">
<radio label="Use an available keyring" value="choose"/>
<menulist id="keyringNameMenu">
<menupopup>
</menupopup>
</menulist>
</hbox>
</radiogroup>
</hbox>
</dialog>
|