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: 1.8 MB): HTTPS / SSH
$ hg clone http://oss.codepoet.no/revelation
commit 62: 02fc1b2867d4
parent 61: 7d9375f894bb
branch: default
tags: revelation-0.3.2
removed loading of druid module, and bumped version to 0.3.2
Erik Grinaker / erikg
6 years ago

Changed (Δ332 bytes):

raw changeset »

ChangeLog (9 lines added, 0 lines removed)

NEWS (7 lines added, 0 lines removed)

gnome/revelation.desktop (1 lines added, 1 lines removed)

setup.py (1 lines added, 1 lines removed)

src/lib/__init__.py (4 lines added, 4 lines removed)

src/lib/data.py (1 lines added, 1 lines removed)

src/lib/datahandler/__init__.py (1 lines added, 1 lines removed)

src/lib/datahandler/base.py (1 lines added, 1 lines removed)

src/lib/datahandler/fpm.py (1 lines added, 1 lines removed)

src/lib/datahandler/gpass.py (1 lines added, 1 lines removed)

src/lib/datahandler/netrc.py (1 lines added, 1 lines removed)

src/lib/datahandler/rvl.py (1 lines added, 1 lines removed)

src/lib/dialog.py (1 lines added, 1 lines removed)

src/lib/entry.py (1 lines added, 1 lines removed)

src/lib/io.py (1 lines added, 1 lines removed)

src/lib/misc.py (1 lines added, 1 lines removed)

src/lib/stock.py (1 lines added, 1 lines removed)

src/lib/widget.py (1 lines added, 1 lines removed)

src/revelation (1 lines added, 1 lines removed)

Up to file-list ChangeLog:

1
1
Revelation changelog
2
2
3
---------------[ 2004-08-08 : 0.3.2 ]---------------
4
5
2004-08-09  Erik Grinaker <erikg@codepoet.no>
6
7
	* don't try to load the removed druid module
8
9
	* bumped version number to 0.3.2
10
11
3
12
---------------[ 2004-08-08 : 0.3.1 ]---------------
4
13
5
14
2004-08-08  Erik Grinaker <erikg@codepoet.no>

Up to file-list NEWS:

1
2004-08-09: Revelation 0.3.2
2
============================
3
4
Bugfixes:
5
- don't attempt to load the removed druid module on startup
6
7
1
8
2004-08-08: Revelation 0.3.1
2
9
============================
3
10

Up to file-list gnome/revelation.desktop:

1
1
[Desktop Entry]
2
2
Name=Revelation Password Manager
3
3
GenericName=Password Manager
4
Version=0.3.1
4
Version=0.3.2
5
5
Comment=Organize and secure your passwords
6
6
Exec=revelation
7
7
Icon=revelation.png

Up to file-list setup.py:

@@ -6,7 +6,7 @@ import sys, os
6
6
7
7
setup(
8
8
	name		= 'Revelation',
9
	version		= '0.3.1',
9
	version		= '0.3.2',
10
10
	description	= 'Password manager for GNOME 2',
11
11
	author		= 'Erik Grinaker',
12
12
	author_email	= 'erikg@codepoet.no',

Up to file-list src/lib/__init__.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#
24
24
#
25
25
26
26
27
import datahandler, misc, stock, entry, widget, data, io, dialog, druid, sys
27
import datahandler, misc, stock, entry, widget, data, io, dialog, sys
28
28
29
29
APPNAME = "Revelation"
30
VERSION = "0.3.1"
30
VERSION = "0.3.2"
31
31
DATAVERSION = 1
32
RELNAME = "The obstacle is the path"
32
RELNAME = "Monday morning"
33
33
URL = "http://oss.codepoet.no/revelation/"
34
34
AUTHOR = "Erik Grinaker <erikg@codepoet.no>"
35
35
COPYRIGHT = "Copyright \302\251 2003-2004 Erik Grinaker"

Up to file-list src/lib/data.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/__init__.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/base.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/fpm.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/gpass.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/netrc.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/datahandler/rvl.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/dialog.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/entry.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/io.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/misc.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/stock.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/lib/widget.py:

1
1
#
2
# Revelation 0.3.1 - a password manager for GNOME 2
2
# Revelation 0.3.2 - a password manager for GNOME 2
3
3
# http://oss.codepoet.no/revelation/
4
4
# $Id$
5
5
#

Up to file-list src/revelation:

1
1
#!/usr/bin/env python
2
2
3
3
#
4
# Revelation 0.3.1 - a password manager for GNOME 2
4
# Revelation 0.3.2 - a password manager for GNOME 2
5
5
# http://oss.codepoet.no/revelation/
6
6
# $Id$
7
7
#