diff options
author | hut <hut@lepus.uberspace.de> | 2014-12-11 01:20:59 +0100 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2014-12-11 01:20:59 +0100 |
commit | 5c6c5ad5b64ac769c12793fc19c2b09d1808acc9 (patch) | |
tree | 43aa9972c0e8ae396ebfc0d90feca41b95cad6e5 | |
parent | ddc07b767f79874bd3a39c274492da41424329c9 (diff) | |
download | ranger-5c6c5ad5b64ac769c12793fc19c2b09d1808acc9.tar.gz |
update email address
59 files changed, 60 insertions, 60 deletions
diff --git a/Makefile b/Makefile index 5ea3d21e..6c31bb0f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. NAME = ranger diff --git a/ranger.py b/ranger.py index cd0c4305..4d8c5963 100755 --- a/ranger.py +++ b/ranger.py @@ -1,6 +1,6 @@ #!/usr/bin/python -O # ranger - a vim-inspired file manager for the console (coding: utf-8) -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # ===================== diff --git a/ranger/__init__.py b/ranger/__init__.py index f6b17b10..af7cee33 100644 --- a/ranger/__init__.py +++ b/ranger/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """A console file manager with VI key bindings. @@ -15,7 +15,7 @@ import os __license__ = 'GPL3' __version__ = '1.6.1' __author__ = __maintainer__ = 'Roman Zimbelmann' -__email__ = 'hut@lepus.uberspace.de' +__email__ = 'hut@hut.pm' # Constants RANGERDIR = os.path.dirname(__file__) diff --git a/ranger/api/commands.py b/ranger/api/commands.py index d7cd2372..52028128 100644 --- a/ranger/api/commands.py +++ b/ranger/api/commands.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # TODO: Add an optional "!" to all commands and set a flag if it's there diff --git a/ranger/api/options.py b/ranger/api/options.py index 3fbd3d47..d30c7995 100644 --- a/ranger/api/options.py +++ b/ranger/api/options.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # THIS WHOLE FILE IS OBSOLETE AND EXISTS FOR BACKWARDS COMPATIBILITIY diff --git a/ranger/colorschemes/default.py b/ranger/colorschemes/default.py index c32fbf1c..47ebff27 100644 --- a/ranger/colorschemes/default.py +++ b/ranger/colorschemes/default.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.gui.colorscheme import ColorScheme diff --git a/ranger/colorschemes/jungle.py b/ranger/colorschemes/jungle.py index 2b20281c..91ffc9c6 100644 --- a/ranger/colorschemes/jungle.py +++ b/ranger/colorschemes/jungle.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.gui.color import * diff --git a/ranger/colorschemes/snow.py b/ranger/colorschemes/snow.py index 1507c20f..c7793a26 100644 --- a/ranger/colorschemes/snow.py +++ b/ranger/colorschemes/snow.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.gui.colorscheme import ColorScheme diff --git a/ranger/config/commands.py b/ranger/config/commands.py index f91154ff..b1a1e81d 100644 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This configuration file is licensed under the same terms as ranger. # =================================================================== # This file contains ranger's commands. diff --git a/ranger/container/bookmarks.py b/ranger/container/bookmarks.py index 912f3f3a..d664991b 100644 --- a/ranger/container/bookmarks.py +++ b/ranger/container/bookmarks.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import string diff --git a/ranger/container/directory.py b/ranger/container/directory.py index ec28b817..486b23fe 100644 --- a/ranger/container/directory.py +++ b/ranger/container/directory.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import os.path diff --git a/ranger/container/file.py b/ranger/container/file.py index 7297dc30..fb8094a6 100644 --- a/ranger/container/file.py +++ b/ranger/container/file.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import re diff --git a/ranger/container/fsobject.py b/ranger/container/fsobject.py index 020721d8..2aba1bfb 100644 --- a/ranger/container/fsobject.py +++ b/ranger/container/fsobject.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. CONTAINER_EXTENSIONS = ('7z', 'ace', 'ar', 'arc', 'bz', 'bz2', 'cab', 'cpio', diff --git a/ranger/container/history.py b/ranger/container/history.py index 432ee827..5cd9d48f 100644 --- a/ranger/container/history.py +++ b/ranger/container/history.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # TODO: rewrite to use deque instead of list diff --git a/ranger/container/settings.py b/ranger/container/settings.py index ad42b13f..106ef5fb 100644 --- a/ranger/container/settings.py +++ b/ranger/container/settings.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from inspect import isfunction diff --git a/ranger/container/tags.py b/ranger/container/tags.py index c63c61a0..e9175e5f 100644 --- a/ranger/container/tags.py +++ b/ranger/container/tags.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # TODO: add a __getitem__ method to get the tag of a file diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 879d1f68..82ceeba3 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import codecs diff --git a/ranger/core/environment.py b/ranger/core/environment.py index 562212d4..5e57ab2c 100644 --- a/ranger/core/environment.py +++ b/ranger/core/environment.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # THIS WHOLE FILE IS OBSOLETE AND EXISTS FOR BACKWARDS COMPATIBILITIY diff --git a/ranger/core/fm.py b/ranger/core/fm.py index f6a918b1..816bf5f1 100644 --- a/ranger/core/fm.py +++ b/ranger/core/fm.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The File Manager, putting the pieces together""" diff --git a/ranger/core/loader.py b/ranger/core/loader.py index ac63dcc9..17d6bf09 100644 --- a/ranger/core/loader.py +++ b/ranger/core/loader.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from collections import deque diff --git a/ranger/core/main.py b/ranger/core/main.py index 628748bf..9ae8e0ff 100644 --- a/ranger/core/main.py +++ b/ranger/core/main.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The main function responsible to initialize the FM object and stuff.""" diff --git a/ranger/core/runner.py b/ranger/core/runner.py index 261f5e33..001b6e9a 100644 --- a/ranger/core/runner.py +++ b/ranger/core/runner.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """This module is an abstract layer over subprocess.Popen diff --git a/ranger/core/shared.py b/ranger/core/shared.py index 759d062b..0e78437f 100644 --- a/ranger/core/shared.py +++ b/ranger/core/shared.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """Shared objects contain singletons for shared use.""" diff --git a/ranger/core/tab.py b/ranger/core/tab.py index 2bb85733..7d5b8ee9 100644 --- a/ranger/core/tab.py +++ b/ranger/core/tab.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import os diff --git a/ranger/ext/accumulator.py b/ranger/ext/accumulator.py index a4e342aa..2228f55e 100644 --- a/ranger/ext/accumulator.py +++ b/ranger/ext/accumulator.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.ext.direction import Direction diff --git a/ranger/ext/cached_function.py b/ranger/ext/cached_function.py index 4ee95ac0..438233b8 100644 --- a/ranger/ext/cached_function.py +++ b/ranger/ext/cached_function.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2012-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. def cached_function(fnc): diff --git a/ranger/ext/curses_interrupt_handler.py b/ranger/ext/curses_interrupt_handler.py index e880a6c1..cc04a06d 100644 --- a/ranger/ext/curses_interrupt_handler.py +++ b/ranger/ext/curses_interrupt_handler.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """Interrupt Signal handler for curses diff --git a/ranger/ext/direction.py b/ranger/ext/direction.py index d6b465cd..4b20ea0d 100644 --- a/ranger/ext/direction.py +++ b/ranger/ext/direction.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """This class provides convenient methods for movement operations. diff --git a/ranger/ext/get_executables.py b/ranger/ext/get_executables.py index bd87607e..e127f1d2 100644 --- a/ranger/ext/get_executables.py +++ b/ranger/ext/get_executables.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from stat import S_IXOTH, S_IFREG diff --git a/ranger/ext/human_readable.py b/ranger/ext/human_readable.py index 975aa28a..53a114ab 100644 --- a/ranger/ext/human_readable.py +++ b/ranger/ext/human_readable.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. def human_readable(byte, separator=' '): diff --git a/ranger/ext/iter_tools.py b/ranger/ext/iter_tools.py index 0b0af8db..e70bfeee 100644 --- a/ranger/ext/iter_tools.py +++ b/ranger/ext/iter_tools.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from collections import deque diff --git a/ranger/ext/keybinding_parser.py b/ranger/ext/keybinding_parser.py index d7b24be3..0fc7e340 100644 --- a/ranger/ext/keybinding_parser.py +++ b/ranger/ext/keybinding_parser.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import sys diff --git a/ranger/ext/mount_path.py b/ranger/ext/mount_path.py index 1c11139d..c2e01927 100644 --- a/ranger/ext/mount_path.py +++ b/ranger/ext/mount_path.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from os.path import realpath, abspath, dirname, ismount diff --git a/ranger/ext/next_available_filename.py b/ranger/ext/next_available_filename.py index 65c51d09..74bb48ce 100644 --- a/ranger/ext/next_available_filename.py +++ b/ranger/ext/next_available_filename.py @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2011-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import os.path diff --git a/ranger/ext/openstruct.py b/ranger/ext/openstruct.py index aea44630..5881fd9f 100644 --- a/ranger/ext/openstruct.py +++ b/ranger/ext/openstruct.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. # prepend __ to arguments because one might use "args" diff --git a/ranger/ext/papermanager.py b/ranger/ext/papermanager.py index a6292c49..1f258af3 100644 --- a/ranger/ext/papermanager.py +++ b/ranger/ext/papermanager.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2014 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """ diff --git a/ranger/ext/popen_forked.py b/ranger/ext/popen_forked.py index 6cc931c6..b3b34e1b 100644 --- a/ranger/ext/popen_forked.py +++ b/ranger/ext/popen_forked.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2012-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import os diff --git a/ranger/ext/relative_symlink.py b/ranger/ext/relative_symlink.py index 419c044a..78a7422e 100644 --- a/ranger/ext/relative_symlink.py +++ b/ranger/ext/relative_symlink.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from os import symlink, sep diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py index d08ebbe0..ad24b780 100755 --- a/ranger/ext/rifle.py +++ b/ranger/ext/rifle.py @@ -1,5 +1,5 @@ #!/usr/bin/python -# Copyright (C) 2012-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2012-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """rifle, the file executor/opener of ranger diff --git a/ranger/ext/shell_escape.py b/ranger/ext/shell_escape.py index 85656c4c..ba03ae63 100644 --- a/ranger/ext/shell_escape.py +++ b/ranger/ext/shell_escape.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """Functions to escape metacharacters of arguments for shell commands.""" diff --git a/ranger/ext/signals.py b/ranger/ext/signals.py index 07ffc899..33996b16 100644 --- a/ranger/ext/signals.py +++ b/ranger/ext/signals.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """An efficient and minimalistic signaling/hook module. diff --git a/ranger/ext/spawn.py b/ranger/ext/spawn.py index 29ecf40e..6ef8d4c3 100644 --- a/ranger/ext/spawn.py +++ b/ranger/ext/spawn.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from subprocess import Popen, PIPE diff --git a/ranger/ext/widestring.py b/ranger/ext/widestring.py index e9f36fbe..6b00daaf 100644 --- a/ranger/ext/widestring.py +++ b/ranger/ext/widestring.py @@ -1,5 +1,5 @@ # -*- encoding: utf8 -*- -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import sys diff --git a/ranger/gui/ansi.py b/ranger/gui/ansi.py index fa0ed914..429395e4 100644 --- a/ranger/gui/ansi.py +++ b/ranger/gui/ansi.py @@ -1,5 +1,5 @@ # Copyright (C) 2010 David Barnett <davidbarnett2@gmail.com> -# Copyright (C) 2010-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2010-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """A library to help to convert ANSI codes to curses instructions.""" diff --git a/ranger/gui/bar.py b/ranger/gui/bar.py index 7c5b834f..a65e55bf 100644 --- a/ranger/gui/bar.py +++ b/ranger/gui/bar.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.ext.widestring import WideString, utf_char_width diff --git a/ranger/gui/color.py b/ranger/gui/color.py index d64b5b40..c3ecf4c8 100644 --- a/ranger/gui/color.py +++ b/ranger/gui/color.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """Contains abbreviations to curses color/attribute constants. diff --git a/ranger/gui/colorscheme.py b/ranger/gui/colorscheme.py index 6710d8b1..580621e1 100644 --- a/ranger/gui/colorscheme.py +++ b/ranger/gui/colorscheme.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """Colorschemes define colors for specific contexts. diff --git a/ranger/gui/context.py b/ranger/gui/context.py index c335bd23..7301717f 100644 --- a/ranger/gui/context.py +++ b/ranger/gui/context.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. CONTEXT_KEYS = ['reset', 'error', 'badinfo', diff --git a/ranger/gui/curses_shortcuts.py b/ranger/gui/curses_shortcuts.py index e75205d6..35975940 100644 --- a/ranger/gui/curses_shortcuts.py +++ b/ranger/gui/curses_shortcuts.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # Copyright (C) 2010 David Barnett <davidbarnett2@gmail.com> # This software is distributed under the terms of the GNU GPL version 3. diff --git a/ranger/gui/displayable.py b/ranger/gui/displayable.py index 6920cf92..38b58541 100644 --- a/ranger/gui/displayable.py +++ b/ranger/gui/displayable.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. from ranger.core.shared import FileManagerAware, EnvironmentAware diff --git a/ranger/gui/mouse_event.py b/ranger/gui/mouse_event.py index 12e53477..617d42e4 100644 --- a/ranger/gui/mouse_event.py +++ b/ranger/gui/mouse_event.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import curses diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py index 1c76de05..277aa34f 100644 --- a/ranger/gui/ui.py +++ b/ranger/gui/ui.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. import os diff --git a/ranger/gui/widgets/browsercolumn.py b/ranger/gui/widgets/browsercolumn.py index 5eabe2c6..7fe4927b 100644 --- a/ranger/gui/widgets/browsercolumn.py +++ b/ranger/gui/widgets/browsercolumn.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The BrowserColumn widget displays the contents of a directory or file.""" diff --git a/ranger/gui/widgets/browserview.py b/ranger/gui/widgets/browserview.py index 618d15a8..5413fc86 100644 --- a/ranger/gui/widgets/browserview.py +++ b/ranger/gui/widgets/browserview.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The BrowserView manages a set of BrowserColumns.""" diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py index b2079d8d..97efed8a 100644 --- a/ranger/gui/widgets/console.py +++ b/ranger/gui/widgets/console.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The Console widget implements a vim-like console""" diff --git a/ranger/gui/widgets/pager.py b/ranger/gui/widgets/pager.py index a1417cc2..1dfe72c2 100644 --- a/ranger/gui/widgets/pager.py +++ b/ranger/gui/widgets/pager.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # Copyright (C) 2010 David Barnett <davidbarnett2@gmail.com> # This software is distributed under the terms of the GNU GPL version 3. diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py index 0b7f2d9b..22b28165 100644 --- a/ranger/gui/widgets/statusbar.py +++ b/ranger/gui/widgets/statusbar.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The statusbar displays information about the current file and directory. diff --git a/ranger/gui/widgets/taskview.py b/ranger/gui/widgets/taskview.py index 5d2aa475..de31e807 100644 --- a/ranger/gui/widgets/taskview.py +++ b/ranger/gui/widgets/taskview.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The TaskView allows you to modify what the loader is doing.""" diff --git a/ranger/gui/widgets/titlebar.py b/ranger/gui/widgets/titlebar.py index 25edd5e4..55cc25e6 100644 --- a/ranger/gui/widgets/titlebar.py +++ b/ranger/gui/widgets/titlebar.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Roman Zimbelmann <hut@lepus.uberspace.de> +# Copyright (C) 2009-2013 Roman Zimbelmann <hut@hut.pm> # This software is distributed under the terms of the GNU GPL version 3. """The titlebar is the widget at the top, giving you broad overview. |