diff --git a/COPYING.txt b/COPYING.txt index fa77607..61844a2 100644 --- a/COPYING.txt +++ b/COPYING.txt @@ -1,4 +1,4 @@ -Copyright (c) 2004-2009 Gergely Erdelyi . All rights reserved. +Copyright (c) 2004-2010 Gergely Erdelyi . All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/build.py b/build.py index 2616310..8760624 100644 --- a/build.py +++ b/build.py @@ -1,16 +1,16 @@ #!/usr/bin/env python -#------------------------------------------------------------ +#--------------------------------------------------------------------- # IDAPython - Python plugin for Interactive Disassembler Pro # -# Copyright (c) 2004-2009 Gergely Erdelyi +# Copyright (c) 2004-2010 Gergely Erdelyi # # All rights reserved. # # For detailed copyright information see the file COPYING in # the root of the distribution archive. -#------------------------------------------------------------ +#--------------------------------------------------------------------- # build.py - Custom build script -#------------------------------------------------------------ +#--------------------------------------------------------------------- import os import platform import shutil @@ -422,4 +422,4 @@ def main(): build_source_package() if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/examples/chooser.py b/examples/chooser.py index 216eae7..cacced1 100644 --- a/examples/chooser.py +++ b/examples/chooser.py @@ -3,7 +3,7 @@ # # This script demonstrates the usage of the class-based chooser. # -# Author: Gergely Erdelyi +# Author: Gergely Erdelyi #--------------------------------------------------------------------- from idaapi import Choose diff --git a/examples/colours.py b/examples/colours.py index 9fa1688..90f50ae 100644 --- a/examples/colours.py +++ b/examples/colours.py @@ -3,7 +3,7 @@ # # This script demonstrates the usage of background colours. # -# Author: Gergely Erdelyi +# Author: Gergely Erdelyi #--------------------------------------------------------------------- # Set the colour of the current segment to BLUE diff --git a/examples/debughook.py b/examples/debughook.py index c5be3b6..7765a0b 100644 --- a/examples/debughook.py +++ b/examples/debughook.py @@ -4,7 +4,7 @@ # This script start the executable and steps through the first five # instructions. Each instruction is disassembled after execution. # -# Author: Gergely Erdelyi +# Author: Gergely Erdelyi #--------------------------------------------------------------------- from idaapi import * diff --git a/examples/hotkey.py b/examples/hotkey.py index 3f4cab1..1524404 100644 --- a/examples/hotkey.py +++ b/examples/hotkey.py @@ -4,7 +4,7 @@ # Note: Hotkeys only work with the GUI version of IDA and not in # text mode. # -# Author: Gergely Erdelyi +# Author: Gergely Erdelyi #--------------------------------------------------------------------- import idaapi diff --git a/examples/structure.py b/examples/structure.py index 9003d5d..7e550ac 100644 --- a/examples/structure.py +++ b/examples/structure.py @@ -4,7 +4,7 @@ # This script demonstrates how to create structures and populate them # with members of different types. # -# Author: Gergely Erdelyi +# Author: Gergely Erdelyi #--------------------------------------------------------------------- from idaapi import stroffflag, offflag diff --git a/python.cpp b/python.cpp index 58cd66c..97f72db 100644 --- a/python.cpp +++ b/python.cpp @@ -1,15 +1,15 @@ -//------------------------------------------------------------ +//--------------------------------------------------------------------- // IDAPython - Python plugin for Interactive Disassembler Pro // -// Copyright (c) 2004-2009 Gergely Erdelyi +// Copyright (c) 2004-2010 Gergely Erdelyi // // All rights reserved. // // For detailed copyright information see the file COPYING in // the root of the distribution archive. -//------------------------------------------------------------ +//--------------------------------------------------------------------- // python.cpp - Main plugin code -//------------------------------------------------------------ +//--------------------------------------------------------------------- #include /* This define fixes the redefinition of ssize_t */ diff --git a/python/idautils.py b/python/idautils.py index a1cc034..9a5cdcf 100644 --- a/python/idautils.py +++ b/python/idautils.py @@ -1,13 +1,13 @@ -#------------------------------------------------------------ +#--------------------------------------------------------------------- # IDAPython - Python plugin for Interactive Disassembler Pro # -# Copyright (c) 2004-2009 Gergely Erdelyi +# Copyright (c) 2004-2010 Gergely Erdelyi # # All rights reserved. # # For detailed copyright information see the file COPYING in # the root of the distribution archive. -#------------------------------------------------------------ +#--------------------------------------------------------------------- """ idautils.py - High level utility functions for IDA """ diff --git a/python/idc.py b/python/idc.py index 39eba38..91700eb 100644 --- a/python/idc.py +++ b/python/idc.py @@ -1,20 +1,20 @@ #!/usr/bin/env python -#------------------------------------------------------------ +#--------------------------------------------------------------------- # IDAPython - Python plugin for Interactive Disassembler Pro # # Original IDC.IDC: -# Copyright (c) 1990-2009 Ilfak Guilfanov +# Copyright (c) 1990-2010 Ilfak Guilfanov # # Python conversion: -# Copyright (c) 2004-2009 Gergely Erdelyi +# Copyright (c) 2004-2010 Gergely Erdelyi # # All rights reserved. # # For detailed copyright information see the file COPYING in # the root of the distribution archive. -#------------------------------------------------------------ +#--------------------------------------------------------------------- # idc.py - IDC compatibility module -#------------------------------------------------------------ +#--------------------------------------------------------------------- """ IDC compatibility module diff --git a/python/init.py b/python/init.py index 4d8cd35..d648c32 100644 --- a/python/init.py +++ b/python/init.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------- # IDAPython - Python plugin for Interactive Disassembler Pro # -# Copyright (c) 2004-2009 Gergely Erdelyi +# Copyright (c) 2004-2010 Gergely Erdelyi # # All rights reserved. # @@ -84,10 +84,10 @@ def runscript(script): def print_banner(): banner = [ "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, - "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]) diff --git a/tools/gendocs.py b/tools/gendocs.py index 7d57601..927e8ff 100644 --- a/tools/gendocs.py +++ b/tools/gendocs.py @@ -1,7 +1,7 @@ #------------------------------------------------------------ # gendoc.py: Generate an API cross-reference for IDAPython #------------------------------------------------------------ -__author__ = "Gergely Erdelyi " +__author__ = "Gergely Erdelyi " import epydoc.cli