metasim 00/11/16 10:32:19
Modified: src/antidote ChangeLog TODO build.xml
Log:
Added option to turn on notification of emacs on a build error so that emacs
goes to the file and location of the error. Also added the ability to provide
a
build file to load at startup from the command line.
Revision Changes Path
1.6 +22 -0 jakarta-ant/src/antidote/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /home/cvs/jakarta-ant/src/antidote/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 2000/11/14 21:47:37 1.5
+++ ChangeLog 2000/11/16 18:32:18 1.6
@@ -1,3 +1,25 @@
+2000-11-16 Simeon H.K. Fitch <[EMAIL PROTECTED]>
+
+ * org/apache/tools/ant/gui/AntAction.java: Added toggle property.
+
+ * org/apache/tools/ant/gui/ActionManager.java: Added ability to
+ handle toggle actions to menu bar (still need to add support to
+ tool bar).
+
+ * org/apache/tools/ant/gui/EventResponder.java: Added emacs
+ notifier command.
+
+ * org/apache/tools/ant/gui/ide/EmacsNotifier.java: Imported.
+
+ * org/apache/tools/ant/gui/ProjectProxy.java: Added code to add
+ listeners registered with the AppContext to the build.
+
+ * org/apache/tools/ant/gui/AppContext.java: Now allows registering
+ of build listeners to be added to project at build time.
+
+ * org/apache/tools/ant/gui/Main.java: Added loading of build file
+ provided on command line.
+
2000-11-14 Simeon H.K. Fitch <[EMAIL PROTECTED]>
* org/apache/tools/ant/gui/Antidote.java: Added top area widget,
1.3 +3 -0 jakarta-ant/src/antidote/TODO
Index: TODO
===================================================================
RCS file: /home/cvs/jakarta-ant/src/antidote/TODO,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- TODO 2000/11/15 21:25:16 1.2
+++ TODO 2000/11/16 18:32:19 1.3
@@ -1,4 +1,7 @@
TODO List:
+ * Add support to ActionManager to handle toggle actions in tool bar. Also
+ need a better way of detecting the selected state of the action button.
+
* Need Ant API access to:
- Tasks within a Target
- The topo sorted task list to get flattened dependencies
1.6 +3 -4 jakarta-ant/src/antidote/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/src/antidote/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 2000/11/14 19:47:49 1.5
+++ build.xml 2000/11/16 18:32:19 1.6
@@ -31,9 +31,8 @@
<!-- ===================================================================
-->
<!-- Set some the defaults the user can override in .ant.properties
-->
<!-- ===================================================================
-->
- <property name="build.compiler" value="classic"/>
+ <property name="build.compiler" value="jikes"/>
<property name="build.compiler.emacs" value="on"/>
- <property name="junit.fork" value="false" />
<!-- ===================================================================
-->
<!-- Define a global set of patterns that can be referenced by
-->
@@ -61,8 +60,8 @@
<javac srcdir="${src.dir}"
destdir="${build.classes}"
debug="on"
- deprecation="off"
- optimize="on" >
+ deprecation="on"
+ optimize="off" >
<classpath refid="classpath" />
</javac>