/usr/share/doc/tkcon/docs/todo.html is in tkcon 2:2.7~20151021-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <HTML>
<HEAD>
<TITLE>tkcon: To Do Ideas</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="./style.css">
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<TABLE WIDTH=100% BORDER=0 CELLSPACING=2 CELLPADDING=0 BGCOLOR=#000000><TR><TD>
<!-- start header info -->
<TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=#FFFFFF>
<TR>
<TH><FONT SIZE=+3>tkcon: To Do Ideas</FONT></TH>
<TD align=right>
<A href="http://tkcon.sourceforge.net/">
<B>TkCon Homepage</B></A>
</TD>
</TR>
</TABLE>
<!-- end header info -->
</TD></TR><TR><TD>
<!-- start main navigation table -->
<TABLE BORDER=1 CELLPADDING=2 CELLSPACING=2 BGCOLOR=#CCCCCC width=100%>
<TR>
<TH><A HREF="index.html">Documentation</A></TH>
<TH><A HREF="purpose.html">Purpose & Features</A></TH>
<TH><A HREF="limits.html">Limitations</A></TH>
<TH CLASS="hi"><A HREF="todo.html" CLASS="hi">To Do</A></TH>
<TH><A HREF="license.terms">License</A></TH>
</TR><TR>
<TH COLSPAN=2><A HREF="plugin.html">Online Demo</A>
(requires <A HREF="http://tcl.activestate.com/software/plugin/">Tk plugin</A>)</TH>
<TH COLSPAN=3><A HREF="nontcl.html">Using TkCon with other Tk Languages</A></TH>
</TR>
</TABLE>
<!-- end main navigation table -->
</TD></TR><TR><TD BGCOLOR=#FFFFFF>
<DIV CLASS="indent">
<H3>Future Ideas</H3>
<UL>
<LI> Add encoding auto-conversion to exec commands
<LI> keep history file, also keep history of sourced files
<LI> <PRE>set mimetype(extension,au) "audio/u-law"
set mimetype(extension,wav) "audio/wave"
set mimetype(extension,mid) "audio/midi"
/etc/magic
proc run {file} {
global mimetype
if {[file executable $file]} {
exec $file
return
}
catch {set mimetype $mimetype(extension,[file extension $file])}
if {![info exists mimetype]} {
set mimetype $mimetype(magic,[exec /bin/file $file])
}
exec $mimetype(application,$mimetype) $file
}</PRE>
<LI> Add socket level communication model
<LI> Enhance the true debugging capabilities - I'm looking at
tcl-debug and into what I can adopt from the tkInspect philosophy.
<LI> I'm taking ideas...
</UL>
<H3>Known Bugs/Quirks</H3>
<UL>
<LI> Command highlighting isn't perfect because I try to make it too
efficient.
<LI> All interpreters have the same current working directory. This is
a limitation of tcl.
<LI> You can't 'attach' on machines where <CODE>send</CODE> does not exist.
<A HREF="http://www.osf.org/~loverso/">John Loverso</A> has a comm.tcl
replacement.
In any case, you can still attach to internal interpreters and namespaces.
<LI> Need to clean up checkpointed states when the associated interp dies.
Works with slaves, but not foreign interps.
<LI> Can't identify non-Tcl or pre-Tk4 interpreters automagically...
<LI> You tell me...
</UL>
</DIV>
</TD></TR></TABLE>
<HR NOSHADE SIZE=1>
<ADDRESS><FONT SIZE=2>©
Jeffrey Hobbs</FONT></ADDRESS>
</BODY>
</HTML>
|