2006-01-22 Jörgen Stenarson * Cleaned up bell handling to make sure you can disable bell with the bell_style command * Implemented rudimentary config file. Example in doc/.pyinputrc copy to ~/.pyinputrc and edit to your taste. * Added patch from Ville to improve handling of international characters, though changed so that ctrl-character is not inserted.There are probably more weirdness to take into account than we do now... 2006-01-22 Jörgen Stenarson * Renames of Console and PyReadline complete. 2006-01-22 Jörgen Stenarson * This revision will not compile. Due to limitations in case insensitivethe filesystems subversion can not do casechanging file renames in reliably. This version contains temporary renames of some files that makes the package unusable. 2006-01-21 Jörgen Stenarson * Added README.txt * Changed package name to pyreadline, changed setup.py to reflect this. 2006-01-21 Jörgen Stenarson * Added clipboard functionality. ctypes clipboard code borrowed from example code posted to ctypes-users. See http://aspn.activestate.com/ASPN/Mail/Message/ctypes-users/1771866 * Control-Shift-v moved quoted insert from Control-v * Control-v straight paste from clipboard * Alt-v ipython_paste. Does some preprocessing of data. If clipboard text is shorter than 300 characters and has no newlines and tabs, then assume it is a path and change all \ to / and then add \ before all spaces. This means you can paste paths and use them in magic command %cd. If text is multiline it assumes tabseparated data should be list of list, if all is numeric assume it should be an array. * Control-y yank, alias for Control-v. * Control-k kill line, move text from cursor to end of line into clipboard. Should be move to kill buffer but the kill buffer is not implemented. * Added kill line and yank functionality. As well as mark and copy-region-to-clipboard. * Control-m set-mark sets the copy region mark * Control-q copies region between mark and cursor to clipboard * Changed version in setup.py to 1.13-svn 2006-01-21 Jörgen Stenarson * Patch to get swedish characters working when python is executed in a cmd window with codepage set to 1252. Example: issue command chcp 1252. Then change the font to lucida terminal, this is done in the properties dialog of the terminal. 2006-01-21 Jörgen Stenarson * Changed all python files to conform to 4 space indent. * Added changelog * Added os.path.expanduser to expand out ~/.history paths