aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjestin2002-12-30 13:06:33 +0000
committerjestin2002-12-30 13:06:33 +0000
commit4aa86fb6b7edab0406d4003eb2c5be378a87f982 (patch)
tree6fae26749326c973cd70ea109604c39b94d0da01
parent5a44dbef7c997b6e09a565306c60e7146f0f8c2b (diff)
downloadivy-java-4aa86fb6b7edab0406d4003eb2c5be378a87f982.zip
ivy-java-4aa86fb6b7edab0406d4003eb2c5be378a87f982.tar.gz
ivy-java-4aa86fb6b7edab0406d4003eb2c5be378a87f982.tar.bz2
ivy-java-4aa86fb6b7edab0406d4003eb2c5be378a87f982.tar.xz
*** empty log message ***
-rw-r--r--BUGS16
-rw-r--r--Changelog11
-rw-r--r--debian/changelog2
3 files changed, 18 insertions, 11 deletions
diff --git a/BUGS b/BUGS
index 34d1e9c..173211c 100644
--- a/BUGS
+++ b/BUGS
@@ -2,7 +2,7 @@
TODO List:
* ivyprobe is a bit touchy about being fed somethin on standard input
- try echo "coucou" | ivyprobe ...
+ try echo "coucou" | ivyprobe ... -> use IvyDaemon instead
* document the extension to the API
* document the IVY_PING feature
* mêmes commandes que sous perl et C.
@@ -11,19 +11,18 @@ TODO List:
-------------------------------------------------------------------------------------
Known bugs:
- * tests: java -DIVY_PING -DIVY_PING -classpath ../lib/ivy-java.jar:. BenchLocal -b 228.1.2.3:4567
- has failed once. Never reproduces
-
-
-
-------------------------------------------------------------------------------------
Fixed:
1.2.2
- java fr.dgac.ivy.Probe
- ivyprobe, quitte ivyprobe
- il reste une thread IvyClient qui boucle en lecture. Bug reported by Damien
- Figarol
+ il restait une thread IvyClient qui boucle en lecture. Bug reported by Damien
+ Figarol
+ - JDK1.1.7A (Sun) Method add(java.lang.Object) not found in class
+ java.util.Vector. -> replaced by addElement , the add(Object) was included
+ in jdk1.2. The System.setProperty was included in jdk1.2. I switched back
+ to the old constructs
1.2.1
- bus.start(null)
@@ -83,4 +82,3 @@ Not a bug ?
UDP broadcast domain . I guess it's a routing problem once again :-\
- GNU/linux: ok with jdk1.3 and jdk1.4
- windows: I don't know how to write tests
-
diff --git a/Changelog b/Changelog
index 30ee360..8941c10 100644
--- a/Changelog
+++ b/Changelog
@@ -3,8 +3,15 @@
bugfix
IvyClient.java didn't handle the readline()=null correctly. Thus, the
- thread kept on eating CPU when a remote client left the bus. This closes
- Damien Figarol bugreport dec/2002
+ thread kept on eating CPU when a remote client left the bus.
+ This closes Damien Figarol bugreport dec/2002
+ bugfix
+ The ivy java library wasn't supported on 1.1.x platforms, because of
+ missing methods ( java.util.Vector.add(Object) and
+ System.setProperty(String,String) ). I switched back to the old API.
+ This closes Philippe Truillet bugreport dec/2002.
+ cleanup
+ examples have been a bit rewritten
----------------------------------------------------------------------------------------
1.2.1
diff --git a/debian/changelog b/debian/changelog
index 951a217..66da618 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
ivy-java (1.2.2) unstable; urgency=low
- bugfix in IvyClient leading to a growth in CPU usage
+ - change of API calls (Vector and System) to allow compilation on JDK1.1.7A
+ - cleanup in examples
-- Yannick Jestin <jestin@cena.fr> Fri, 27 Dec 2002 17:26:00 +0200