Updated copyright dates and email address

This commit is contained in:
gergely.erdelyi 2010-04-26 20:13:11 +00:00
parent 1157ea1487
commit 6112217cab
12 changed files with 27 additions and 27 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net>. All rights reserved. Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:

View File

@ -1,16 +1,16 @@
#!/usr/bin/env python #!/usr/bin/env python
#------------------------------------------------------------ #---------------------------------------------------------------------
# IDAPython - Python plugin for Interactive Disassembler Pro # IDAPython - Python plugin for Interactive Disassembler Pro
# #
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net> # Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
# #
# All rights reserved. # All rights reserved.
# #
# For detailed copyright information see the file COPYING in # For detailed copyright information see the file COPYING in
# the root of the distribution archive. # the root of the distribution archive.
#------------------------------------------------------------ #---------------------------------------------------------------------
# build.py - Custom build script # build.py - Custom build script
#------------------------------------------------------------ #---------------------------------------------------------------------
import os import os
import platform import platform
import shutil import shutil
@ -422,4 +422,4 @@ def main():
build_source_package() build_source_package()
if __name__ == "__main__": if __name__ == "__main__":
main() main()

View File

@ -3,7 +3,7 @@
# #
# This script demonstrates the usage of the class-based chooser. # This script demonstrates the usage of the class-based chooser.
# #
# Author: Gergely Erdelyi <dyce@d-dome.net> # Author: Gergely Erdelyi <gergely.erdelyi@d-dome.net>
#--------------------------------------------------------------------- #---------------------------------------------------------------------
from idaapi import Choose from idaapi import Choose

View File

@ -3,7 +3,7 @@
# #
# This script demonstrates the usage of background colours. # This script demonstrates the usage of background colours.
# #
# Author: Gergely Erdelyi <dyce@d-dome.net> # Author: Gergely Erdelyi <gergely.erdelyi@d-dome.net>
#--------------------------------------------------------------------- #---------------------------------------------------------------------
# Set the colour of the current segment to BLUE # Set the colour of the current segment to BLUE

View File

@ -4,7 +4,7 @@
# This script start the executable and steps through the first five # This script start the executable and steps through the first five
# instructions. Each instruction is disassembled after execution. # instructions. Each instruction is disassembled after execution.
# #
# Author: Gergely Erdelyi <dyce@d-dome.net> # Author: Gergely Erdelyi <gergely.erdelyi@d-dome.net>
#--------------------------------------------------------------------- #---------------------------------------------------------------------
from idaapi import * from idaapi import *

View File

@ -4,7 +4,7 @@
# Note: Hotkeys only work with the GUI version of IDA and not in # Note: Hotkeys only work with the GUI version of IDA and not in
# text mode. # text mode.
# #
# Author: Gergely Erdelyi <dyce@d-dome.net> # Author: Gergely Erdelyi <gergely.erdelyi@d-dome.net>
#--------------------------------------------------------------------- #---------------------------------------------------------------------
import idaapi import idaapi

View File

@ -4,7 +4,7 @@
# This script demonstrates how to create structures and populate them # This script demonstrates how to create structures and populate them
# with members of different types. # with members of different types.
# #
# Author: Gergely Erdelyi <dyce@d-dome.net> # Author: Gergely Erdelyi <gergely.erdelyi@d-dome.net>
#--------------------------------------------------------------------- #---------------------------------------------------------------------
from idaapi import stroffflag, offflag from idaapi import stroffflag, offflag

View File

@ -1,15 +1,15 @@
//------------------------------------------------------------ //---------------------------------------------------------------------
// IDAPython - Python plugin for Interactive Disassembler Pro // IDAPython - Python plugin for Interactive Disassembler Pro
// //
// Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net> // Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
// //
// All rights reserved. // All rights reserved.
// //
// For detailed copyright information see the file COPYING in // For detailed copyright information see the file COPYING in
// the root of the distribution archive. // the root of the distribution archive.
//------------------------------------------------------------ //---------------------------------------------------------------------
// python.cpp - Main plugin code // python.cpp - Main plugin code
//------------------------------------------------------------ //---------------------------------------------------------------------
#include <Python.h> #include <Python.h>
/* This define fixes the redefinition of ssize_t */ /* This define fixes the redefinition of ssize_t */

View File

@ -1,13 +1,13 @@
#------------------------------------------------------------ #---------------------------------------------------------------------
# IDAPython - Python plugin for Interactive Disassembler Pro # IDAPython - Python plugin for Interactive Disassembler Pro
# #
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net> # Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
# #
# All rights reserved. # All rights reserved.
# #
# For detailed copyright information see the file COPYING in # For detailed copyright information see the file COPYING in
# the root of the distribution archive. # the root of the distribution archive.
#------------------------------------------------------------ #---------------------------------------------------------------------
""" """
idautils.py - High level utility functions for IDA idautils.py - High level utility functions for IDA
""" """

View File

@ -1,20 +1,20 @@
#!/usr/bin/env python #!/usr/bin/env python
#------------------------------------------------------------ #---------------------------------------------------------------------
# IDAPython - Python plugin for Interactive Disassembler Pro # IDAPython - Python plugin for Interactive Disassembler Pro
# #
# Original IDC.IDC: # Original IDC.IDC:
# Copyright (c) 1990-2009 Ilfak Guilfanov # Copyright (c) 1990-2010 Ilfak Guilfanov
# #
# Python conversion: # Python conversion:
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net> # Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
# #
# All rights reserved. # All rights reserved.
# #
# For detailed copyright information see the file COPYING in # For detailed copyright information see the file COPYING in
# the root of the distribution archive. # the root of the distribution archive.
#------------------------------------------------------------ #---------------------------------------------------------------------
# idc.py - IDC compatibility module # idc.py - IDC compatibility module
#------------------------------------------------------------ #---------------------------------------------------------------------
""" """
IDC compatibility module IDC compatibility module

View File

@ -2,7 +2,7 @@
# ----------------------------------------------------------------------- # -----------------------------------------------------------------------
# IDAPython - Python plugin for Interactive Disassembler Pro # IDAPython - Python plugin for Interactive Disassembler Pro
# #
# Copyright (c) 2004-2009 Gergely Erdelyi <dyce@d-dome.net> # Copyright (c) 2004-2010 Gergely Erdelyi <gergely.erdelyi@d-dome.net>
# #
# All rights reserved. # All rights reserved.
# #
@ -84,10 +84,10 @@ def runscript(script):
def print_banner(): def print_banner():
banner = [ banner = [
"Python interpreter version %d.%d.%d %s (serial %d)" % sys.version_info, "Python interpreter version %d.%d.%d %s (serial %d)" % sys.version_info,
"Copyright (c) 1990-2009 Python Software Foundation - http://www.python.org/", "Copyright (c) 1990-2010 Python Software Foundation - http://www.python.org/",
"", "",
"IDAPython" + (" 64-bit" if __EA64__ else "") + " version %d.%d.%d %s (serial %d)" % IDAPYTHON_VERSION, "IDAPython" + (" 64-bit" if __EA64__ else "") + " version %d.%d.%d %s (serial %d)" % IDAPYTHON_VERSION,
"Copyright (c) 2004-2009 Gergely Erdelyi - http://d-dome.net/idapython/" "Copyright (c) 2004-2010 Gergely Erdelyi - http://code.google.com/p/idapython/"
] ]
sepline = '-' * max([len(s) for s in banner]) sepline = '-' * max([len(s) for s in banner])

View File

@ -1,7 +1,7 @@
#------------------------------------------------------------ #------------------------------------------------------------
# gendoc.py: Generate an API cross-reference for IDAPython # gendoc.py: Generate an API cross-reference for IDAPython
#------------------------------------------------------------ #------------------------------------------------------------
__author__ = "Gergely Erdelyi <dyce@d-dome.net>" __author__ = "Gergely Erdelyi <gergely.erdelyi@d-dome.net>"
import epydoc.cli import epydoc.cli