Skip to content

Commit

Permalink
Import project files into GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
caladd committed Jun 12, 2017
0 parents commit 8e66921
Show file tree
Hide file tree
Showing 11 changed files with 916 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
LEADS:
Chris Ladd <[email protected]>

CONTRIBUTORS:
Steve Tyler
Debarshi Ray

340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
03-17-2008 Chris Ladd <[email protected]>

* Makefile:
Changed build process to remove the extension on gnome-password-generator.py

* gnome-password-generator.py:
Rewrote the menu code to use the new UIManager API in gtk [Bug 1885591]. Added file extension.

08-12-2007 Chris Ladd <[email protected]>

* gnome-password-generator:
Added new character set selection feature. Added check
for the minimum PyGTK and Python versions. Replaced
deprecated gtk.TRUE and gtk.FALSE with True and False.
Added ability to use urandom for random number generation
if available.

06-07-2004 Chris Ladd <[email protected]>

* Makefile:
Changed it to install the png instead of an svg.

* gnome-password-generator:
Changed it to use gnome-password-generator.png as the image.

* gnome-password-generator.desktop:
Changed it to use gnome-password-generator.png as the image.

04-05-2004 Chris Ladd <[email protected]>

* Makefile:
Added a make all command to the build system. This step
correctly specifies the pixmap directory.

04-05-2004 Chris Ladd <[email protected]>

* Makefile:
Changed the install system to use make install.

* install.sh:
Removed it.

* gnome-password-generator:
Added a PIXMAPDIR variable to get overwritten with the
correct directory location by the Makefile.

* gnome-password-generator.desktop:
Cleanups to the Comment field.

03-15-2004 Chris Ladd <[email protected]>

* gnome-password-generator:
Added a check at the beginning of the program for the
proper version of PyGTK. If an older than needed version
is found a error dialog is displayed.
11 changes: 11 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Basic installation
==================

1. `cd' to the directory that contains the package's
source code.

2. Type `make' to build the program files.

3. Type `sudo make install' to run the install script that
will install the program files into their correct
places.
25 changes: 25 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
prefix=/usr
bindir=$(prefix)/bin
datadir=$(prefix)/share

PIXMAPDIR=$(datadir)/pixmaps
DESKTOPDIR=$(datadir)/applications

DESTDIR=

INSTALL=install

all:
cp gnome-password-generator.py gnome-password-generator
perl -pi -e 's|/usr/share/pixmaps|$(PIXMAPDIR)|' gnome-password-generator

install:
$(INSTALL) -d -m0755 $(DESTDIR)$(bindir)
$(INSTALL) -m0755 gnome-password-generator $(DESTDIR)$(bindir)
$(INSTALL) -d -m0755 $(DESTDIR)$(PIXMAPDIR)
$(INSTALL) -m0644 gnome-password-generator.png $(DESTDIR)$(PIXMAPDIR)
$(INSTALL) -d -m0755 $(DESTDIR)$(DESKTOPDIR)
$(INSTALL) -m0644 gnome-password-generator.desktop $(DESTDIR)$(DESKTOPDIR)

clean:
rm gnome-password-generator
49 changes: 49 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
03-17-2008 Chris Ladd <[email protected]>

* Released version 1.6

Rewrote menu functionality to use the new GTK UIManager API.

08-12-2007 Chris Ladd <[email protected]>

* Released version 1.5

Added a new feature to select different character sets.
Added the ability to use urandom if available for more
secure password generation. Special thanks to Steve Tyler
for these new features and some deprecation fixes.

06-07-2004 Chris Ladd <[email protected]>

* Released version 1.4

Changed default pixmap to a png instead of an svg.

04-05-2004 Chris Ladd <[email protected]>

* Released version 1.3

Fixed a problem with the new build system.

04-05-2004 Chris Ladd <[email protected]>

* Released version 1.2

Changed the install system to use make install. Special
thanks to Dag Wieers for the example Makefile and
Desktop Entry cleanups. Check out Dag's repository for
RPMs of the program.

03-15-2004 Chris Ladd <[email protected]>

* Released version 1.1

A check is done for the proper version of PyGTK and
an error dialog is displayed if PyGTK needs to be
upgraded.

03-08-2004 Chris Ladd <[email protected]>

* Released version 1.0

First public release of the project.
8 changes: 8 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Gnome Password Generator is a GUI based secure password generator.

Requirements
============

- Python 2.4 or greater
- PyGTK version 2.4 or greater
- Gnome-Python for Gnome 2
9 changes: 9 additions & 0 deletions gnome-password-generator.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Password Generator
Comment=Generate various types of passwords
Icon=gnome-password-generator
Exec=gnome-password-generator
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;Utility;
Binary file added gnome-password-generator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8e66921

Please sign in to comment.