git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@319 b624d157-de02-0410-bad0-e51aec6abb33master
parent
82f4fc4749
commit
8ec1eeefa4
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,11 @@ |
||||
|
||||
#include "HelpDlg.h" |
||||
|
||||
HelpDlg::HelpDlg(QWidget* parent) : QDialog(parent) { |
||||
setupUi(this); |
||||
textBrowser->setSource(QUrl("qrc:/docs/index.html")); |
||||
buttonPrevious->setIcon(getIcon("go-previous")); |
||||
buttonNext->setIcon(getIcon("go-next")); |
||||
buttonFirst->setIcon(getIcon("go-home")); |
||||
showMaximized(); |
||||
} |
@ -0,0 +1,15 @@ |
||||
|
||||
#ifndef HELPDLG_H |
||||
#define HELPDLG_H |
||||
|
||||
#include "ui_HelpDlg.h" |
||||
|
||||
class HelpDlg : public QDialog, private Ui_HelpDlg |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
HelpDlg(QWidget* parent); |
||||
}; |
||||
|
||||
#endif // HELPDLG_H
|
@ -0,0 +1,202 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<ui version="4.0"> |
||||
<class>HelpDlg</class> |
||||
<widget class="QDialog" name="HelpDlg"> |
||||
<property name="geometry"> |
||||
<rect> |
||||
<x>0</x> |
||||
<y>0</y> |
||||
<width>400</width> |
||||
<height>300</height> |
||||
</rect> |
||||
</property> |
||||
<property name="windowTitle"> |
||||
<string>Help Contents - KeePassX</string> |
||||
</property> |
||||
<layout class="QVBoxLayout" name="verticalLayout"> |
||||
<item> |
||||
<layout class="QHBoxLayout" name="horizontalLayout"> |
||||
<item> |
||||
<widget class="QPushButton" name="buttonPrevious"> |
||||
<property name="toolTip"> |
||||
<string>Previous Page</string> |
||||
</property> |
||||
<property name="text"> |
||||
<string>Previous Page</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<widget class="QPushButton" name="buttonNext"> |
||||
<property name="toolTip"> |
||||
<string>Next Page</string> |
||||
</property> |
||||
<property name="text"> |
||||
<string>Next Page</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<widget class="QPushButton" name="buttonFirst"> |
||||
<property name="toolTip"> |
||||
<string>First Page</string> |
||||
</property> |
||||
<property name="text"> |
||||
<string>First Page</string> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<spacer name="horizontalSpacer"> |
||||
<property name="orientation"> |
||||
<enum>Qt::Horizontal</enum> |
||||
</property> |
||||
<property name="sizeHint" stdset="0"> |
||||
<size> |
||||
<width>40</width> |
||||
<height>20</height> |
||||
</size> |
||||
</property> |
||||
</spacer> |
||||
</item> |
||||
</layout> |
||||
</item> |
||||
<item> |
||||
<widget class="QTextBrowser" name="textBrowser"> |
||||
<property name="openExternalLinks"> |
||||
<bool>true</bool> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<widget class="QDialogButtonBox" name="buttonBox"> |
||||
<property name="orientation"> |
||||
<enum>Qt::Horizontal</enum> |
||||
</property> |
||||
<property name="standardButtons"> |
||||
<set>QDialogButtonBox::Close</set> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
</layout> |
||||
</widget> |
||||
<tabstops> |
||||
<tabstop>textBrowser</tabstop> |
||||
<tabstop>buttonBox</tabstop> |
||||
</tabstops> |
||||
<resources/> |
||||
<connections> |
||||
<connection> |
||||
<sender>buttonBox</sender> |
||||
<signal>accepted()</signal> |
||||
<receiver>HelpDlg</receiver> |
||||
<slot>accept()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>248</x> |
||||
<y>254</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>157</x> |
||||
<y>274</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>buttonBox</sender> |
||||
<signal>rejected()</signal> |
||||
<receiver>HelpDlg</receiver> |
||||
<slot>reject()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>316</x> |
||||
<y>260</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>286</x> |
||||
<y>274</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>buttonPrevious</sender> |
||||
<signal>clicked()</signal> |
||||
<receiver>textBrowser</receiver> |
||||
<slot>backward()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>64</x> |
||||
<y>17</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>199</x> |
||||
<y>150</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>buttonNext</sender> |
||||
<signal>clicked()</signal> |
||||
<receiver>textBrowser</receiver> |
||||
<slot>forward()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>176</x> |
||||
<y>17</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>199</x> |
||||
<y>150</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>buttonFirst</sender> |
||||
<signal>clicked()</signal> |
||||
<receiver>textBrowser</receiver> |
||||
<slot>home()</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>274</x> |
||||
<y>17</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>199</x> |
||||
<y>150</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>textBrowser</sender> |
||||
<signal>backwardAvailable(bool)</signal> |
||||
<receiver>buttonPrevious</receiver> |
||||
<slot>setEnabled(bool)</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>199</x> |
||||
<y>150</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>64</x> |
||||
<y>17</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
<connection> |
||||
<sender>textBrowser</sender> |
||||
<signal>forwardAvailable(bool)</signal> |
||||
<receiver>buttonNext</receiver> |
||||
<slot>setEnabled(bool)</slot> |
||||
<hints> |
||||
<hint type="sourcelabel"> |
||||
<x>199</x> |
||||
<y>150</y> |
||||
</hint> |
||||
<hint type="destinationlabel"> |
||||
<x>176</x> |
||||
<y>17</y> |
||||
</hint> |
||||
</hints> |
||||
</connection> |
||||
</connections> |
||||
</ui> |
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 165 B |
@ -0,0 +1,49 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX Frequently Asked Questions</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX Frequently Asked Questions</h1> |
||||
|
||||
<a name="faq_autotype_support" /> |
||||
<h3 class="question">Q: Is Auto-Type supported on Mac OS X or Windows?</h3> |
||||
<p class="answer"> |
||||
A: No, Auto-Type is currently supported on Linux only. |
||||
</p> |
||||
|
||||
<a name="faq_database_formats" /> |
||||
<h3 class="question">Q: What password database formats are compatible with KeePassX?</h3> |
||||
<p class="answer"> |
||||
A: KeePassX currently uses the KeePass 1.x (Classic) password database format as |
||||
the native format. It can also import KeePassX 1.x XML exports, PwManager databases |
||||
and KWallet XML databases. KeePass 2.x database format is not supported. |
||||
</p> |
||||
|
||||
<a name="faq_keepass2x_format" /> |
||||
<h3 class="question">Q: Can I open KeePass 2.x password databases with KeePassX?</h3> |
||||
<p class="answer"> |
||||
A: No, KeePassX does not support the KeePass 2.x (.kdbx) password database |
||||
format currently. |
||||
However, you can create an export in KeePass 1.x database format (.kdb) from |
||||
KeePass 2.x, which KeePassX can read (and use as the native password database). |
||||
</p> |
||||
|
||||
|
||||
<!-- |
||||
<a name="" /> |
||||
<h3 class="question">Q: </h3> |
||||
<p class="answer"> |
||||
A: |
||||
</p> |
||||
|
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -0,0 +1,20 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX Features Overview</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX Feature Overview</h1> |
||||
|
||||
|
||||
<!-- |
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -0,0 +1,82 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX User Guide</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX User Guide</h1> |
||||
<p>For version 0.4.0.</p> |
||||
|
||||
<a name="in_short" /> |
||||
<h2>KeePassX project in short</h2> |
||||
<p> |
||||
<a href="http://keepassx.org/">KeePassX</a> <img src="external.png" /> (KPX) |
||||
is a cross-platform password manager program. |
||||
It is mainly designed to be used on *nix platforms, |
||||
such as Linux and Mac OS X. |
||||
</p> |
||||
<p> |
||||
KeePassX currently uses same the database file |
||||
format as the <a href="http://keepass.info/">KeePass</a> <img src="external.png" /> |
||||
1.x (Classic) password manager software for Windows. |
||||
Although a Windows build for KPX exists, it is |
||||
recommended to use the original KeePass on Windows, as |
||||
it has more features and is more matured on the platform. |
||||
</p> |
||||
<p> |
||||
Please note that KeePassX and KeePass are entirely |
||||
separate projects, maintained by two separate groups of people |
||||
and consequently, share no common codebase. |
||||
</p> |
||||
<p> |
||||
Thank you for using KeePassX! |
||||
</p> |
||||
|
||||
<a name="installation" /> |
||||
<h2>Program installation</h2> |
||||
<p> |
||||
See the <a href="systemreq.html">system requirements</a> and |
||||
<a href="installation.html">installation procedures</a> for KeePassX. |
||||
If you are viewing this documentation from already installed KeePassX |
||||
program, you can safely skip this part. |
||||
</p> |
||||
|
||||
<a name="quickstart" /> |
||||
<h2>Quick-start Guide</h2> |
||||
<p> |
||||
Master the <a href="quickstart.html">essential core |
||||
features of KeePassX</a> in minutes. |
||||
</p> |
||||
<!-- |
||||
<a name="features" /> |
||||
<h2>Features</h2> |
||||
<p> |
||||
More detailed overview of the <a href="features.html">current |
||||
KeePassX features</a>. |
||||
</p> |
||||
--> |
||||
<a name="faq" /> |
||||
<h2>Frequently Asked Questions</h2> |
||||
<p> |
||||
See answers to the most <a href="faq.html">Frequently Asked Questions</a>. |
||||
</p> |
||||
|
||||
<a name="support" /> |
||||
<h2>Contact and Support</h2> |
||||
<p> |
||||
If you have further questions or want to make suggestions |
||||
about the program, please visit |
||||
<a href="http://www.keepassx.org/forum/">KeePassX forum</a> <img src="external.png" />. |
||||
</p> |
||||
|
||||
<!-- |
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -0,0 +1,50 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX Installation Guide</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX Installation Guide</h1> |
||||
<p> |
||||
This guide will help you to install KeePassX. |
||||
</p> |
||||
|
||||
<a name="installation_binary" /> |
||||
<h2>Installation from binary</h2> |
||||
<p> |
||||
Easiest way to use KeePassX is to install from a binary. Ready-built |
||||
binaries are available for all commonly used Linux distributions |
||||
from their respective binary package repositories. Binaries for |
||||
Mac OS X and Windows are available at the <a href="http://keepassx.org/"> |
||||
project web site</a> <img src="external.png" />. |
||||
</p> |
||||
<p>Installation commands for some Linux distributions:</p> |
||||
<dl> |
||||
<dt><b>Ubuntu Linux</b></dt> |
||||
<dd><tt>sudo apt-get install keepassx</tt> |
||||
<br><br>or use Synaptic Package Manager from the |
||||
<b>System</b> > <b>Administation menu.</b></dd> |
||||
<dt><b>Fedora</b></dt> |
||||
<dd><tt>su -<br>yum install keepassx</tt></dd> |
||||
</dl> |
||||
|
||||
<a name="installation_source" /> |
||||
<h2>Installation from source</h2> |
||||
<p> |
||||
If your distribution doesn't have ready-built binary for |
||||
KeePassX or you would like to try out latest SVN version |
||||
of KeePassX, you can try building from source. Instructions |
||||
can be found at the <a href="http://www.keepassx.org/howto"> |
||||
project web site</a> <img src="external.png" />. |
||||
</p> |
||||
<!-- |
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -0,0 +1,233 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX Quick-start Guide</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX Quick-start Guide</h1> |
||||
<p> |
||||
This guide helps you to manage your |
||||
passwords efficiently and securely with KeePassX. |
||||
</p> |
||||
|
||||
<a name="startup" /> |
||||
<h2>Starting up</h2> |
||||
<p> |
||||
After starting KeePassX for the first time, you |
||||
are presented with the main window with |
||||
no open database file. If you have used KeePassX |
||||
(or KeePass Classic on Windows) previously, you can |
||||
open your existing database. Otherwise we begin |
||||
with creating a new password database. |
||||
</p> |
||||
|
||||
<a name="database_create" /> |
||||
<h2>Creating a new password database</h2> |
||||
<p> |
||||
KeePassX stores your password entries into |
||||
a password database file when the it's not running. |
||||
To create a new password database, click the |
||||
<span class="gui">"New Database"</span> |
||||
icon on the program toolbar (it is the first icon from the |
||||
left on the toolbar). |
||||
</p> |
||||
<p> |
||||
Second, you need to set the <b>master key</b> for the |
||||
password database. This key is used to encrypt (ie. lock) |
||||
the password database so it cannot be read by anybody |
||||
else but you. The master key can be a password |
||||
or a key file or both. |
||||
If you check both, you must provide both the password |
||||
and the key file to every time you want to unlock the database. |
||||
</p> |
||||
<p> |
||||
If you decide to use a password, |
||||
<a href="http://www.us-cert.gov/cas/tips/ST04-002.html"> |
||||
choose and protect it carefully</a> <img src="external.png" />. |
||||
The password should be strong, ie. long enough |
||||
(at least 8 characters) and preferably contain lower and |
||||
uppercase characters, numbers and special characters (e.g. !#?). |
||||
You should also memorize the password well, because |
||||
if you forget it, there is no way retrieving it later |
||||
from the locked database. You will be asked |
||||
to give the password twice to ensure that |
||||
there is no typing errors in the password. |
||||
</p> |
||||
<p> |
||||
The key file can be any file on your computer, e.g. a picture or |
||||
a text document. |
||||
You can also create a randomly-generated key file by first |
||||
selecting the key file check box and clicking |
||||
<span class="gui">"Generate Key File..."</span>. |
||||
You can store the key file for example on a USB memory stick, |
||||
to keep it with you everywhere. |
||||
</p> |
||||
|
||||
<a name="password_add" /> |
||||
<h2>Adding password entries</h2> |
||||
<p> |
||||
After you have created or opened a database, you |
||||
can add password entries to the database. |
||||
A password entry essentially consists of a title, |
||||
user name and password. It may have other entries |
||||
as well, such as URL (Internet link) and comments. |
||||
To add a new password entry, select a group from |
||||
the list on the left first, then |
||||
click the <span class="gui"> |
||||
"Add New Entry"</span> icon on the program toolbar. |
||||
</p> |
||||
<p> |
||||
In the "New Entry" dialog you can enter |
||||
the information you want to into respective text boxes. |
||||
If you are creating a new account to e.g. a web forum, |
||||
you can use the password generator to generate strong |
||||
random passwords for you. |
||||
</p> |
||||
|
||||
<a name="database_save" /> |
||||
<h2>Saving the database</h2> |
||||
<p> |
||||
If you have added or edited entries in your database, |
||||
they are not automatically save to the database file by default. |
||||
You can save the database by clicking the <span class="gui"> |
||||
"Save Database"</span> icon. |
||||
</p> |
||||
<p> |
||||
You may also want to |
||||
enable <span class="gui">"Automatically save database |
||||
after every change"</span> option from the |
||||
<span class="gui">"Extras"</span> > |
||||
<span class="gui">"Settings..."</span> > |
||||
<span class="gui">"General (2)"</span> page. |
||||
(On OS X, the page is found from |
||||
<span class="gui">"KeePassX"</span> (Application menu) > |
||||
<span class="gui">"Preferences"</span>.) |
||||
</p> |
||||
|
||||
<a name="database_open" /> |
||||
<h2>Opening a database</h2> |
||||
<p> |
||||
By default, on next startup, KeePassX opens a |
||||
<span class="gui">"Enter Master Key"</span> |
||||
dialog for the last used password database. If you wish |
||||
to open another password database, click |
||||
<span class="gui">"Cancel"</span> |
||||
and click <span class="gui">"Open Database"</span> icon |
||||
on the program toolbar and select the wanted password |
||||
database file from the file system. You can, of course, |
||||
do this at any point when the KeePassX main window is active. |
||||
</p> |
||||
|
||||
<a name="password_edit" /> |
||||
<h2>Editing and removing password entries</h2> |
||||
<p> |
||||
If you wish to edit a password entry, you can do |
||||
so by double-clicking on the entry title, |
||||
or by selecting the entry and then clicking the |
||||
<span class="gui">"View/Edit Entry"</span> icon |
||||
on the program toolbar. |
||||
</p> |
||||
<p> |
||||
To delete a password entry, first select the |
||||
entry and click <span class="gui">"Delete Entry"</span> icon |
||||
on the program toolbar or hit <tt>Ctrl-D</tt> (<tt>Cmd+D</tt> on OS X) |
||||
on the keyboard. |
||||
</p> |
||||
|
||||
<a name="password_copy" /> |
||||
<h2>Copying password (and user name) to the clipboard</h2> |
||||
<p> |
||||
You can copy the currently selected password by hitting <tt>Ctrl-C</tt> |
||||
(<tt>Cmd-C</tt> on OS X) and user name with <tt>Ctrl-B</tt> (<tt>Cmd-B</tt> |
||||
on OS X) on the keyboard. Then you can hit <tt>Ctrl-V</tt> |
||||
(<tt>Cmd-V</tt> on OS X) to paste the password or username |
||||
to any program that supports pasting from the clipboard. |
||||
</p> |
||||
|
||||
<a name="autotype" /> |
||||
<h2>Setup Auto-Type (currently Linux only)</h2> |
||||
<p> |
||||
<b>Auto-Type</b> is a feature that allows you to e.g. log in |
||||
to web page by hitting only one key combination. |
||||
KeePassX does the rest of the typing for you. Auto-Type reads |
||||
the title of currently active window on your screen |
||||
and matches it to the configured database entries. |
||||
If a matching window title is found from the password |
||||
database, it executes a predefined key sequence |
||||
(by default your username, <tt>TAB</tt>, password, <tt>ENTER</tt>) in |
||||
the active window. This feature is currently available |
||||
in the Linux version only. |
||||
</p> |
||||
<p> |
||||
To enable Auto-Type, first go to |
||||
<span class="gui">"Extras"</span> > |
||||
<span class="gui">"Settings..."</span> > |
||||
<span class="gui">"Advanced"</span> page |
||||
and set the <span class="gui">"Global Auto-Type Shortcut"</span> |
||||
by clicking the text box and typing the desired |
||||
keyboard shortcut (e.g. <tt>Ctrl-Shift-N</tt>). |
||||
Click <span class="gui">"OK"</span> to exit the dialog. |
||||
</p> |
||||
<p> |
||||
Then, for example, open the web page where you |
||||
want to be able to log in with Auto-Type. Let's |
||||
for example open Google.com into Firefox and |
||||
try to do automated search with Auto-Type. Go |
||||
to Google.com in Firefox and you'll notice |
||||
that your window title is now "Google - Mozilla Firefox" |
||||
</p> |
||||
<p> |
||||
Now, create new password entry, that |
||||
contains user name "test". |
||||
Then, click the small <span class="gui">"Tools"</span> |
||||
button at the bottom of the <span class="gui">"New Entry"</span> |
||||
dialog, and select <span class="gui">"Auto-Type: Select target window"</span> |
||||
Select "Google - Mozilla Firefox" from the dropdown menu and |
||||
click <span class="gui">"OK"</span>. You should see now a new |
||||
line in the <span class="gui">"Comment:"</span> box, which reads:<br/><br/> |
||||
|
||||
<tt>Auto-Type-Window: Google - Mozilla Firefox</tt><br/><br/> |
||||
|
||||
Now you have associated that window title to this entry. |
||||
</p> |
||||
<p> |
||||
Finally, let's customize the Auto-Type key sequence |
||||
to just enter your username and hit <tt>ENTER</tt>. |
||||
Click again <span class="gui">"Tools"</span> |
||||
and select <span class="gui">"Auto-Type: Customize Sequence"</span>. |
||||
Now there's another new line in the <span class="gui">"Comment:"</span> box, |
||||
which reads:<br/><br/> |
||||
|
||||
<tt>Auto-Type: {USERNAME}{TAB}{PASSWORD}{ENTER}</tt><br/><br/> |
||||
|
||||
Change this line to:<br/><br/> |
||||
|
||||
<tt>Auto-Type: {USERNAME}{ENTER}</tt><br/><br/> |
||||
|
||||
So that it would just type in your username and hit <tt>ENTER</tt>. |
||||
Click <span class="gui">"OK"</span> to save the entry. |
||||
</p> |
||||
<p> |
||||
Now, you can test the Auto-Type by returning to the |
||||
Firefox window and hitting the global Auto-Type keyboard |
||||
shortcut (e.g. <tt>Ctrl-Shift-N</tt>) in it. |
||||
If everything went correctly, KeePassX should now enter |
||||
"test" in the search box and start the search query |
||||
by hitting <tt>ENTER</tt>. |
||||
</p> |
||||
<p> |
||||
By modifing the Auto-Type key sequence you can tailor |
||||
Auto-Type to suit almost every web login page you'll enter. |
||||
</p> |
||||
|
||||
<!-- |
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -0,0 +1,46 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||||
<html> |
||||
<head> |
||||
<title>KeePassX System Requirements</title> |
||||
</head> |
||||
<body> |
||||
<a name="top" /> |
||||
<h1>KeePassX System Requirements</h1> |
||||
<p> |
||||
This guide tells what is required from your system |
||||
in order to build or run KeePassX. |
||||
</p> |
||||
|
||||
<a name="requirements" /> |
||||
<h2>Requirements</h2> |
||||
<p> |
||||
These are the minimum requirements for the KeePassX v0.3.1 and higher |
||||
for building KeePassX from source. |
||||
</p> |
||||
<p> |
||||
Build dependencies: |
||||
</p> |
||||
<ul> |
||||
<li> |
||||
Qt library version >= 4.3.<br> |
||||
(required modules: QtCore, QtGui, QtXML.) |
||||
</li> |
||||
<li>libXtst</li> |
||||
</ul> |
||||
<p> |
||||
Application bundle: |
||||
</p> |
||||
<ul> |
||||
<li>X11 with XRanR, Xinerama and XTest extensions.</li> |
||||
<li>Glibc 2.4</li> |
||||
</ul> |
||||
<!-- |
||||
<a name="" /> |
||||
<h2></h2> |
||||
<p> |
||||
|
||||
</p> |
||||
--> |
||||
</body> |
||||
</html> |
@ -1,5 +1,12 @@ |
||||
<!DOCTYPE RCC><RCC version="1.0"> |
||||
<qresource> |
||||
<file>default-detailview.html</file> |
||||
</qresource> |
||||
</RCC> |
||||
<qresource> |
||||
<file>default-detailview.html</file> |
||||
<file>docs/faq.html</file> |
||||
<file>docs/features.html</file> |
||||
<file>docs/index.html</file> |
||||
<file>docs/installation.html</file> |
||||
<file>docs/quickstart.html</file> |
||||
<file>docs/systemreq.html</file> |
||||
<file>docs/external.png</file> |
||||
</qresource> |
||||
</RCC> |
File diff suppressed because it is too large
Load Diff
Reference in new issue