From: <ox-...@us...> - 2002-12-16 11:38:19
|
Update of /cvsroot/sheets/sheets In directory sc8-pr-cvs1:/tmp/cvs-serv32234 Modified Files: .sheetsrc Sheets.sheets build.xml todo.txt Log Message: Really fixed the context completion npes? x2 Fixed font sizing problems in the TOC Made changes to the sheets documentation to forrest compatible tags Fixed an NPE when editing a doc fragment open in two locations at the same time Fixed the task name for the Transform to Document command Fixed a ClassCastException on tab completion Fixed a problem changing sheet titles and descriptions that would cause graphics corruption Changed sheets build to include classpath Index: .sheetsrc =================================================================== RCS file: /cvsroot/sheets/sheets/.sheetsrc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .sheetsrc 4 Dec 2002 21:11:06 -0000 1.4 --- .sheetsrc 16 Dec 2002 11:38:12 -0000 1.5 *************** *** 21,24 **** --- 21,25 ---- ########################################## + #set language-expert "com.vitria.xquery.editor.XQueryExpert" set global-undo-history-size 1 #show-with java-package-name Index: Sheets.sheets =================================================================== RCS file: /cvsroot/sheets/sheets/Sheets.sheets,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Sheets.sheets 12 Dec 2002 13:23:26 -0000 1.28 --- Sheets.sheets 16 Dec 2002 11:38:13 -0000 1.29 *************** *** 34100,34104 **** section text nkramer:31192 public static void DocSheet.fillTransformMenu (Fragment comp, JMenu menu) { ! String[] ignoreWords = new String[] { "transform", "doc", "fragment" }; new PromoteDocFragment().addToMenu(menu, ignoreWords); --- 34100,34104 ---- section text nkramer:31192 public static void DocSheet.fillTransformMenu (Fragment comp, JMenu menu) { ! String[] ignoreWords = new String[] { "transform", "fragment" }; [...2675 lines suppressed...] section components ram:2877 ram:2878 *************** *** 106387,106390 **** --- 106395,106400 ---- schin:532 schin:684 + schin:1194 + schin:1195 schin:685 schin:1083 *************** *** 106422,106425 **** --- 106432,106437 ---- schin:705 schin:1084 + schin:1190 + schin:1191 schin:1068 schin:707 Index: build.xml =================================================================== RCS file: /cvsroot/sheets/sheets/build.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** build.xml 11 Dec 2002 22:13:48 -0000 1.14 --- build.xml 16 Dec 2002 11:38:15 -0000 1.15 *************** *** 64,67 **** --- 64,68 ---- </patternset> </fileset> + <pathelement path="${java.class.path}"/> </classpath> </javac> Index: todo.txt =================================================================== RCS file: /cvsroot/sheets/sheets/todo.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** todo.txt 12 Dec 2002 13:23:28 -0000 1.5 --- todo.txt 16 Dec 2002 11:38:15 -0000 1.6 *************** *** 6,16 **** move graphics to org.browsecode.graphics fix docbook support new bugs: VTables completely broken? - No way to specify that a sheet is best shown nested (we currently lose this information for existing sheets, which is bad) - Red highlighting for Section and Document titles no longer works after change to RTV Anti-aliasing turns on when drawing widgets -- should be globally controlled by a variable for text/widgets separately - Tab key doesn't work on JDK1.4.1 PoE error on close related to deleting a file header? Compile doesn't work when you Compile from the Dialog --- 6,19 ---- move graphics to org.browsecode.graphics fix docbook support + Fixed tab key for JDK1.4.1 new bugs: + On file header change, re-export all affected fragments + Need to invalidate all exports in project on root change + Need to flush JavaRepositoryHelper on classpath change (is this being done already?) + Focus traversal broken for cycling through ViewPanel + Can't use keyboard shortcuts in toolbar VTables completely broken? Anti-aliasing turns on when drawing widgets -- should be globally controlled by a variable for text/widgets separately PoE error on close related to deleting a file header? Compile doesn't work when you Compile from the Dialog |