From: <ox-...@us...> - 2002-10-31 20:16:04
|
Update of /cvsroot/sheets/sheets In directory usw-pr-cvs1:/tmp/cvs-serv21365 Modified Files: Sheets.sheets build.xml sheets.mf Log Message: ByteCode Completion Support Finished!!! Now you don't need summaries for things on the classpath anymore (such as the java libraries). Completion will continue to work, and middle-click will take you to the javadoc in a web browser (assuming that you have the right entry in your .sheetsrc). New hyperlink rollover highlighting!!! Now you know exactly what you can middle-click on. Simply move the mouse cursor around, and what ever is currently underneath it will be highlighted if it can be shown in context. Also works for external links to javadoc. Much needed bugfixes: Fixed that annoying bug where some large sheets would not open correctly, leaving a garbled ToC. Also fixed an update problem on showing fragments in context (no need to click in order to update). Index: Sheets.sheets =================================================================== RCS file: /cvsroot/sheets/sheets/Sheets.sheets,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Sheets.sheets 10 Aug 2002 01:12:59 -0000 1.15 --- Sheets.sheets 31 Oct 2002 20:15:20 -0000 1.16 *************** *** 271,285 **** section text apowers:0 private JButton KeyBindingsDialog.help; - object demo:0 - pkg=org.browsecode.javaStuff - type=java - section text demo:0 - public AbstractJavaClass JavaTokens.exprClass - (int index, JavaContext context) { - TypeProxy result = exprType(index, context); - if (result != null && result instanceof AbstractJavaClass) [...13704 lines suppressed...] + schin:661 + schin:662 + schin:663 + schin:664 + schin:665 + schin:666 + schin:667 + schin:668 + schin:669 + schin:670 + schin:671 + schin:672 + schin:673 + schin:674 + schin:675 + schin:676 + schin:677 + schin:678 object sjc:6 filename=>classes Index: build.xml =================================================================== RCS file: /cvsroot/sheets/sheets/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** build.xml 5 Jul 2002 23:33:22 -0000 1.9 --- build.xml 31 Oct 2002 20:15:23 -0000 1.10 *************** *** 13,17 **** <property name="database" value="Sheets.sdb"/> <property name="test-database" value="Test.sdb"/> ! <property name="imports" value="Sheets.sheets summaries/Java-1.4-Headers.sheets summaries/JavaX-1.4-Headers.sheets summaries/JavaOrg-1.4-Headers.sheets"/> <target name="init"> --- 13,17 ---- <property name="database" value="Sheets.sdb"/> <property name="test-database" value="Test.sdb"/> ! <property name="imports" value="Sheets.sheets"/> <target name="init"> *************** *** 83,89 **** <!-- Extra Stuff for testing that should be commented out on check-in <arg value="../Sheets.sheets"/> - <arg value="../summaries/Java-1.4-Headers.sheets"/> - <arg value="../summaries/JavaX-1.4-Headers.sheets"/> - <arg value="../summaries/JavaOrg-1.4-Headers.sheets"/> <arg value="-exit"/> --> --- 83,86 ---- Index: sheets.mf =================================================================== RCS file: /cvsroot/sheets/sheets/sheets.mf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sheets.mf 10 Jun 2002 18:15:56 -0000 1.2 --- sheets.mf 31 Oct 2002 20:15:23 -0000 1.3 *************** *** 2,4 **** Main-Class: org.browsecode.sheets.Sheets Created-By: 1.2 (Sun Microsystems Inc.) ! Class-Path: ox.jar pat.jar kunststoff.jar jlfgr-1_0.jar antlr.jar --- 2,4 ---- Main-Class: org.browsecode.sheets.Sheets Created-By: 1.2 (Sun Microsystems Inc.) ! Class-Path: ox.jar pat.jar kunststoff.jar jlfgr-1_0.jar antlr.jar bcel.jar |