Changeset 1104

Show
Ignore:
Timestamp:
07/25/07 02:46:11 (6 years ago)
Author:
boltrix
Message:

Changed encoding of files to utf-8

Location:
trunk
Files:
84 modified

Legend:

Unmodified
Added
Removed
  • trunk/higwidgets/__init__.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/__init__.py 
  • trunk/higwidgets/gtkutils.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/gtkutils.py 
  • trunk/higwidgets/higboxes.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higboxes.py 
  • trunk/higwidgets/higbuttons.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higbuttons.py 
  • trunk/higwidgets/higdialogs.py

    r1062 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higdialogs.py 
  • trunk/higwidgets/higentries.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higentries.py 
  • trunk/higwidgets/higexpanders.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higexpanders.py 
  • trunk/higwidgets/higframe.py

    r652 r1104  
    1 # Copyright (C) 2007 TO BE DEFINED 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Guilherme Polo <ggpolo@gmail.com> 
     6# Author: Guilherme Polo <ggpolo@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
     
    1518# You should have received a copy of the GNU General Public License 
    1619# along with this program; if not, write to the Free Software 
    17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  
    18 # USA 
    19  
     20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2021""" 
    2122higwidgets/higframe.py 
  • trunk/higwidgets/higlabels.py

    r459 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Cleber Rodrigues <cleber@globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higlabels.py 
  • trunk/higwidgets/higlogindialogs.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higlogindialog.py 
  • trunk/higwidgets/hignotebooks.py

    r433 r1104  
    1 ## 
    2 ## hignotebooks.py 
    3 ## Login : <adriano@localhost.localdomain> 
    4 ## Started on  Sat Apr  8 18:52:21 2006 Adriano Monteiro Marques 
    5 ## $Id$ 
    6 ##  
    7 ## Copyright (C) 2006 Adriano Monteiro Marques 
    8 ## This program is free software; you can redistribute it and/or modify 
    9 ## it under the terms of the GNU General Public License as published by 
    10 ## the Free Software Foundation; either version 2 of the License, or 
    11 ## (at your option) any later version. 
    12 ##  
    13 ## This program is distributed in the hope that it will be useful, 
    14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    16 ## GNU General Public License for more details. 
    17 ##  
    18 ## You should have received a copy of the GNU General Public License 
    19 ## along with this program; if not, write to the Free Software 
    20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    21 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2222 
    2323import gtk 
  • trunk/higwidgets/higprogressbars.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higprogressbars.py 
  • trunk/higwidgets/higscrollers.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higscrollers.py 
  • trunk/higwidgets/higspinner.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
    3  
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higspinner.py 
  • trunk/higwidgets/higtables.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higlogindialog.py 
  • trunk/higwidgets/higtextviewers.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higtextviewers.py 
  • trunk/higwidgets/higwindows.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Cleber Rodrigues <cleber@globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/higwindows.py 
  • trunk/higwidgets/utils.py

    r433 r1104  
    1 # -*- Mode: Python; coding: iso-8859-1 -*- 
    2 # vi:si:et:sw=4:sts=4:ts=4 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
    33 
    4 ## 
    5 ## This file is part of higwidgets 
    6 ## Copyright (C) 2005 Global Red <www.globalred.com.br> 
    7 ## All rights reserved 
    8 ## 
    9 ## This program is free software; you can redistribute it and/or modify 
    10 ## it under the terms of the GNU General Public License as published by 
    11 ## the Free Software Foundation; either version 2 of the License, or 
    12 ## (at your option) any later version. 
    13 ## 
    14 ## This program is distributed in the hope that it will be useful, 
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    17 ## GNU General Public License for more details. 
    18 ## 
    19 ## You should have received a copy of the GNU General Public License 
    20 ## along with this program; if not, write to the Free Software 
    21 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
    22 ## USA. 
    23 ## 
    24 ## Author(s): Cleber Rodrigues <cleber@globalred.com.br> 
    25 ## 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2622""" 
    2723higwidgets/utils.py 
  • trunk/setup.py

    r1065 r1104  
    11#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
    4 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    5 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    6 #                           <cleber@globalred.com.br> 
    7 #           
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
    89# This program is free software; you can redistribute it and/or modify 
    910# it under the terms of the GNU General Public License as published by 
  • trunk/tests_higwidgets/alerts.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224from HIGWidgets import * 
  • trunk/tests_higwidgets/entries_packing.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224from HIGWidgets import * 
  • trunk/tests_higwidgets/gdk_pixbuf.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224 
  • trunk/tests_higwidgets/labeled_progress_bar.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224from HIGWidgets import * 
  • trunk/tests_higwidgets/notebook.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224from HIGWidgets import * 
  • trunk/tests_higwidgets/spinner.py

    r433 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
     8# 
     9# This program is free software; you can redistribute it and/or modify 
     10# it under the terms of the GNU General Public License as published by 
     11# the Free Software Foundation; either version 2 of the License, or 
     12# (at your option) any later version. 
     13# 
     14# This program is distributed in the hope that it will be useful, 
     15# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17# GNU General Public License for more details. 
     18# 
     19# You should have received a copy of the GNU General Public License 
     20# along with this program; if not, write to the Free Software 
     21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     22 
    123import gtk 
    224from HIGWidgets import HIGSpinner 
  • trunk/umit

    r1061 r1104  
    11#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
  • trunk/umitCore/BasePaths.py

    r459 r1104  
    1 ## 
    2 ## BasePaths.py 
    3 ## Login : <adriano@localhost.localdomain> 
    4 ## Started on  Sat Apr  8 17:49:23 2006 Adriano Monteiro Marques 
    5 ## $Id$ 
    6 ##  
    7 ## Copyright (C) 2006 Adriano Monteiro Marques 
    8 ## This program is free software; you can redistribute it and/or modify 
    9 ## it under the terms of the GNU General Public License as published by 
    10 ## the Free Software Foundation; either version 2 of the License, or 
    11 ## (at your option) any later version. 
    12 ##  
    13 ## This program is distributed in the hope that it will be useful, 
    14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    16 ## GNU General Public License for more details. 
    17 ##  
    18 ## You should have received a copy of the GNU General Public License 
    19 ## along with this program; if not, write to the Free Software 
    20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    21 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7# 
     8# This program is free software; you can redistribute it and/or modify 
     9# it under the terms of the GNU General Public License as published by 
     10# the Free Software Foundation; either version 2 of the License, or 
     11# (at your option) any later version. 
     12# 
     13# This program is distributed in the hope that it will be useful, 
     14# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     16# GNU General Public License for more details. 
     17# 
     18# You should have received a copy of the GNU General Public License 
     19# along with this program; if not, write to the Free Software 
     20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2221 
    2322import os 
  • trunk/umitCore/BugRegister.py

    r466 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/Diff.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
     
    1619# along with this program; if not, write to the Free Software 
    1720# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     21 
    1822 
    1923from difflib import Differ, restore 
  • trunk/umitCore/DiffHtml.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
     
    1619# along with this program; if not, write to the Free Software 
    1720# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     21 
    1822 
    1923from difflib import HtmlDiff, restore 
  • trunk/umitCore/I18N.py

    r649 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
     
    1922from umitCore.Logging import log 
    2023 
     24 
    2125LC_ALL = "" 
    2226try: 
     
    2933    import gettext 
    3034    from gettext import gettext as _ 
    31      
     35 
    3236    gettext.install('umit', unicode=True) 
    3337 
    3438except ImportError: 
    3539    log.critical("You don't have gettext module, no internationalization will be used.") 
    36      
     40 
    3741    # define _() so program will not fail 
    3842    import __builtin__ 
  • trunk/umitCore/Logging.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
     
    1619# along with this program; if not, write to the Free Software 
    1720# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
     21 
    1822 
    1923from logging import Logger, StreamHandler, Formatter 
  • trunk/umitCore/NmapCommand.py

    r1062 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/NmapOptions.py

    r1062 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/NmapOutputHighlight.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/NmapParser.py

    r847 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/OSFingerprintRegister.py

    r461 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/OSList.py

    r516 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitCore/Paths.py

    r664 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitCore/SearchResult.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/ServiceFingerprintRegister.py

    r461 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitCore/ServiceList.py

    r516 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitCore/UmitConf.py

    r846 r1104  
    1 ## 
    2 ## UmitConf.py 
    3 ## Login : <adriano@localhost.localdomain> 
    4 ## Started on  Sun Apr  9 17:01:43 2006 Adriano Monteiro Marques 
    5 ## $Id$ 
    6 ##  
    7 ## Copyright (C) 2006 Adriano Monteiro Marques 
    8 ## This program is free software; you can redistribute it and/or modify 
    9 ## it under the terms of the GNU General Public License as published by 
    10 ## the Free Software Foundation; either version 2 of the License, or 
    11 ## (at your option) any later version. 
    12 ##  
    13 ## This program is distributed in the hope that it will be useful, 
    14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    16 ## GNU General Public License for more details. 
    17 ##  
    18 ## You should have received a copy of the GNU General Public License 
    19 ## along with this program; if not, write to the Free Software 
    20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    21 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7# 
     8# This program is free software; you can redistribute it and/or modify 
     9# it under the terms of the GNU General Public License as published by 
     10# the Free Software Foundation; either version 2 of the License, or 
     11# (at your option) any later version. 
     12# 
     13# This program is distributed in the hope that it will be useful, 
     14# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     16# GNU General Public License for more details. 
     17# 
     18# You should have received a copy of the GNU General Public License 
     19# along with this program; if not, write to the Free Software 
     20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2221 
    2322import re 
  • trunk/umitCore/UmitConfigParser.py

    r428 r1104  
    1 ## 
    2 ## UmitConf.py 
    3 ## Login : <py.adriano@gmail.com> 
    4 ## Started on  Wed Apr  5 09:43:03 2006 Adriano Monteiro Marques 
    5 ## $Id$ 
    6 ##  
    7 ## Copyright (C) 2006 Adriano Monteiro Marques 
    8 ## This program is free software; you can redistribute it and/or modify 
    9 ## it under the terms of the GNU General Public License as published by 
    10 ## the Free Software Foundation; either version 2 of the License, or 
    11 ## (at your option) any later version. 
    12 ##  
    13 ## This program is distributed in the hope that it will be useful, 
    14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    16 ## GNU General Public License for more details. 
    17 ##  
    18 ## You should have received a copy of the GNU General Public License 
    19 ## along with this program; if not, write to the Free Software 
    20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    21 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7# 
     8# This program is free software; you can redistribute it and/or modify 
     9# it under the terms of the GNU General Public License as published by 
     10# the Free Software Foundation; either version 2 of the License, or 
     11# (at your option) any later version. 
     12# 
     13# This program is distributed in the hope that it will be useful, 
     14# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     16# GNU General Public License for more details. 
     17# 
     18# You should have received a copy of the GNU General Public License 
     19# along with this program; if not, write to the Free Software 
     20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2221 
    2322from ConfigParser import ConfigParser, DEFAULTSECT 
  • trunk/umitCore/UmitDB.py

    r1062 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitCore/UserConf.py

    r1062 r1104  
    1 ## 
    2 ## UserConf.py 
    3 ## Login : <adriano@localhost.localdomain> 
    4 ## Started on  Sat Apr  8 16:20:57 2006 Adriano Monteiro Marques 
    5 ## $Id$ 
    6 ##  
    7 ## Copyright (C) 2006 Adriano Monteiro Marques 
    8 ## This program is free software; you can redistribute it and/or modify 
    9 ## it under the terms of the GNU General Public License as published by 
    10 ## the Free Software Foundation; either version 2 of the License, or 
    11 ## (at your option) any later version. 
    12 ##  
    13 ## This program is distributed in the hope that it will be useful, 
    14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    16 ## GNU General Public License for more details. 
    17 ##  
    18 ## You should have received a copy of the GNU General Public License 
    19 ## along with this program; if not, write to the Free Software 
    20 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    21 ## 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7# 
     8# This program is free software; you can redistribute it and/or modify 
     9# it under the terms of the GNU General Public License as published by 
     10# the Free Software Foundation; either version 2 of the License, or 
     11# (at your option) any later version. 
     12# 
     13# This program is distributed in the hope that it will be useful, 
     14# but WITHOUT ANY WARRANTY; without even the implied warranty of 
     15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     16# GNU General Public License for more details. 
     17# 
     18# You should have received a copy of the GNU General Public License 
     19# along with this program; if not, write to the Free Software 
     20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
    2221 
    2322import os 
  • trunk/umitCore/__init__.py

    r456 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    5 #                           <cleber@globalred.com.br> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
    68# 
    79# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/About.py

    r664 r1104  
     1#!/usr/bin/env python 
    12# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
    4 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    57# 
    68# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/App.py

    r1067 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    5 #                           <cleber@globalred.com.br> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
    68# 
    79# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/BugReport.py

    r484 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/CrashReport.py

    r639 r1104  
    1 # Copyright (C) 2005-2007 Insecure.Com LLC. 
    2 # 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Frederico Silva Ribeiro <ribeiro.fsilva@gmail.com> 
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
     4# Copyright (C) 2005 Insecure.Com LLC. 
     5# 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Frederico Silva Ribeiro <ribeiro.fsilva@gmail.com> 
    58# 
    69# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/DiffCompare.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/FileChoosers.py

    r472 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/Icons.py

    r649 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    5 #                           <cleber@globalred.com.br> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
    68# 
    79# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/MainWindow.py

    r1062 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    5 #                           <cleber@globalred.com.br> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
     7#         Cleber Rodrigues <cleber.gnu@gmail.com> 
    68# 
    79# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/NmapOutputProperties.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/NmapOutputViewer.py

    r1069 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/OSCombo.py

    r425 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/OSFingerprintReport.py

    r461 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/OptionBuilder.py

    r765 r1104  
    11#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
  • trunk/umitGUI/OptionCombo.py

    r487 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/ProfileCombo.py

    r487 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/ProfileEditor.py

    r765 r1104  
    11#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
  • trunk/umitGUI/ScanHostDetailsPage.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanHostsView.py

    r455 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanNmapOutputPage.py

    r481 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanNotebook.py

    r847 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanOpenPortsPage.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanRunDetailsPage.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ScanToolbar.py

    r649 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/Search.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/SearchGUI.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/SearchWindow.py

    r663 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/ServiceCombo.py

    r419 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/ServiceFingerprintReport.py

    r461 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/Splash.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/TargetCombo.py

    r428 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/umitGUI/Wizard.py

    r965 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/umitGUI/__init__.py

    r456 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
    4 #          Cleber Rodrigues <cleber.gnu@gmail.com> 
    5 #                           <cleber@globalred.com.br> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    67# 
    78# This program is free software; you can redistribute it and/or modify 
  • trunk/utils/add_splash_version.py

    r572 r1104  
    11#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    24# Copyright (C) 2005 Insecure.Com LLC. 
    35# 
    46# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    5 #           
     7# 
    68# This program is free software; you can redistribute it and/or modify 
    79# it under the terms of the GNU General Public License as published by 
  • trunk/utils/create_os_list.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/utils/create_services_dump.py

    r567 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
  • trunk/utils/generate_classification.py

    r567 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Authors: Adriano Monteiro Marques <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify 
  • trunk/utils/generate_win_installers.py

    r846 r1104  
     1#!/usr/bin/env python 
     2# -*- coding: utf-8 -*- 
     3 
    14# Copyright (C) 2005 Insecure.Com LLC. 
    25# 
    3 # Author: Adriano Monteiro Marques   <py.adriano@gmail.com> 
     6# Author: Adriano Monteiro Marques <py.adriano@gmail.com> 
    47# 
    58# This program is free software; you can redistribute it and/or modify