DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T

⟦be1771936⟧ TextFile

    Length: 2741 (0xab5)
    Types: TextFile
    Names: »TODO«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦e7f64e0c0⟧ »EurOpenD3/mail/vmh.tar.Z« 
        └─⟦dcb95597f⟧ 
            └─⟦this⟧ »TODO« 

TextFile

protect from ctrl characters everywhere.

add 'mailspool' to read_config() and use of an external array which
contains the value to startwatch().

why doesn't the pick command work?

empty folder shouldn't have a '+' anywhere 

add to cmdPush: look for the folder which the user wants to push
and if it is in the stack, rotate it to the fore.

Check for -1 rows or columns before trying to start up windows

write program to update all .info files


/search no longer works


catch changed erase/kill/werase/litnext characters in newtty and oldtty


>	when running a command, print a newline after moving to bottom,
>		get rid of "Wait ..." when command is done.
	ok.

>	pick should act like vi's '/' (and '?') command,
>		e.g. go to the matching message, WRAPPING AROUND,
>		and using previous arguments if none given
>		(should also print carriage return while searching,
>		 to indicate that it's doing something)
>		?if autoprint, print what it lands on
>		/something -> /from something (e.g. if no keyword)
>		also 'n' & 'N' like vi's
>	new command (mark?), should act like current pick command
>		e.g. just put the numbers into a sequence
>	     OR if you say "/ ... seq XXX" then act right
>		current pick command (e.g. only if seq is specified)
>	    AND should accept "-from" "-to" etc. AS WELL AS "from" "to" etc.
	sounds fairly reasonable. The pick logic also needs reworking as
it is horrendously inefficient (not to mention it doesn't work as it should).

>	freaks out on C (compose) after a while, control-W and any other
>		control character is echoed and there is no way to get out
>		except by suspending and killing vmh
	weirdage.

>	CLOSER COOPERATION with mh, e.g.
>		use the unseen sequence to identify unseen messages.
>		reset curent folder when run
>		when suspended, update .mh_sequence, context, and other
>		related files
	Yes, serge. I have many notes to myself in the code to use sequences.
the .mh_sequence and .info files are already updated when the program is
suspended. I don't, as yet, pay attention to the current-folder: entry in the
context file (I ignore the context file), but I have been planning to make
use of it for a while, now.

>	100% lines -- hit space and it scrolls one line up UNNECESSARILY
>		?probably should print 100% (in case you want to backpage),
>		 but should NOT scroll if you hit space, just clear the
>		 "--More--" message

	true. the backpager is screwed at the moment (the logic is weird). it'll
work eventually.

>	control-C should interrupt (like q)
>		in general, probably want control-C to
>		longjmp() to the main command loop,
>		interrupting whatever operation is in progress
	problems with interruptibility/reversibility of functions. sometime I
will work this out.