File: ChangeLog

package info (click to toggle)
lfm 0.91.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 400 kB
  • ctags: 287
  • sloc: python: 5,786; makefile: 5
file content (1165 lines) | stat: -rw-r--r-- 40,289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
Mon Jul 26 18:20:06 2004  Iigo Serna  <inigoserna@telefonica.net>

	* setup.py: man pages must be installed in $PREFIX/share/man

Wed Jul 21 19:26:38 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/files.py (fix_chars_in_filename): 
	FIX for debian bug #260401: some chars in filename make lfm crash
	see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=260401
	for more info
	* lfm/files.py (get_fileinfo_dict): use fix_chars_in_filename
	* lfm/lfm.py (Lfm.__show_bars): 


Sat Jul  3 11:45:28 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm.1, pyview.1: man files, thanks to Sebastien Bacher for them
	* setup.py: more metadata for pypi, install man files

Fri Jul  2 00:50:01 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/lfm.py (Panel.__get_fileinfo_str_long): limit length of
	owner and group strings

Thu Jul  1 11:50:52 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/messages.py (MenuWin.__init__): fixed another crash because
	of fucking curses.cur_set() returning ERR

Wed Jun 30 22:24:05 2004  Iigo Serna  <inigoserna@telefonica.net>

	* setup.py: upgrade to version 0.91
	* PKG-INFO:
	* lfm/__init__.py: 

Wed Jun 30 22:21:26 2004  Iigo Serna  <inigoserna@telefonica.net>

	* README: documentation updated, use reST for easy generation of HTML
	* README.pyview: 
	* TODO: 
	* NEWS: 

Mon Jun 28 00:31:55 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/preferences.py (Preferences.__init__): 
	new option: show_dotfiles flag
	* lfm/lfm.py (Panel.init_dir): 
	* lfm/files.py (get_dir): 

Sun Jun 27 23:41:21 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/preferences.py (Preferences.__init__): 
	new option: detach_terminal_at_exec flag
	* lfm/actions.py (do_special_view_file): use detach_terminal_at_exec

Sun Jun 27 20:03:11 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/preferences.py (Preferences.load): apps and file types can
	be stored in configuration now
	* lfm/preferences.py (Preferences.save): 

Sun Jun 27 18:45:37 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/pyview.py (PyView): always write debug info to pyview-log.debug

Sun Jun 27 18:27:49 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/__init__.py (defaultprogs): now each app only has one
	associated program, not a list of programs. 
	WARNING: this breaks old .lfmrc, but speeds up start
	* lfm/lfm.py (Lfm.__init__): check for valid programs
	* lfm/preferences.py (Preferences.__init__): only loads default
	progs, but don't check them
	* lfm/preferences.py (Preferences.check_progs): changed function
	name from 'check_defaultprogs'
	* lfm/actions.py (do_special_view_file): warn when can't open
	special file and default to pager view

Sun Jun 27 16:34:11 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/preferences.py (Preferences.load): 
	BUG FIXED: didn't load sort mode

Sun Jun 27 15:23:19 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/messages.py (ChangePerms.manage_keys): show users and groups
	sorted alphabetically

Sun Jun 27 14:57:18 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/actions.py (file_menu): add support for uncompress in other panel
	* lfm/utils.py (uncompress_dir): 
	* lfm/utils.py (do_uncompress_dir): 

Sun Jun 27 03:10:27 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/lfm.py: resizing implemented in lfm
	* lfm/actions.py (keytable): 
	* lfm/actions.py (resize_window): 
	* lfm/lfm.py (Lfm.resize): 
	* lfm/lfm.py (Panel.do_resize): 
	* lfm/lfm.py (Lfm.__show_bars): 
	* lfm/lfm.py (Panel.show): 
	* lfm/lfm.py (Panel.__showbar): 
	* lfm/lfm.py (Panel.__calculate_columns): new useful functions
	* lfm/lfm.py (Panel.__calculate_dims): 

Sun Jun 27 02:10:06 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/lfm.py (Lfm.__init__): eliminated deleted references to
	columns positions
	* lfm/preferences.py (Preferences.__init__): 
	* lfm/preferences.py (Preferences.load): 
	* lfm/preferences.py (Preferences.save): 

Sat Jun 26 23:49:49 2004  Iigo Serna  <inigoserna@telefonica.net>

	* lfm/lfm.py (Panel.show): 
	  - 1-panel view changed, now filename has more space
	  - file info formatting has been translated here
	* lfm/lfm.py (Panel.__showbar): 
	  file info formatting has been translated here
	* lfm/lfm.py (Panel.__get_fileinfo_str_long): get file info
	  formatted string, 1-panel version
	* lfm/lfm.py (Panel.__get_fileinfo_str_short): get file info
	  formatted string, 2-panel version
	* lfm/files.py (get_fileinfo_dict): 
	  - changed function name from 'get_fileinfo_str'
	  - now this function only returns info, not a formatted string
	* lfm/files.py (get_fileinfostr_short): function eliminated, use
	'get_fileinfo_dict' instead

Sat Jun 26 21:18:00 2004  Iigo Serna  <inigoserna@telefonica.net>
        
	* pyview.py (FileView): 
	  - resizing implemented in pyview
	  - amount of info is reduced in function of window size
	* pyview.py (FileView.show_hex): show as much bytes as window size allows

Sat Jun 26 20:57:56 2004  Iigo Serna  <inigoserna@telefonica.net>

	* messages.py (get_a_key): ESC now closes dialogs
	* messages.py (confirm): 
	* messages.py (confirm_all): 
	* messages.py (Yes_No_Buttons.manage_keys): 
	* messages.py (EntryLine.manage_keys): 
	* messages.py (SelectItem.manage_keys): 
	* messages.py (FindfilesWin.manage_keys): 
	* messages.py (MenuWin.manage_keys): 
	* messages.py (ChangePerms.manage_keys): 
	* pyview.py (InternalView.run): 

Sat Jun 26 16:27:34 2004  Iigo Serna  <inigoserna@telefonica.net>

	* utils.py (compress_uncompress_file): 
	  FIXED BUG: 'app' wasn't passed to 'run_thread'
	* actions.py (Tree.run): 
	  FIXED BUG: Ctrl-T Ctrl-T crashes tree view

Thu Dec  4 01:41:28 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* README: add " surrounding $* in bash function to allow lfm
	start at dirs with space characters in name

Thu Dec  4 00:37:26 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/files.py (findgrep): fixed bug: grep with '-' char in pattern,
	it was interpreted as grep option

Tue Dec  2 22:46:19 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/actions.py (select_bookmark): select bookmark from a menu.
	Function associated to key Ctrl-D

Tue Dec  2 00:11:07 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/actions.py (rename): new feature

Tue Dec  2 00:08:57 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/actions.py (swap_panels): fixed a bug introduced when 
	lfm.py:panel.init_curses changed

Tue Dec  2 00:04:51 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/lfm.py: moved keys actions to actions.py file
	* lfm/actions.py: keys actions
	* lfm/utils.py: run_thread, un/compress functions
	* lfm/vfs.py: vfs functions

Sun Apr 27 02:30:46 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/files.py (get_fileinfostr_short): fixed bug when files > 1Gb size

Sun Apr 27 00:26:09 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/__init__.py: coltbl is now here

Sun Apr 27 00:20:55 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* lfm/lfm.py (cursor_show): wrappers over curses.curs_set() with
	* lfm/lfm.py (cursor_hide): try-except protection

Sat Apr 26 23:10:05 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* setup.py (classifiers): added classifiers

Sat Apr 26 23:08:37 2003  Iigo Serna  <inigo@inigo.katxi.org>

	* *.py: added "# -*- coding: iso-8859-15 -*-" to conform with PEP 0263

Wed Sep  4 01:04:57 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/__init__.py (VERSION): released version 0.9
	* lfm/setup.py: 

Mon Sep  2 17:24:04 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (Entry.run): don't append '*' to historic
	* lfm/messages.py (DoubleEntry.run): 

Mon Sep  2 17:22:55 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (sort): Fix bug: fix cursor bar position after sorting

Tue Aug 20 16:50:57 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (InternalView.__validate_buf): simplify code:
	if a: a = 0; else: a = 1 => a = not a
	* lfm/messages.py (confirm): 
	* lfm/messages.py (EntryLine.manage_keys): 
	* lfm/lfm.py (Lfm.run): 
	* lfm/lfm.py (Panel.manage_keys): 

Tue Aug 20 16:37:23 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__move_lines): now pyview only shows last
	line at the end of the file. It showed blank screen before. I've 
	written code which changes this behaviour to show last 'screen' of
	lines, but it is commented because I don't like it

Tue Aug 20 16:16:04 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.run): new feature: go to / set bookmarks
	* lfm/pyview.py (FileView.__init__): initialize bookmarks with -1
	* lfm/pyview.py (FileView.run): new feature: shell

Tue Aug 20 16:13:37 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (PyView): read from stdin implemented
	* lfm/pyview.py (FileView.__init__): 
	* lfm/pyview.py (FileView.show): show 'STDIN' as file name and path
	when reading from stdin
	* lfm/pyview.py (read_stdin): new function
	* lfm/pyview.py (create_temp_for_stdin): new function

Tue Aug 20 12:21:14 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.run): cosmetic changes in string
	* lfm/lfm.py (Panel.manage_keys): 

Tue Aug 20 12:18:38 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show): move 'bytes' information one char left

Tue Aug 20 12:11:00 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__get_lines_text): Fix bug: last char in file
	is not showed. Erasing '\n\r' chars when loading lines with rstrip() 
	instead of [:-1]
	* lfm/pyview.py (FileView.__get_prev_lines_text): 
	* lfm/pyview.py (FileView.__get_line_length): 
	* lfm/pyview.py (FileView.__get_1line): 
	* lfm/pyview.py (FileView.__get_file_info): Fix bug: number of lines
	in file was +1.
	* lfm/pyview.py (FileView.run): modified cursor down, page next, end

Sat Aug 17 19:33:33 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (run_thread): Fix bug: create temporary files with 
	mask 0066, i.e. only owner can read/write them
	* lfm/lfm.py (do_compress_dir): 
	* lfm/lfm.py (vfs_regenerate_file): 

Sat Aug 17 19:20:39 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_init): Fix bug: create directories with perms 0700
	to avoid other people read them
	* lfm/lfm.py (vfs_copy): 
	* lfm/lfm.py (vfs_pan_init): 
	* lfm/lfm.py (vfs_pan_copy): 

Sat Aug 17 17:19:43 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (LfmApp): Fix bug: when lfm exits after checking command
	line options, make 'lfm' shell script don't show path error
	* lfm/lfm.py (lfm_exit): new function

Sat Aug 17 15:37:48 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_dir): don't compress '..' directory

Sat Aug 17 15:34:47 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_dir): Fix bug: don't check 'tar' if un/zip
	* lfm/lfm.py (vfs_init):

Sat Aug 17 14:26:48 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_init): modified to allow zip-files vfs
	* lfm/lfm.py (vfs_regenerate_file): 

Sat Aug 17 14:17:41 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_dir): modified to allow compress to zip-files
	* lfm/lfm.py (do_compress_dir): 
	* lfm/lfm.py (uncompress_dir): modified to allow uncompress zip-files
	* lfm/lfm.py (do_uncompress_dir): 
	* lfm/lfm.py (check_compressed_tarfile):
	* lfm/__init__.py (defaultprogs): zip and unzip programs added
	* lfm/lfm.py (Panel.manage_keys): added zip functionalities to file menu

Sat Aug 17 12:32:38 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* setup.py: use python2 as default interpreter
	* lfm/lfm: 
	* lfm/pyview: 
	* lfm/lfm.py: 
	* lfm/pyview.py: 

Fri Aug 16 13:37:34 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_init): show correct filename when an error occurs
	while uncompressing file

Wed Aug 14 18:55:22 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_exit): added 'rebuild vfs' question / option
	* lfm/preferences.py (Preferences.__init__): added 'ask_rebuild_vfs'
	confirmation and 'rebuild_vfs' option flags
	* README: modified accordingly to new behaviour

Wed Aug 14 18:44:40 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/__init__.py: email address changed: <inigoserna@telefonica.net>
	* lfm/pyview.py:
	* lfm/lfm.py:
	* setup.py:
	* README: 
	* README.pyview:: 

Wed Aug 14 18:06:35 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): Fix bug: when un/compressing files
	cursorbar must remain in the same file

Wed Aug 14 17:11:02 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_special_view_file): fork twice to avoid zombie processes
	* lfm/files.py (exec_cmd): new threaded exec command to avoid zombie
	processes
	* lfm/preferences.py (Preferences.check_defaultprogs): 
	use files.exec_cmd instead of os.popen4
	* lfm/pyview.py (exec_cmd): idem
	* lfm/pyview.py (FileView.__init__):

Wed Aug 14 17:10:19 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* setup.py: execute setup with python2

Mon Aug 12 23:00:10 2002  Iigo Serna  <inigo@lethe.infernus.org>

	Applied some good patches from Bartosz Oler (liar@furrynet.org):

	1. colors customization: Now you can customize the colors lfm use in
	the configuration file, 'colors' section. Each color is defined by
	a string with its name. It looks like this:
	        element foreground_color background_color

	* lfm/lfm.py (Lfm.init_curses): Removed old static colors initialization
	* lfm/lfm.py (Lfm.run): Preferences loading has been moved from here
	* lfm/lfm.py (Lfm.__init__): ... to here
	* lfm/lfm.py (Lfm.set_color): New function that returns curses color 
	if exists, otherwise return default.
	* lfm/preferences.py (Preferences.__init__): default colors
	* lfm/preferences.py (Preferences.load): read colors from configuration
	file or use default colors
	* lfm/preferences.py (Preferences.save): save used colors to configuration
	file

	2. Allow preferences values to contain colons in the configuration file.

	* lfm/preferences.py (Preferences.load): Allow preferences values to
	contain colons.

	3. Lack of a bookmark's definition shouldn't be an error.
	
	* lfm/preferences.py (Preferences.load): "Lack of a bookmark's 
	definition shouldn't be an error. I.e. I have only few bookmarks
	and it annoyed me when lfm was printing: 'Bad bookmark blah, blah...'.
	Now, message is printed only if directory doesn't exist."
	
Thu Mar  7 19:24:22 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.init_dir): Fix bug: when, at start, lfm can't enter
	into a dir due to directory permissions

Thu Mar  7 18:57:31 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__init__): Fix bug: when user hasn't permissions
	to read file, exit gracefully instead of crashing

Wed Mar  6 13:57:56 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (FixSizeCommonWindow.__init__): fix len(text) problem

Tue Mar  5 13:43:57 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* README: added " to the 'cd' command in the lfm() shell function to
	allow changing to dir containing spaces

Tue Mar  5 13:31:13 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (SelectItem.show): Added win refresh to assure window
	refresh properly
	* lfm/messages.py (FindfilesWin.show): 

Tue Mar  5 13:20:41 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (SelectItem.show): Fix bug: crash if len(line) ==
	width of cursorbar window

Tue Mar  5 13:00:26 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_execute_file): eliminate extra '"'

Sun Mar  3 22:19:49 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/__init__.py (VERSION): release version 0.8

Sun Mar  3 22:17:21 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_uncompress_dir): well, it seems '-C' is not a valid 
	option to specify output directory in not gnu tars, so change code

Sun Mar  3 20:30:09 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): eliminate 'y' feature (un/crypt)

Sun Mar  3 00:24:12 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): tree panel implemented
	* lfm/lfm.py (Tree): new class to implement a tree panel

Sat Mar  2 13:36:17 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.run): fix bug: page up / down don't scroll
	correctly in wrap mode if line doesn't fix in screen

Thu Feb 28 23:32:36 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm: new scripts
	* lfm/pyview: 
	* lfm/lfm.py: 
	* lfm/pyview.py: 
	* lfm/__init__.py: contain globals

Thu Feb 28 20:32:31 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (do_copy): restore not to copy directory mode, times, 
	owner and group attributes, because it fails when copying from not
	writable fs

Thu Feb 28 19:06:43 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (win_nokey): now uses FixSizeCommonWindow

Thu Feb 28 19:06:32 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (FixSizeCommonWindow): new message window class to 
	show work in progress

Thu Feb 28 18:25:39 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): fix 'show same dir in two panels' 
	with vfs

Thu Feb 28 18:21:48 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_copy): new functions
	* lfm/lfm.py (vfs_pan_copy): 

Thu Feb 28 18:00:00 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (findgrep): panelize vfs implemented
	* lfm/lfm.py (vfs_regenerate_file): 

Thu Feb 28 17:59:21 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_pan_init): new functions
	* lfm/lfm.py (vfs_pan_regenerate): 

Thu Feb 28 15:36:40 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (findgrep): fix bug: if selected file has a ':' in name

Thu Feb 28 14:32:27 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (vfs_regenerate_file): check if it can regenerate vfs file
	before doing it

Thu Feb 28 13:42:27 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (move): fix bug: catching an exception after not been 
	able to copy => it crashed when trying to delete copied files

Thu Feb 28 13:33:25 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (CommonWindow.__init__): fix bug: if #lines of 
	text > dialog.width

Thu Feb 28 12:22:49 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (run_thread): now message appear in a dialog, clean up
	function

Thu Feb 28 11:41:17 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (CommonWindow): added option not to wait for a key
	* lfm/messages.py (win_nokey): new function

Thu Feb 28 01:41:09 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Lfm.run): vfs implemented!!!
	* lfm/lfm.py (Lfm.show_bars): 
	* lfm/lfm.py (Panel.show): 
	* lfm/lfm.py (Panel.init_dir): 
	* lfm/lfm.py (Panel.refresh_panel): 
	* lfm/lfm.py (Panel.manage_keys): 
	* lfm/lfm.py (Panel.show_info): 

Wed Feb 27 17:31:57 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_uncompress_dir): added tar '-C' option to specify
	output directory. Does it work in not gnu tars?
	* lfm/lfm.py (vfs_init): new functions
	* lfm/lfm.py (vfs_exit): 
	* lfm/lfm.py (vfs_regenerate_file): 
	* lfm/lfm.py (vfs_join): 
	* lfm/files.py (mktemp): new function, wrapper to tempfile.mktemp

Wed Feb 27 01:26:25 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (do_copy): change 'shutil.copytree' by own code
	when walking tree to fix next bug:
	"Overwrite dirs when moving or copying => walk dirs
	f.e.    panel1:   dir/a      panel2:   dir/b
	                     /b                   /c
	Now when moving dir from panel1 to panel2, the 'dir' destination
	is overwritten, so 'c'-file is lost. This is not the desired
	behaviour"
	
Tue Feb 26 15:55:13 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (SelectItem.show): fix bug: "messages.SelectItem, 
	messages.FindfilesWin, messages.MenuWin, messages.ChangePerms:
	upperleft corner disappears"
	* lfm/messages.py (FindfilesWin.show): 
	* lfm/messages.py (MenuWin.show): 
	* lfm/messages.py (ChangePerms.show): 

Tue Feb 26 14:10:20 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (ChangePerms.manage_keys): change cursor movement 
	behaviour, now it's circular

Tue Feb 26 13:43:17 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show_chr): changing 'addch' by 'addstr'
	shows individual chars >= 0xA0 (meta chars) correctly, neither in 
	reversed video or as 2 chars
	* lfm/pyview.py (FileView.show_str):
	* lfm/pyview.py (FileView.show_hex):

Tue Feb 26 13:13:57 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.run): fix bug: "if wrap mode => fix prev/next 
	page & up/down cursor". Now they move to screen lines, not to physical
	lines
	* lfm/pyview.py (FileView.show_text_wrap): new functions
	* lfm/pyview.py (FileView.show_text_nowrap): 
	* lfm/pyview.py (FileView.__get_1line): 
	* lfm/pyview.py (FileView.__get_line_length): 
	* lfm/pyview.py (FileView.__get_prev_lines_text): 

Mon Feb 25 12:47:32 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.refresh_panel): fix bug: if panel2 shows 'a' 
	directory and in panel1 'a' is moved or deleted, lfm crashes

Mon Feb 25 12:10:48 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (DATE): change copyright date to years 2001-2
	* lfm/pyview.py (DATE): 

Mon Feb 25 11:54:15 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show): fix bug when filename length is too big
	* lfm/messages.py (CommonWindow.__init__): 

Sat Feb 23 16:21:46 2002  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): after moving a file cursor goes to next
	file in panel, as deletion does

Sun Nov 25 19:40:19 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (VERSION): release of version 0.7
	* lfm/pyview.py (VERSION): upgraded to version 0.3

Sun Nov 25 19:40:19 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (complete): fix complete code. It works ok now
	* lfm/lfm.py (doEntry): 
	* lfm/lfm.py (doDoubleEntry): 
	* lfm/messages.py (EntryLine): 
	* lfm/messages.py (Entry): 
	* lfm/messages.py (DoubleEntry): 
	
Sun Nov 25 15:48:34 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_something_on_file): change to initial behaviour:
	do_someting_on_file has not to capture output or been executed 
	inside other thread. Old code remains comented

Sun Nov 25 02:16:54 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (complete): fix a bug when trying to complete something
	that is not a valid path

Sun Nov 25 01:49:29 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_something_on_file): capture output & option to show it
	* lfm/lfm.py (do_do_something_on_file): new function to be run inside
	run_thread

Sun Nov 25 01:17:53 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/preferences.py (Preferences.__init__): added new preference:
	show_output_after_exec, defaults to yes

Sun Nov 25 00:27:18 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (InternalView.__validate_buf): added option not to center

Sat Nov 24 18:37:07 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_something_on_file): chdir to file path before 
	doing something on file

Sat Nov 24 18:24:39 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_uncompress_dir): remove tar 'v' flag when 
	* lfm/lfm.py (do_compress_dir):	  un/compressing tar files

Sun Nov 18 22:15:47 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): fix cursor position after
	deleting files

Sun Nov 18 18:33:07 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show_text): fixed other bug in wrapped mode

Sun Nov 18 13:01:23 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__init__): if file is empty exists gracefully

Sun Nov 18 12:57:09 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show): fix path printing if it's too big

Thu Nov  1 15:30:06 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): now copy, move, delete can be stopped

Thu Nov  1 13:56:23 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (__get_size): capture errors

Thu Nov  1 13:01:31 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_dir): now compress directories can be stopped
	* lfm/lfm.py (do_compress_dir): 

Thu Nov  1 12:54:33 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (CommonWindow.__init__): fix a bug: 
	when len(title) > len(text)

Thu Nov  1 12:26:16 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (uncompress_dir): now uncompress tar files can be stopped
	* lfm/lfm.py (do_uncompress_dir): 

Thu Nov  1 12:10:14 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (run_thread.thread_quit_handler): added a 0.05 secs
	sleep to avoid wasting resources silly

Thu Nov  1 11:55:24 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_uncompress_file): now un/compress can be stopped
	* lfm/lfm.py (do_compress_uncompress_file): 

Mon Oct 29 00:50:03 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_dir): fix bug: tar cvf - dir | gzip >dir.tar.gz
	when compressing directories did tar processes remain, it seems it was
	because of the '>' redirection awaiting eternally to completition

Sun Oct 28 12:15:49 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (uncompress_dir): check errors
	* lfm/lfm.py (compress_dir): 

Sun Oct 28 11:50:24 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (compress_uncompress_file): check errors

Sun Oct 28 11:20:42 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (findgrep): use popen3 instead of popen and forget
	* lfm/files.py (find):     stderr output

Sun Oct 28 02:29:38 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py: change popen2.popen[34] by os.popen[34] functions
	* lfm/pyview.py: 
	* lfm/preferences.py: 

Sat Oct 27 16:24:39 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (VERSION): upgraded to v0.2

Sat Oct 27 16:48:39 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.run): added find and find next / previous

Sat Oct 27 16:23:25 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__find): new functions
	* lfm/pyview.py (FileView.__find_next):
	* lfm/pyview.py (FileView.__find_previous): 

Sat Oct 27 15:45:57 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__init__): check for 'grep'

Sat Oct 27 15:45:16 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* README.pyview (Keys): added find information

Sat Oct 27 12:35:31 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (PYVIEW_README): update help

Sat Oct 20 23:27:00 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.show_str): don't show '\r' in dos text files

Thu Aug 23 00:59:59 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): added compress directory to
	* lfm/lfm.py (compress_dir):      .tar.bz2

Thu Aug 23 00:42:43 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): added README.pyview to help

Thu Aug 23 00:34:09 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (InternalView): allow scrolling if buffer
	doesn't fit in body window

Thu Aug 23 00:22:19 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* README.pyview: new file, documentation for pyview

Wed Aug 22 18:28:34 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.show_info): fixed a small bug when showing info
	of a file on /

Wed Aug 22 16:52:47 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (FileView.__get_file_info): speed up function,
	before it was very slow on large files

Wed Aug 22 00:22:17 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.do_show_file_info): implemented 'show file info'

Tue Aug 21 21:28:39 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (InternalView.__validate_buf): check for lines not to
	be wider than screen width

Tue Aug 21 20:53:43 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (get_user_fullname): new function

Tue Aug 21 20:11:30 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py: 'import messages' must be inside a try clause
	to avoid raising an exception in lfm, I suppose because lfm
	imports messages module before

Tue Aug 21 19:28:30 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (show_fs_info): new function
	* lfm/lfm.py (Panel.manage_keys): rewrite 'show filesystems info'
	to use internal viewer

Tue Aug 21 01:42:15 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (InternalView): new viewer class to use internally

Mon Aug 20 20:32:58 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/preferences.py (Preferences.check_defaultprogs): 
	fixed a bug

Mon Aug 20 20:31:37 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Lfm.run): default configuration is now saved
	inmediately

Mon Aug 20 20:25:36 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (defaultprogs): default pager changed to pyview
	because this is the best one ;-)

Mon Aug 20 20:23:02 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py (View.run): implemented 'goto line / byte'

Sun Aug 19 16:19:10 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/pyview.py: start of the lfm viewer to be used both internally
	and externally as a standalone program -> 'pyview'

Sun Aug 19 15:12:18 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): change help behaviour to allow
	to read README, NEWS, TODO, ChangeLog or COPYING files

Sun Aug 19 14:17:19 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_special_view_file): new function to show special
	files: html, graphics, ...
	* lfm/lfm.py (defaultprogs): defined new programs
	* lfm/lfm.py (filetypes): defined new file types

Sun Aug 19 12:22:11 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (EntryLine.manage_keys): added Ctrl-D key to
	delete the whole content of the EntryLine

Sat Aug 18 19:36:50 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (findgrep): fixed a bug around filename with "
	in grep call

Sat Aug 18 19:31:01 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): implemented help

Tue Aug  7 19:43:40 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (VERSION): release of version 0.5

Tue Aug  7 19:02:39 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* setup.py (DOC_FILES): setup.py must install docs

Tue Aug  7 18:23:20 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (__get_size): 'b' is not a valid flag for 'du -s'
	in solaris, so get Kb and convert to bytes by hand

Mon Aug  6 00:11:18 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (check_compressed_tarfile): new function splitted
	from uncompress_dir for future uses

Sun Aug  5 20:52:36 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (FindfilesWin.manage_keys): fixed what 'enter'
	returns

Sun Aug  5 20:28:23 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): implemented 'show filesystems
	info'
	* lfm/messages.py (show_fs_info): new function
	* lfm/files.py (get_fs_info): new function

Sun Aug  5 18:34:32 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* NEWS: added a new file with changes between versions

Sun Aug  5 18:23:11 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (findgrep): fix a bug causing a crash when find and/or
	grep returns nothing

Sun Aug  5 18:00:02 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (move): when a problem appears while copying files,
	then don't delete original file but do it with the destination, 
	because it is only partially written

Mon Jul 23 21:27:10 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): change x and q behaviour when
	exiting. Now x exits to dir. in panel, q not

Mon Jul 23 20:56:18 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (do_something_on_file): 
	* lfm/lfm.py (compress_uncompress_file): 
	* lfm/lfm.py (uncompress_dir): 
	* lfm/lfm.py (compress_dir): 
	* lfm/lfm.py (show_dirs_size): 
	* lfm/lfm.py (findgrep): 
	* lfm/lfm.py (sort): new functions to simplify Panel.manage_keys

Mon Jul 23 01:21:35 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): implement 'p' in file menu:
	change permissions, owner or group
	* lfm/messages.py (ChangePerms): new window class
	* lfm/files.py (get_owners): new functions
	* lfm/files.py (get_groups): 
	* lfm/files.py (set_perms): 
	* lfm/files.py (set_owner_group): 

Sun Jul 22 19:31:30 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): File and General menu
	File menu: @, g, b, x, c
	General menu: /, #, s, o, c, a

Sun Jul 22 14:31:36 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (MenuWin): new window class to show file and
	general menu

Sun Jul 22 13:47:23 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/preferences.py (Preferences.check_defaultprogs): use
	popen2.popen3 instead of os.popen to avoid messages in
	stderr

Sun Jul 22 13:45:55 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (findgrep): rewrite function not to show any
	error to stderr. 2>/dev/null only works in bash-type shells

Sun Jul 22 03:34:40 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* README: added info about changing directory at exit time

Sun Jul 22 01:40:27 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py, lfm/files.py, lfm/messages.py,lfm/preferences.py: 
	document modules

Sun Jul 22 01:28:00 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (main): now lfm returns current path if exists via
	'q' or F10 keys

Sat Jul 21 23:24:54 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/preferences.py (Preferences): now preferences class has
	its own file
	* lfm/preferences.py (Preferences.check_defaultprogs): implemented
	* lfm/preferences.py (Preferences.load): implemented
	* lfm/preferences.py (Preferences.save): implemented
	* lfm/preferences.py (Preferences.edit): basic implementation
	using file edition

Sat Jul 21 16:39:46 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Preferences.__init__): default pager changed to 'less'

Fri Jul 20 19:15:31 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): find/grep implemented,
	except panelize option
	* lfm/files.py (findgrep): new functions
	* lfm/files.py (find): 
	* lfm/messages.py (FindfilesWin): new class to show find/grep
	results

Thu Jul 19 20:38:11 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): manage home and end properly 
	* lfm/messages.py (EntryLine.manage_keys): 

Thu Jul 19 18:14:00 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (VERSION): version 0.4

Thu Jul 19 18:00:16 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (confirm_all): new function
	* lfm/lfm.py (Panel.manage_keys): overwrite all implemented in 
	copy and move

Thu Jul 19 01:33:21 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (complete): completition function. After a couple
	of days it works ok now
	* lfm/lfm.py (doEntry): 
	* lfm/lfm.py (doDoubleEntry): new wrappers to parse paths to feed
	Entry and DoubleEntry classes with proper values for completition
	* lfm/messages.py (Entry): 
	* lfm/messages.py (DoubleEntry): modified to support completition

Tue Jul 17 17:20:43 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.show): scroll bars in panels (not interactive)

Sun Jul 15 03:15:04 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/messages.py (Yes_no_Buttons): new class
	* lfm/messages.py (EntryLine): new class to ease entries with
	many entry lines
	* lfm/messages.py (Entry): rewrite to use upper classes
	* lfm/messages.py (DoubleEntry): new class

Sat Jul 14 20:12:55 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): when some dirs are selected
	 and 'show dirs size', only show size of the selected dirs

Sat Jul 14 12:07:17 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): added 'special regards' ;-)

Wed Jul 11 19:23:15 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): fix a problem with enter key

Tue Jul 10 18:53:29 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): fixed a problem when
	using files which names contain spaces

Tue Jul 10 01:36:07 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): #: show dirs size

Tue Jul 10 00:49:02 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* setup.py: using distutils

Tue Jul 10 00:47:56 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/lfm.py (Panel.manage_keys): create/edit link implemented

Tue Jul 10 00:47:16 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm/files.py (modify_link): 
	* lfm/files.py (create_link): added functions

Fri Jul  6 00:30:09 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (app): version 0.3

Thu Jul  5 19:38:17 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (Entry): add historic support

Thu Jul  5 18:37:29 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): do something on file implemented

Tue Jul  3 01:38:47 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (Entry): rewrite class using curses.pad

Tue Jul  3 01:07:42 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (confirm): rewrite function using curses.pad

Tue Jul  3 01:05:27 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (error): 
	* messages.py (win): 
	* messages.py (notyet): rewritten to use new CommonWindow class

Tue Jul  3 01:06:31 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (CommonWindow): new class

Mon Jul  2 22:25:28 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): 
	* files.py (copy): 
	* files.py (move): added overwrite pref to copy and move

Mon Jul  2 20:14:15 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): added confirmation pref to delete

Mon Jul  2 19:55:30 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): touch file implemented

Mon Jul  2 19:20:38 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.__init_dir): sort info saved in session

Mon Jul  2 18:34:07 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* files.py (__do_sort): fix bug with size and date sorting

Mon Jul  2 00:49:02 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* files.py (__do_sort): implement mix filename cases in sorting;
	implement reversed name, size and date sorting; fix bug in sorting
	by size or date when 2 or more files have the same size or date

Mon Jul  2 00:47:56 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* files.py (sort_dir): implement mix files and dirs while sorting

Mon Jul  2 00:46:16 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* messages.py (entry.manage_keys): added Ctrl-C key to quit window

Sat Jun 30 13:57:44 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): go to file (Ctrl-S) implemented

Sat Jun 30 13:43:11 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): go to / set bookmarks implemented

Sat Jun 30 13:16:41 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Preferences.__init__): start preferences support

Fri Jun 29 00:43:19 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* lfm.py (Panel.manage_keys): implemented de/select group functions

Thu Jun 28 23:36:58 2001  Iigo Serna  <inigo@lethe.infernus.org>

	* The day of the first public release is coming, so I must start
	this ChangeLog file