Differences between revisions 2 and 21 (spanning 19 versions)
Revision 2 as of 2009-11-21 08:18:14
Size: 3179
Comment:
Revision 21 as of 2020-07-06 04:56:30
Size: 4938
Editor: DanKurtz
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Extension Name == #pragma section-numbers 2
Line 3: Line 3:
'''This extension is/is not distributed with Mercurial.''' = Keyring Extension =

'''This extension is not distributed with Mercurial.'''
Line 7: Line 9:
Download site: http://bitbucket.org/Mekk/mercurial_keyring/ Project site: http://pypi.python.org/pypi/mercurial_keyring
Line 9: Line 11:
=== Overview === Repository: https://foss.heptapod.net/mercurial/mercurial_keyring/

''For the most up to date and more complete documentation see [[https://foss.heptapod.net/mercurial/mercurial_keyring/|this description]].''
or, equivalently (but with worse formatting) [[http://pypi.python.org/pypi/mercurial_keyring|copy on PyPi]]


(!) If you are on Windows, we recommend you use TortoiseHg. It ships with Windows-specific keyring backends, without
which the mercurial-keyring extension cannot function properly on Windows.
The mercurial-keyring extension itself has been shipped with TortoiseHg since version 0.10.

<<TableOfContents>>

== Overview ==
Line 12: Line 26:
to securely save authentication passwords (HTTP/HTTPS at the moment, SMTP passwords are considered)
using system specific password database (Gnome Keyring, KDE KWallet, OSXKeyChain, 
to securely save authentication passwords (HTTP/HTTPS and SMTP)
using system specific password database (Gnome Keyring, KDE KWallet, OSXKeyChain,
Line 18: Line 32:
The extension prompts for the password on the first pull/push (just like it is
done by default), but saves the given password (keyed by the
The extension prompts for the HTTP password on the first pull/push to/from given
remote repository
(just like it is
done by default), but saves the password (keyed by the
Line 21: Line 36:
database. On the next run it checks for the username in ``.hg/hgrc``, database. On the next run it checks for the username in ''`.hg/hgrc`'',
Line 25: Line 40:
In case password turns out incorrect (either because it was invalid, Similarly, while sending emails via SMTP server which requires authorization,
it prompts for the password on first use of given server, then saves it in the
password database and reuses on successive runs.

In case the password turns out incorrect (either because it was invalid,
Line 29: Line 48:

=
== Installation ===
== Installation ==
Line 38: Line 56:
(or use any other method to install it [[http://pypi.python.org/pypi/keyring|from PIP]]) (or use any other method to install it [[http://pypi.python.org/pypi/keyring|from PIP]]).
On Debian "Sid" the library can be also installed from the official archive (packages ''python-keyring'',
''python-keyring-gnome'' and ''python-keyring-kwallet'').
Line 40: Line 60:
Then download [[http://bitbucket.org/Mekk/mercurial_keyring/src/tip/mercurial_keyring.py|mercurial_keyring.py]] and save
it anywhere on the system (preferably in hgext directory).
Then use one of the two options:
Line 43: Line 62:
=== Configuration === a) Install `mercurial_keyring` as a module from PyPi:
Line 45: Line 64:
Configure your .hgrc to enable the extension by adding following lines: {{{
easy_install mercurial_keyring
}}}

and configure your ''`.hgrc`'' so:

{{{
[extensions]
mercurial_keyring =
}}}

b) Download [[http://bitbucket.org/Mekk/mercurial_keyring/raw/default/mercurial_keyring.py]],
save this file anywhere on the system (preferably in hgext directory), and
configure your ''`.hgrc`'' to enable the extension by adding following lines:
Line 52: Line 84:
== Configuration ==

=== Password backend configuration ===
Line 54: Line 89:
'''~/keyringrc.cfg''' file ('''keyringrc.cfg''' in the home directory of `~/keyringrc.cfg` file (`keyringrc.cfg` in the home directory of
Line 57: Line 92:
''I considered handling similar options in hgrc, but decided that
single person may use more than one keyring-based script. Still, I am
open to suggestions.''
=== Repository configuration (HTTP) ===
Line 61: Line 94:
=== Repository configuration ===

Edit repository-local '''.hg/hgrc''' and save there the remote repository
Edit repository-local ''`.hg/hgrc`'' and save there the remote repository
Line 83: Line 114:
Note: if both username and password are given in '''.hg/hgrc''', extension
will use them without using the password database. If username is not
Note: if both the username and password are given in ''`.hg/hgrc`'', the extension
will use them without using the password database. If the username is not
Line 88: Line 119:
=== Usage === === Repository configuration (SMTP) ===
Line 90: Line 121:
Configure the repository as above, then just pull and push.
You should be asked for the password only once (per every
username+remote_repository_url combination).
Edit either repository-local ''`.hg/hgrc`'', or ''`~/.hgrc`'' (the latter
is usually preferable) and set
there all standard email and smtp properties, including smtp
username, but without smtp password. For example:
Line 94: Line 126:
{{{
    [email]
    method = smtp
    from = Joe Doe <Joe.Doe@remote.com>
Line 95: Line 131:
    [smtp]
    host = smtp.gmail.com
    port = 587
    username = JoeDoe@gmail.com
    tls = true
}}}
Line 96: Line 138:
Just as in case of HTTP, you ''must'' set username, but ''must not'' set
password here to use the extension, in other cases it will revert to
the default behaviour.

== Usage ==

Configure the repository as above, then just pull and push (or email) as needed.
You should be asked for the password only once (per every username+remote_repository_url combination).
Line 98: Line 148:
CategoryExtension CategoryExtensionsByOthers CategoryExtensionsByOthers

Keyring Extension

This extension is not distributed with Mercurial.

Author: Marcin Kasperski

Project site: http://pypi.python.org/pypi/mercurial_keyring

Repository: https://foss.heptapod.net/mercurial/mercurial_keyring/

For the most up to date and more complete documentation see this description. or, equivalently (but with worse formatting) copy on PyPi

(!) If you are on Windows, we recommend you use TortoiseHg. It ships with Windows-specific keyring backends, without which the mercurial-keyring extension cannot function properly on Windows. The mercurial-keyring extension itself has been shipped with TortoiseHg since version 0.10.

1. Overview

Keyring extension uses services of the keyring library to securely save authentication passwords (HTTP/HTTPS and SMTP) using system specific password database (Gnome Keyring, KDE KWallet, OSXKeyChain, dedicated solutions for Win32 and command line).

1.1. What it does

The extension prompts for the HTTP password on the first pull/push to/from given remote repository (just like it is done by default), but saves the password (keyed by the combination of username and remote repository url) in the password database. On the next run it checks for the username in .hg/hgrc, then for suitable password in the password database, and uses those credentials if found.

Similarly, while sending emails via SMTP server which requires authorization, it prompts for the password on first use of given server, then saves it in the password database and reuses on successive runs.

In case the password turns out incorrect (either because it was invalid, or because it was changed on the server) it just prompts the user again.

2. Installation

Install the keyring library:

easy_install keyring

(or use any other method to install it from PIP). On Debian "Sid" the library can be also installed from the official archive (packages python-keyring, python-keyring-gnome and python-keyring-kwallet).

Then use one of the two options:

a) Install mercurial_keyring as a module from PyPi:

easy_install mercurial_keyring

and configure your .hgrc so:

[extensions]
mercurial_keyring =

b) Download http://bitbucket.org/Mekk/mercurial_keyring/raw/default/mercurial_keyring.py, save this file anywhere on the system (preferably in hgext directory), and configure your .hgrc to enable the extension by adding following lines:

[extensions]
hgext.mercurial_keyring = /path/to/mercurial_keyring.py

3. Configuration

3.1. Password backend configuration

The most appropriate password backend should usually be picked automatically, without configuration. Still, if necessary, it can be configured using ~/keyringrc.cfg file (keyringrc.cfg in the home directory of the current user). Refer to keyring docs for more details.

3.2. Repository configuration (HTTP)

Edit repository-local .hg/hgrc and save there the remote repository path and the username, but do not save the password. For example:

[paths]
myremote = https://my.server.com/hgrepo/someproject

[auth]
myremote.schemes = http https
myremote.prefix = my.server.com/hgrepo
myremote.username = mekk

Simpler form with url-embedded name can also be used:

[paths]
bitbucket = https://User@bitbucket.org/User/project_name/

Note: if both the username and password are given in .hg/hgrc, the extension will use them without using the password database. If the username is not given, extension will prompt for credentials every time, also without saving the password. So, in both cases, it is effectively reverting to the default behaviour.

3.3. Repository configuration (SMTP)

Edit either repository-local .hg/hgrc, or ~/.hgrc (the latter is usually preferable) and set there all standard email and smtp properties, including smtp username, but without smtp password. For example:

    [email]
    method = smtp
    from = Joe Doe <Joe.Doe@remote.com>

    [smtp]
    host = smtp.gmail.com
    port = 587
    username = JoeDoe@gmail.com
    tls = true

Just as in case of HTTP, you must set username, but must not set password here to use the extension, in other cases it will revert to the default behaviour.

4. Usage

Configure the repository as above, then just pull and push (or email) as needed. You should be asked for the password only once (per every username+remote_repository_url combination).


CategoryExtensionsByOthers

KeyringExtension (last edited 2020-07-06 04:56:30 by DanKurtz)