Skip to content

Commit

Permalink
Code review: 262650043: Updated AUTHORS and worked on update script l…
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 31, 2015
1 parent 76427a7 commit 413a60c
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 84 deletions.
2 changes: 2 additions & 0 deletions ACKNOWLEDGEMENTS
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Thanks to contributors (alphabetically based on last name):
* Parsers
* BEncode
* Java IDX parser
* Christian Buia
* SCCM
* Johan Berggren
* SQLite plugins
* Zeitgeist activity database
Expand Down
30 changes: 15 additions & 15 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@
# See python fnmatch module documentation for more information.

Google Inc. (*@google.com)
Kristinn Gudjonsson (kiddi@kiddaland.net)
Joachim Metz (joachim.metz@gmail.com)
Brian Baskin (brian@thebaskins.com)
Kristinn Gudjonsson (kristinn@log2timeline.net)
Keith Wall (kwallster@gmail.com)
Eric Mak (ericmak@gmail.com)
David Nides ([email protected])
Dominique Kilman ([email protected])
Elizabeth Schweinsberg ([email protected])
Eric Mak ([email protected])
Joachim Metz ([email protected])
Francesco Picasso ([email protected])
Joaquin Moreno Garijo ([email protected])
Keith Wall ([email protected])
Marc Seguin ([email protected])
Elizabeth Schweinsberg ([email protected])
Oliver Jensen ([email protected])
Marc Seguin ([email protected])
Brian Baskin ([email protected])
Daniel White ([email protected])
Johan Berggren ([email protected])
Joaquin Moren Garijo ([email protected])
Jerome Marty ([email protected])
Petter Bjelland ([email protected])
Marc Leavitt ([email protected])
Ashley Holtz ([email protected])
Preston Miller ([email protected])
Eric John ([email protected])
Daniel White ([email protected])
Johan Berggren ([email protected])
DC3 ([email protected])
Georg Lukas ([email protected])
Omer Yampel ([email protected])
DC3 ([email protected])
Jason Blanks ([email protected])
Georg Lukas ([email protected])
Jerome Marty ([email protected])
Marc Leavitt ([email protected])

Christian Buia ([email protected])
2 changes: 1 addition & 1 deletion config/dpkg/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline <[email protected]> Sun, 11 Oct 2015 10:03:15 +0200
-- Log2Timeline <[email protected]> Mon, 12 Oct 2015 08:05:59 +0200
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version__ = '1.3.1'

VERSION_DEV = True
VERSION_DATE = '20151011'
VERSION_DATE = '20151012'


def GetVersion():
Expand Down
67 changes: 0 additions & 67 deletions utils/create_authors.py

This file was deleted.

19 changes: 19 additions & 0 deletions utils/update_authors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash
# Script to update the authors information.

cat > AUTHORS <<EOT
# Names should be added to this file with this pattern:
#
# For individuals:
# Name (email address)
#
# For organizations:
# Organization (fnmatch pattern)
#
# See python fnmatch module documentation for more information.
Google Inc. (*@google.com)
EOT

git log --format='%aN (%aE)' | tac | awk '!seen[$0]++' >> AUTHORS;

0 comments on commit 413a60c

Please sign in to comment.