[Pydev-cvs] org.python.pydev.help toc_main.xml,1.4,1.5
Brought to you by:
fabioz
From: Parhaum T. <dre...@us...> - 2004-06-21 21:37:09
|
Update of /cvsroot/pydev/org.python.pydev.help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21953 Modified Files: toc_main.xml Log Message: - Added JUnit test for editor actions that I've made or are related to ones I've made. This is something I need for my project that this is for, and in order to test things out like adding block comments, I had to revamp how they functioned to allow them to accept a mock Document as opposed to grabbing it from the Active Editor. This created the PySelection entity, which was basically being used anyway by many of the actions, which serves to accept a document input and make the proper selection given passed criteria. Since I didn't get a 'no' when I asked if the JUnit testing was ok, I assumed it wasn't a problem to put them in. I can revert them all back to their original form, if desired. - 2 new actions - ConvertTabToSpace and ConvertSpaceToTab, basically the user can select lines or none at all (to affect whole document) and convert tabs and tab-width-spaces back and forth - Plugin.xml adjusted to account for the new action - Skeleton help files added for new actions, TOC modified Index: toc_main.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/toc_main.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** toc_main.xml 14 Jun 2004 20:22:13 -0000 1.4 --- toc_main.xml 21 Jun 2004 21:36:52 -0000 1.5 *************** *** 11,14 **** --- 11,16 ---- <topic label="Block Comment" href="html/userguide/editor_blockc.html"/> <topic label="Bulk Comment" href="html/userguide/editor_comment.html"/> + <topic label="Convert Space to Tab" href="html/userguide/editor_convertstt.html"/> + <topic label="Convert Tab to Space" href="html/userguide/editor_converttts.html"/> <topic label="Error Parsing" href="html/userguide/editor_parsing.html"/> <topic label="Go to First Character" href="html/userguide/editor_gotofc.html"/> |