From cb14a2dd22d2bf97b781e7d8fe78efb743d84a2f Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 27 Apr 2009 18:04:20 +0000 Subject: [PATCH] Remove mapping.py --- deluge/ui/console/mapping.py | 77 ------------------------------------ deluge/ui/console/screen.py | 5 ++- 2 files changed, 3 insertions(+), 79 deletions(-) delete mode 100644 deluge/ui/console/mapping.py diff --git a/deluge/ui/console/mapping.py b/deluge/ui/console/mapping.py deleted file mode 100644 index ad05870dc..000000000 --- a/deluge/ui/console/mapping.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python -# -# mapping.py -# -# Copyright (C) 2008-2009 Ido Abramovich -# -# Deluge is free software. -# -# You may redistribute it and/or modify it under the terms of the -# GNU General Public License, as published by the Free Software -# Foundation; either version 3 of the License, or (at your option) -# any later version. -# -# deluge is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with deluge. If not, write to: -# The Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor -# Boston, MA 02110-1301, USA. -# -from deluge.ui.client import client -from deluge.ui.console.main import match_torrents -import re -import logging -from twisted.internet import defer - -_idregex = re.compile(r'^[0-9a-f]{40}$') - -_mapping = {} - -def _arg_is_id(arg): - return bool(_idregex.match(arg)) - -def get_names(torrents): - d = defer.Deferred() - def _got_torrents_status(states): - try: - d.callback(list([ (tid, state['name']) for (tid, state) in states.items() ])) - except Exception, e: - print e - d.errback(e) - - client.core.get_torrents_status({'id':torrents}, ['name']).addCallback(_got_torrents_status) - return d - -def rehash(): - global _mapping - d = defer.Deferred() - def on_match_torrents(torrents): - def on_get_names(names): - _mapping = dict([(x[1],x[0]) for x in names]) - d.callback() - get_names(torrents).addCallback(on_get_names) - match_torrents().addCallback(on_match_torrents) - return d - -def to_ids(args): - d = defer.Deferred() - def on_rehash(result): - res = [] - for i in args: - if _arg_is_id(i): - res.append(i) - else: - if i in _mapping: - res.append(_mapping[i]) - d.callback(res) - rehash().addCallback(on_rehash) - - return d - -def names(): - return _mapping.keys() diff --git a/deluge/ui/console/screen.py b/deluge/ui/console/screen.py index 7eec62dce..6bfd0761b 100644 --- a/deluge/ui/console/screen.py +++ b/deluge/ui/console/screen.py @@ -327,8 +327,9 @@ class Screen(CursesStdIO): # Scrolling through buffer elif c == curses.KEY_PPAGE: self.display_lines_offset += self.rows - 3 - if self.display_lines_offset > (len(self.lines) - 1 - self.rows - 3): - self.display_lines_offset = len(self.lines) - 1 - self.rows - 3 + # We substract 3 for the unavailable lines and 1 extra due to len(self.lines) + if self.display_lines_offset > (len(self.lines) - 4 - self.rows): + self.display_lines_offset = len(self.lines) - 4 - self.rows self.refresh() elif c == curses.KEY_NPAGE: