Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 124 → Rev 123

/relevation/branches/0.2/manpage.sgml
File deleted
/relevation/branches/0.2/LICENSE
File deleted
/relevation/branches/0.2/upstream.debian/source/format
File deleted
/relevation/branches/0.2/upstream.debian/control
File deleted
/relevation/branches/0.2/upstream.debian/compat
File deleted
/relevation/branches/0.2/upstream.debian/changelog
File deleted
/relevation/branches/0.2/upstream.debian/copyright
File deleted
/relevation/branches/0.2/upstream.debian/docs
File deleted
/relevation/branches/0.2/upstream.debian/rules
File deleted
Property changes:
Deleted: svn:executable
-*
\ No newline at end of property
/relevation/branches/0.2/upstream.debian/README.source
File deleted
/relevation/branches/0.2/upstream.debian/README.Debian
File deleted
/relevation/branches/0.2/revelation.1
File deleted
/relevation/branches/0.2/Makefile
2,7 → 2,7
prefix:=/usr/local
DESTDIR:=
 
all: revelation.1
all:
 
clean:
$(RM) relevation.pyc
15,6 → 15,3
$(RM) $(DESTDIR)$(prefix)/relevation
-rmdir --parents $(DESTDIR)$(prefix)/bin
 
revelation.1: manpage.sgml
docbook-to-man $< > $@
 
/relevation/branches/0.2/relevation.py
1,13 → 1,17
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
 
import getopt
import libxml2
import os
import sys
import zlib
from Crypto.Cipher import AES
 
"""
Relevation Password Printer
a command line interface to Revelation Password Manager.
a command line interface to Revelation Password Manager
 
This program is published under a BSD 3-clause license,
the full license text is included in a separate file.
 
Code based on Revelation's former BTS (no longer online, not archived?):
(ref1) code:
http://oss.wired-networks.net/bugzilla/attachment.cgi?id=13&action=view
16,14 → 20,7
-> http://web.archive.org/http://oss.wired-networks.net/bugzilla/show_bug.cgi?id=111
(ref3) http://docs.python.org/library/zlib.html
"""
import getopt
import libxml2
import os
import sys
import zlib
from Crypto.Cipher import AES
 
 
__author__ = 'Toni Corvera'
__date__ = '$Date$'
__revision__ = '$Rev$'