Skip to content

Commit

Permalink
updated credits
Browse files Browse the repository at this point in the history
  • Loading branch information
c10ud committed Jun 21, 2012
1 parent b8f9bcf commit d3ebffb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 19 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTORS
@@ -1,6 +1,6 @@
Riccardo (C10uD) <c10ud.dev@gmail.com> Riccardo (C10uD) <c10ud.dev@gmail.com>
Mariano Guerra <luismarianoguerra@gmail.com>
Jose Rostagno <joserostagno@vijona.com.ar> Jose Rostagno <joserostagno@vijona.com.ar>
Mariano Guerra <luismarianoguerra@gmail.com>
Sven (Sbte) <svenb.linux@gmail.com> Sven (Sbte) <svenb.linux@gmail.com>
Gabriele "Whisky" Visconti <visconti.gabriele@gmail.com> Gabriele "Whisky" Visconti <visconti.gabriele@gmail.com>
arielj <arieljuod@gmail.com> arielj <arieljuod@gmail.com>
Expand All @@ -12,13 +12,13 @@ nenemfromhell <sniper3000@gmail.com>
dequis <dx@dxzone.com.ar> dequis <dx@dxzone.com.ar>
karasu <karasu@serenity.(none)> karasu <karasu@serenity.(none)>
SWOriginal <sworiginal10@gmail.com> SWOriginal <sworiginal10@gmail.com>
moneycat <moneycat.tw@gmail.com>
Shawn <syst3mfailur3@gmail.com> Shawn <syst3mfailur3@gmail.com>
Richard Somlói <level@somloirichard.hu> Richard Somlói <level@somloirichard.hu>
Hung-Yen Chen <chy168@gmail.com> Hung-Yen Chen <chy168@gmail.com>
Josh Fradley <josh.fradley@gmail.com> Josh Fradley <josh.fradley@gmail.com>
Andre Lopes <andremclopes@vodafone.pt> Andre Lopes <andremclopes@vodafone.pt>
hammered <hammered999@gmail.com> hammered <hammered999@gmail.com>
moneycat <moneycat.tw@gmail.com>
j0hn <j0hn.com.ar@gmail.com> j0hn <j0hn.com.ar@gmail.com>
Shuhao Wu <shuhao@shuhaowu.com> Shuhao Wu <shuhao@shuhaowu.com>
Ivan25 <ivann.dev@gmail.com> Ivan25 <ivann.dev@gmail.com>
Expand Down
3 changes: 3 additions & 0 deletions codestats.py
Expand Up @@ -63,3 +63,6 @@ def __str__(self):
f = open("CONTRIBUTORS", "w") f = open("CONTRIBUTORS", "w")
f.write(CONTRIB_STRING) f.write(CONTRIB_STRING)
f.close() f.close()
f = open("emesene/CONTRIBUTORS", "w")
f.write(CONTRIB_STRING)
f.close()
20 changes: 4 additions & 16 deletions emesene/Info.py
Expand Up @@ -19,22 +19,10 @@
EMESENE_VERSION = "2.12.6-dev" EMESENE_VERSION = "2.12.6-dev"
EMESENE_LAST_STABLE = "2.12.5" EMESENE_LAST_STABLE = "2.12.5"
EMESENE_WEBSITE = "http://www.emesene.org" EMESENE_WEBSITE = "http://www.emesene.org"
EMESENE_AUTHORS = "c10ud, sbte & marianoguerra" EMESENE_AUTHORS = "c10ud, pepeleproso, sbte & marianoguerra"
EMESENE_CONTRIBUTORS = [ # TODO: Load this from CONTRIBUTORS EMESENE_CONTRIBUTORS = [] # Loaded in emesene.py at runtime from CONTRIBUTORS
'Riccardo (c10ud) <c10ud.dev@gmail.com>', EMESENE_LICENSE = '''
'Mariano Guerra <luismarianoguerra@gmail.com>', emesene is free software; you can redistribute it and/or modify
'arielj <arieljuod@gmail.com>',
'Stefano Candori <stefanocandori@gmail.com>',
'4ndreaSt4gi <stagi.andrea@gmail.com>',
'Davide Lo Re <boyska@gmail.com>',
'dequis <dx@dxzone.com.ar>',
'Sven (Sbte) <svenb.linux@gmail.com>',
'Jose Rostagno <joserostagno@vijona.com.ar>',
'nenemfromhell <sniper3000@gmail.com>',
'Gabriele "Whisky" Visconti <visconti.gabriele@gmail.com>',
'Lucas F. Ottaviano <lfottaviano@gmail.com>',
]
EMESENE_LICENSE = ''' emesene is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or the Free Software Foundation; either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
Expand Down
8 changes: 7 additions & 1 deletion emesene/emesene.py
Expand Up @@ -71,7 +71,13 @@ def project_path():
import shutil import shutil
import signal import signal
import Info import Info

try:
contrib = open("CONTRIBUTORS", "r")

This comment has been minimized.

Copy link
@moneycat

moneycat Jun 22, 2012

Member

@c10ud Is it possible use ../CONTRIBUTORS?

This comment has been minimized.

Copy link
@c10ud

c10ud Jun 23, 2012

Author Member

probably, but that would break with packaged-emesene.. (you don't have files in ../)

This comment has been minimized.

Copy link
@moneycat

moneycat Jun 23, 2012

Member

ok, got it

Info.EMESENE_CONTRIBUTORS = contrib.read().split("\n")
contrib.close()
except: #gotta catch 'em all!
Info.EMESENE_CONTRIBUTORS = ['BUG: CONTRIBUTORS file is missing!',
'Report this to whoever made the package you\'re using.']
import debugger import debugger
import logging import logging
log = logging.getLogger('emesene') log = logging.getLogger('emesene')
Expand Down

0 comments on commit d3ebffb

Please sign in to comment.