From 338bbba4a14a21c82a3d4849b075fddddad9cee9 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 10 May 2010 18:48:39 +0200 Subject: TODO: updated --- TODO | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'TODO') diff --git a/TODO b/TODO index 169fa6d6..b52c6928 100644 --- a/TODO +++ b/TODO @@ -89,10 +89,14 @@ Ideas ( ) #24 10/01/06 progress bar (X) #27 10/01/06 hide bookmarks in list which contain hidden dir (X) #28 10/01/06 use regexp instead of string for searching - ( ) #33 10/01/08 accelerate mousewheel speed + (X) #33 10/01/08 accelerate mousewheel speed + won't do this (X) #45 10/01/18 hooks for events like setting changes - ( ) #53 10/01/23 merge fm and environment - ( ) #68 10/03/10 threads, to seperate ui and loading + (X) #53 10/01/23 merge fm and environment + won't do this + (X) #68 10/03/10 threads, to seperate ui and loading + + won't do this ( ) #72 10/03/21 ranger daemon which does the slow io tasks ( ) #75 10/03/28 navigate in history (X) #76 10/03/28 save history between sessions @@ -100,3 +104,9 @@ Ideas ( ) #82 10/04/19 :s command for batch renaming ( ) #84 10/04/25 use pygments for syntax highlighting + +Blocking + + ( ) #60 10/02/05 utf support improvable + ( ) #81 10/04/15 system crash when previewing /proc/kcore with root permissions + -- cgit 1.4.1-2-gfad0 From ff86460b721ce3398096473b75593a688e2e0f5d Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 12 May 2010 00:20:20 +0200 Subject: TODO: updated --- TODO | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'TODO') diff --git a/TODO b/TODO index b52c6928..87034601 100644 --- a/TODO +++ b/TODO @@ -55,6 +55,7 @@ General (X) #83 10/04/19 better ways to mark files. eg by regexp, filetype,.. ( ) #86 10/04/21 narg for move_parent ( ) #60 10/02/05 utf support improvable + ( ) #91 10/05/12 in keys.py, fm.move(right=N) should run with mode=N Bugs @@ -81,6 +82,9 @@ Bugs (X) #74 10/03/21 console doesn't scroll (X) #78 10/03/31 broken preview when deleting all files in a directory (X) #85 10/04/26 no automatic reload of directory after using :filter + ( ) #87 10/05/10 files are not properly closed after previewing + ( ) #88 10/05/10 race conditions for data loading from FS + ( ) #90 10/05/11 no link target for broken links Ideas @@ -95,7 +99,6 @@ Ideas (X) #53 10/01/23 merge fm and environment won't do this (X) #68 10/03/10 threads, to seperate ui and loading - won't do this ( ) #72 10/03/21 ranger daemon which does the slow io tasks ( ) #75 10/03/28 navigate in history @@ -103,6 +106,7 @@ Ideas (X) #77 10/03/28 colorscheme overlay in options.py ( ) #82 10/04/19 :s command for batch renaming ( ) #84 10/04/25 use pygments for syntax highlighting + ( ) #89 10/05/10 branch view Blocking -- cgit 1.4.1-2-gfad0 From e1d0613aa84de9999efb1051ae54061e282f6112 Mon Sep 17 00:00:00 2001 From: hut Date: Thu, 13 May 2010 21:01:42 +0200 Subject: fixed #90 --- TODO | 2 +- ranger/fsobject/fsobject.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'TODO') diff --git a/TODO b/TODO index 87034601..94c4a61b 100644 --- a/TODO +++ b/TODO @@ -84,7 +84,7 @@ Bugs (X) #85 10/04/26 no automatic reload of directory after using :filter ( ) #87 10/05/10 files are not properly closed after previewing ( ) #88 10/05/10 race conditions for data loading from FS - ( ) #90 10/05/11 no link target for broken links + (X) #90 10/05/11 no link target for broken links Ideas diff --git a/ranger/fsobject/fsobject.py b/ranger/fsobject/fsobject.py index 66b726ec..129bf378 100644 --- a/ranger/fsobject/fsobject.py +++ b/ranger/fsobject/fsobject.py @@ -243,7 +243,7 @@ class FileSystemObject(MimeTypeAware, FileManagerAware): else: self.exists = False self.runnable = False - if self.is_link and self.exists: + if self.is_link: self.realpath = realpath(self.path) self.readlink = os.readlink(self.path) else: -- cgit 1.4.1-2-gfad0 From 2f3326a41430364cb34a227d311691cada605327 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 14 May 2010 16:54:05 +0200 Subject: TODO: update --- TODO | 1 + 1 file changed, 1 insertion(+) (limited to 'TODO') diff --git a/TODO b/TODO index 94c4a61b..775605e9 100644 --- a/TODO +++ b/TODO @@ -56,6 +56,7 @@ General ( ) #86 10/04/21 narg for move_parent ( ) #60 10/02/05 utf support improvable ( ) #91 10/05/12 in keys.py, fm.move(right=N) should run with mode=N + ( ) #92 10/05/14 allow to enter the realpath of a directory Bugs -- cgit 1.4.1-2-gfad0