From: Eric S. R. <es...@us...> - 2001-01-16 13:01:11
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv5066 Modified Files: curses.tex Log Message: Some typo fixes, and a paragraph of motivation. Index: curses.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/curses.tex,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** curses.tex 2001/01/16 12:52:30 1.10 --- curses.tex 2001/01/16 13:01:04 1.11 *************** *** 31,34 **** --- 31,41 ---- use widely differing codes, and often have their own minor quirks. + In a world of X displays, one might ask ``why bother''? It's true + that character-cell display rerminals are an obsolete technology, but + there are niches in which being able to do fancy things with them are + still valuable. One is on small-footprint or embedded Unixes that + don't carry an X server. Another is for tools like OS installers + and kernel configurators that may have to run before X is available. + The curses library hides all the details of different terminals, and provides the programmer with an abstraction of a display, containing *************** *** 425,429 **** functions that take either integer or 1-character-string arguments; these may be useful in writing more readable tests for ! your command interprers. It also supplies conversion functions that take either integer or 1-character-string arguments and return the same type. For example, \function{curses.ascii.ctrl()} returns --- 432,436 ---- functions that take either integer or 1-character-string arguments; these may be useful in writing more readable tests for ! your command interpreters. It also supplies conversion functions that take either integer or 1-character-string arguments and return the same type. For example, \function{curses.ascii.ctrl()} returns *************** *** 453,457 **** This HOWTO didn't cover some advanced topics, such as screen-scraping ! or capturing mouse events from an xterm inatance. But the Python library page for the curses modules is now pretty complete. You should browse it next. --- 460,464 ---- This HOWTO didn't cover some advanced topics, such as screen-scraping ! or capturing mouse events from an xterm instance. But the Python library page for the curses modules is now pretty complete. You should browse it next. *************** *** 474,479 **** The ncurses FAQ: \url{http://dickey.his.com/ncurses/ncurses.faq.html} - - Any other suggested references? \end{document} --- 481,484 ---- |