rjb 1.3.2-x86-mswin32-60 → 1.3.4-x86-mswin32-60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/ChangeLog CHANGED
@@ -1,512 +1,528 @@
1
- Sat Oct 30 arton
2
- *ext/rjb.c
3
- RJB_VERSION -> 1.3.2
4
- *extconf.rb
5
- Change OSX's include path detecting
6
- Tue Oct 26 arton
7
- *ext/rjb.c
8
- RJB_VERSION -> 1.3.1
9
- *rjb.rake
10
- make universal-darwin gem for Mac bundled ruby.
11
- Sun Oct 24 arton
12
- *sample/filechooser.rb
13
- omit Thread use (cause JVM crush with 1.9 and StackOverflow with 1.8)
14
- Sat Oct 23 arton
15
- *ext/rjb.c
16
- RJV_VERSION -> 1.3.0
17
- add loaded? class method.
18
- add add_classpath method (add jars without invoking load method)
19
- *ext/load.c
20
- OSX default jvm name changes to "JavaVM" (bug#28667 reported by Jeff Adams, thanks Jeff !)
21
- *ext/extconf.rb
22
- OSX javahome set to /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK
23
- *lib/rjbextension.rb
24
- use Rjb::add_classpath method instead of Kernel's class vars.
25
- *test/test.rb, test/exttest.rb
26
- fix add_jar test, previous version load them from jp directory.
27
- Tue Sep 22 arton
28
- *ext/rjb.c
29
- RJV_VERSION -> 1.2.10
30
- add add_jars method. add_jar and add_jars can take an array of jars.
31
- *test/test.rb
32
- add calling add_jar with an array test.
33
- Tue Sep 21 arton
34
- *ext/rjb.h
35
- export ClassLoader methods
36
- *ext/load.c
37
- move ClassLoader interaction codes into rjb.c
38
- *ext/rjb.c
39
- RJV_VERSION -> 1.2.9
40
- add add_jar method.
41
- loading classes throgh URLClassLoader if the user add Jars
42
- *lib/rjb.rb
43
- change MODIFIER module into a constant. Because it implys Rjb::import.
44
- change Config -> RbConfig for 1.9
45
- *test/test.rb
46
- add Rjb::add_jar test
47
- *test/JarTest.java
48
- *test/jartest.jar
49
- add for Rjb::add_jar test
50
- Fri Sep 17 arton
51
- *test/test.rb
52
- sort arguments order for test_java_methods (the order is implement dependent)
53
- add fixnum conversion test for 64bit platform (test_64fixnum)
54
- *ext/rjb.c
55
- RJV_VERSION -> 1.2.8
56
- fix rv2jlong bug, the solution was suggested by Ary Borenszweig
57
- Sun Aug 29 arton
58
- *ext/rjb.c
59
- ignore no arguments method signature.
60
- name base classes under Rjb module.
61
- *lib/rjb.rb
62
- implements public_methods and methods
63
- *test/test.rb
64
- add non arguments method sig test
65
- add methods, public_methods, java_methods test
66
- Thu Jul 22 arton
67
- *ext/rjb.c
68
- RJB_VERSION -> 1.2.6
69
- export jv2rv for rjbexception.c
70
- *ext/rjb.h
71
- export jv2rv for rjbexception.c
72
- *ext/rjbexception.c
73
- create and keep java exception object for its properties.
74
- *test/test.rb
75
- add Exception#cause test
76
- Wed Jun 9 arton
77
- *ext/load.c
78
- accept JAVA_HOME having an extra slash at the end
79
- *ext/rjb.c
80
- RJB_VERSION -> 1.2.5
81
- Fri Jun 5 arton
82
- *ext/rjb.h
83
- defin HAVE_LONG_LONG if no HAVE_LONG_LONG but LP64
84
- *ext/rjb.c
85
- remove unused variables
86
- RJB_VERSION -> 1.2.4
87
- Fri Jun 4 arton
88
- *ext/riconv.c
89
- remove unused function if build with Ruby 1.9
90
- *ext/rjb.c
91
- RJB_VERSION -> 1.2.3
92
- to accomodate with rubinius
93
- *ext/load.c
94
- to accomodate with rubinius
95
- *ext/rjbexception.c
96
- to accomodate with rubinius
97
- Sun May 30 arton
98
- *lib/rjbextension.rb
99
- Rjb extension from Andreas Ronge's neo4j
100
- - directly import jar by require method
101
- - Rjb::import without quotations (Java class as Ruby object)
102
- *test/exttest.rb
103
- test for rjbextension.rb
104
- *test/rjbtest.jar
105
- test file for rjbextension.rb
106
- Sat May 29 arton on behalf of atoulme
107
- *ext/rjb.c
108
- *ext/load.c
109
- *ext/rjbexception.c
110
- to accomodate with rubinius
111
- thanks atoulme !
112
- Wed May 12 arton
113
- *test/test.rb
114
- add Class name for TestMixin module because ruby 1.9 doesn't handle the constant.
115
- Tue May 11 arton
116
- *ext/rjb.c
117
- fix duplicate method registering while no alias.
118
- add class methods for inspecting method signatures.
119
- add class_eval method for extending Java class
120
- *test/test.rb
121
- add class methods test for inspecting method signatures.
122
- add mixin tests
123
- Tue May 4 arton
124
- *ext/load.c
125
- corrected wrong function signature (BUG#28088), pointed and fixed by Romulo A. Ceccon (thanks)
126
- *ext/rjb.c
127
- using inheritance check while inspecting a object is RJB's instance (for extending it).
128
- Tue Mar 16 arton
129
- *ext/riconv.c
130
- change locale setting "" to "C", fixed by Fabien Sartor (rjb-Bugs-27968)
131
- *ext/rjb.c
132
- RJB_VERSION -> 1.2.1
133
- Sun Nov 1 arton
134
- *ext/load.c
135
- load jvm pointed by JVM_LIB environment variable first (suggested by Ittay Dror).
136
- *ext/rjb.c
137
- RJB_VERSION -> 1.2.0
138
- Sun Oct 11 arton
139
- *ext/extconf.rb
140
- add double quotation around include path for mingw compiler, original patched by Roger Pack (thanks)
141
- remove double quotaion around java_home variable for existing checking by File.directoy?
142
- *rjb.rake
143
- adding mingw support for the older version compatibility checking
144
- Thu Sep 10 arton
145
- *ext/load.c
146
- Correct previous code (always reload jvm if OSX < Snow Leopard)
147
- Clear DL's exception if success
148
- *ext/rjb.c
149
- RJB_VERSION -> 1.1.9
150
- *ext/rjbexception.c
151
- fit arguments for rb_raise to shut warning down
152
- Mon Sep 07 arton
153
- *ext/load.c
154
- Check no compat type dylib after loading was failed (for Snow Leopard)
155
- *ext/rjb.c
156
- RJB_VERSION -> 1.1.8
157
- Sun Feb 15 arton
158
- *test/test/rb
159
- add $KCODE and magic comment for iconv
160
- *ext/rjb.c
161
- RJB_VERSION -> 1.1.7
162
- Thu Feb 5 kuwa1
163
- *test/Test.java
164
- *test/test.rb
165
- add tests(Umlaut)
166
- *ext/rjb.c
167
- *ext/load.c
168
- fix for ruby19
169
- Sun Nov 16 arton
170
- *ext/load.c
171
- apply hpux patch, contributed by Ittay Dror. thanks
172
- Tue Aug 26 arton
173
- *ext/load.c, rjb.c, rjb.h
174
- export safe_funcall under the prefix 'rjb'.
175
- calling DL with rb_protect for avoiding exception.
176
- Mon Aug 25 arton
177
- *ext/load.c
178
- Fix checking the result for loading alternate_jvm_type.
179
- (patch from Kumar, thanks)
180
- Thu Aug 14 arton
181
- *ext/rjb.c, load.c, etc
182
- change comment line // -> /* */ because AIX's compiler
183
- add _AIX for load.c (this patch from Ittay Dror, thanks)
184
- *ext/load.c
185
- add ALT_JVM_TYPE for alternative jvm directory (by Kumar)
186
- Sun Jul 13 arton
187
- *ext/rjb.c
188
- display warning when Rjb load jvm implicitly if $DEBUG or $VERBOSE.
189
- Mon May 26 arton
190
- *ext/rjb.c
191
- correct char primitive conversion for Bigendian machine.
192
- use macroes for loading classes
193
- *ext/load.c
194
- adjust OS X's directory
195
- *ext/extconf.rb
196
- adjust OS X's directory if Home exists
197
- Thu Mar 27 arton
198
- *ext/rjb.c
199
- mark version 1.1.4 for the next release.
200
- *test/test.rb
201
- remove unload, because it fails.
202
- It's more important to assert each functions.
203
- Thu Mar 27 arton
204
- *ext/riconv.c
205
- activate conv tables for getenv configuration.
206
- Tue Mar 5 Kuwashima
207
- *ext/rjb.c
208
- *ext/rjb.h
209
- *ext/rjbexception.c
210
- add auto load method.
211
- Tue Mar 4 Kuwashima
212
- *ext/rjbexception.c
213
- *ext/rjb.c
214
- *test/test.rb
215
- clear(ignore) exception in current java thread, before some operation.
216
- *ext/rjbexception.c
217
- *ext/rjb.c
218
- add auto load for Rjb::bind, Rjb::throw
219
- *ext/rjb.c
220
- *test/test.rb
221
- add Rjb::unbind
222
- *test/test.rb
223
- add loading rubygems
224
- Sat Feb 23 arton
225
- *test/test.rb
226
- let test_field metod use Test.class instead of Point.class
227
- *test/Test.java
228
- add a public field for testing
229
- Fri Feb 22 arton
230
- *ext/rjb.c
231
- mark version 1.1.3 for the next release.
232
- Fri Feb 22 arton
233
- *ext/rjb.c
234
- fix field reference (bug# 18238)
235
- Wed Jan 9 arton
236
- *ext/rjb.h
237
- add some ruby macros that defined after 1.8.6 for compatibility
238
- Change RBridge.class by 1.4.2
239
- *data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class
240
- compiled by 1.4.2 version of Java
241
- *rjb.c
242
- mark version 1.1.2 for the next release.
243
- Tue Dec 27 Kuwashima
244
- *test/Test.java
245
- *test/test.rb
246
- *ext/depend
247
- *ext/load.c
248
- *ext/extconf.rb
249
- *ext/rjbexception.c
250
- *ext/rjb.c
251
- *ext/riconv.c
252
- change for compatibility with Ruby-1.9.0
253
- Tue Nov 20 arton
254
- *rjb.c
255
- mark version 1.10.12 for next relase.
256
- *load.c
257
- omit useless double-quotations from JAVA_HOME, maybe specifies a longpathname (but useless).
258
- Wed Nov 14 Kuwashima
259
- *rjb.c
260
- add error check to constructor.
261
- Fri Nov 9 arton
262
- *test.rb
263
- *Test.java
264
- add test for reproducing rjb-bugs-15430
265
- *rjb.c
266
- fix rjb-bugs-15430 that caused by bad array conversion.
267
- (generics method result signature is an object, but the real result is typed array)
268
- *riconv.c
269
- correct to get the number of array element.
270
- Tue Oct 23 Kuwashima
271
- *riconv.c
272
- Change string encoding conversion rule.
273
- Mon Oct 22 Kuwashima
274
- *riconv.c
275
- *riconv.h
276
- recycle iconv instance.
277
- *test/test.rb
278
- add cases for test_kjconv
279
- Sun Sep 23 arton
280
- *rjb.c
281
- version 1.0.9
282
- convert to Ruby's type if Rjb::primitive_converion is enalbed and the result type is java.lang.Object
283
- support the object conversion for a bignum to long.
284
- Sat Sep 15 arton
285
- *rjb.c
286
- version 1.0.8
287
- correction of 1.0.7, support long type.
288
- Fri Sep 14 arton
289
- *rjb.c
290
- version 1.0.7
291
- add auto primitive conversion toggled by Rjb::primitive_conversion
292
- *test.rb
293
- add test_auto_conv
294
- Sun Jun 17 arton
295
- *rjb.c
296
- add method aliases.
297
- setXxYy -> xx_yy=
298
- getXxYy -> xx_yy
299
- isXxYy -> xx_yy?
300
- xxYyZz -> xx_yy_zz
301
- *test.rb
302
- add a test for the method alias feature.
303
- Tue Nov 21 arton
304
- *rjb.c
305
- Skip the constant registering process, if the constant was already defined.
306
- *load.c
307
- *rjb.c
308
- *rjbexception.c
309
- *rjb.h
310
- add prefix 'rjb' for externed symbol names to avoid confliction.
311
-
312
- Sun Oct 08 arton (on behalf of richard apodaca)
313
- *load.c
314
- support AMD64
315
-
316
- Mon Sep 11 arton
317
- *test.rb
318
- add a test of arguments types are various array.
319
- *Test.java
320
- add a test of arguments types are various array.
321
- *rjb.c
322
- accept nil for array parameter.
323
- Sun Sep 10 arton
324
- *test.rb
325
- add a test of return type is an object wrapped an array
326
- *Test.java
327
- add a method that returns an object wrapped an array
328
- *rjb.c
329
- check array-mark in jv2rv for returned object was an array
330
- Tue Aug 1 arton
331
- *load.c
332
- *rjb.c
333
- change load pathname of the bridge class.
334
- *post-install.rb
335
- add for remove previous installed rjb.so.
336
- *rjb.rake
337
- add for build Gem.
338
- *rjb.rb
339
- for preparing the pathname constant of the bridge class.
340
- *depend
341
- chage binary name from rjb.so to rjbcore.so
342
- *extconf.rb
343
- chage binary name from rjb.so to rjbcore.so
344
-
345
- Mon Jul 31 arton
346
- *load.c
347
- fix buffer allocation
348
-
349
- Sun Jul 16 (Jun 22) Kuwashima and arton
350
- *rjb.c
351
- version 0.2.8
352
- *MANIFEST
353
- *depend
354
- *load.c
355
- *rjbexception.c
356
- change jni.h to jniwrap.h.
357
- change the bridge class's header according to JDK 5.0's javah.
358
- *jniwrap.h
359
- wrap jni.h for Cygin
360
-
361
- Sat Jun 10 14:10:05 2006 arton
362
- *rjb.c
363
- version 0.2.7
364
- support an array of arrays from ruby to java.
365
-
366
- Mon May 8 08:52:12 2006 arton
367
- *load.c
368
- revision 5
369
- support both Intel and PPC Mac.
370
- Patched version was contributed by Demetrius Nunes.
371
-
372
- Wed Apr 12 03:57:12 2006 arton
373
- *rjb.c
374
- version 0.2.6
375
- support an array of arrays.
376
- *test.rb
377
- add an array of arrays test, some tests are contributed by Darren Day.
378
- *Test.java
379
- add a test method that returns an array of arrays, some tests are
380
- contributed by Darren Day.
381
-
382
- Sat Dec 24 18:56:38 2005 arton
383
- *rjb.c
384
- version 0.2.5
385
- release String, Float, Array object after method call.
386
- *gctest.rb
387
- add for String object gc test
388
-
389
- Mon Sep 19 01:09:30 2005 arton
390
- *rjb.c
391
- version 0.2.4
392
- use null instead of empty string when String argument is nil
393
- omit unused local variable from jstring2val
394
- *test.rb
395
- add null string test (bug since utf-8 support)
396
-
397
- Tue Jun 28 01:57:07 2005 arton
398
- *rjb.c
399
- version 0.2.3
400
- convert result object to imported class if object is an instance of Class
401
- call Class#forName if argument count is 1
402
- *test.rb
403
- add test_importobj contributed by Mr. Kuwashima, thanks.
404
-
405
- Mon Jun 27 20:30:50 2005 arton
406
- treat Class.forName as Rjb::import
407
- *rjb.c
408
- version 0.2.2
409
- add method 'forName' into imported Class object
410
- if pass imported object to JVM, extract Class object from ruby object
411
- *test.rb
412
- add above tests
413
-
414
- Sat Jun 25 05:58:36 2005 arton
415
- most bugs were reported by Mr. Micael Weller, thanks.
416
- *rjb.c
417
- version 0.2.1
418
- correct derived static method search
419
- search class methods then class's instance methods when called by class
420
- avoid register non capitalized named constants into constants table
421
- correct capitalized named method search
422
- *riconv.c
423
- never call iconv if $KCODE is nil
424
- *load.c
425
- using path separator ; for cygwin (by Ryugate)
426
-
427
- Sun Apr 24 05:26:16 2005 arton
428
- *rb.c
429
- version 0.2.0
430
- delete localref if globalref was created.
431
- load can take the second argument for jvm
432
- *load.c
433
- load can take the second argument for jvm
434
-
435
- Mon Jan 17 02:40:21 2005 arton
436
- *rjb.c
437
- add 'throw' module function.
438
- move java exception handling functions into newly created rjbexception.c
439
- *rjb.h
440
- declations for rjb.c and rjbexception.c
441
- *rjbexception.c
442
- java exception handling functions, and 'throw' module function.
443
- *test.rb
444
- adding throw test.
445
-
446
- Wed Jan 12 00:01:08 2005 Kaspar Schiess and arton
447
- *rjb.c
448
- correct Rjb::load parameter evaluation (classpath).
449
- - many thanks to Mr.Schiess.
450
-
451
- Sun Nov 21 02:51:43 2004 Kuwashima and arton
452
- *rjb.c
453
- move dbcs-utf-8 auto conversion feature into riconv.?
454
- remove JNI version argument from Rjb::load. (bug reported by Mr.Tateishi)
455
- *load.c
456
- correct CLASSPATH setting (bad environment name).(bug reported by Mr.Tateishi)
457
- *riconv.c riconv.h (contributed by Mr.Kuwashima)
458
- DBCS - utf-8 auto conversion functions.
459
- *depend MANIFEST
460
- add riconv.?
461
- - many tanks to Mr.Kuwashima and Mr.Tateishi.
462
-
463
- Tue Oct 5 23:08:59 2004 Kuwashima and arton
464
- *test.rb
465
- add kanji conversion test
466
- *rjb.c
467
- add dbcs(sjis and euc-jp) - utf-8 auto conversion feature.
468
- the patch was contributed by Mr.Kuwashima, many thanks.
469
-
470
- Sun Oct 3 18:24:42 2004 arton
471
- *load.c
472
- JNIEnv* now using local variable instead of global one.
473
- Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
474
- *rjb.c
475
- JNIEnv* now using local variable instead of global one.
476
- Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
477
- This change was suggested by Mr.Kuwashima, he also tested the behavior,
478
- and gave me some test codes.
479
- and attach_current_thread is from Mr.Kuwashima's patch.
480
- Many thanks to Mr.Kuwashima.
481
-
482
- Sat Sep 25 03:25:45 2004 arton
483
- *rjb.c
484
- implements interface's method argument conversion.
485
- *test.rb
486
- add Comparable test (interface with method arguments)
487
- *Test.java
488
- add Comparable test method.
489
-
490
- Wed Sep 22 02:30:15 2004 arton
491
- *rjb.c
492
- correct constants load, using mid-class.
493
- convert null string to nil
494
-
495
- Wed Sep 22 00:05:32 2004 arton
496
- *rjb.c
497
- correct ruby type checking. If the parameter type is java.lang.String, rjb instance is always accepted.
498
-
499
- Mon Sep 20 22:02:53 2004 arton
500
- *rjb.c
501
- checking method/constructor signature with class when the argument is rjb's instance.
502
- Sun Sep 19 00:54:35 2004 arton
503
- *rjb.c
504
- convert Java exception to Ruby's StandardError derived class.
505
- checking method/constructor signature when invoking if no signatur argument is supplied.
506
- adding field accessor.
507
-
508
- Sun Sep 12 21:42:00 2004 arton
509
- *rjb.c
510
- call exception description when verbose = true.
511
- correct recursive import call (for Boolean).
512
- corrent method not found message creation.
1
+ Mon Nov 22 arton
2
+ *ext/rjb.c
3
+ RJB_VERSION -> 1.3.4
4
+ require 'iconv' only if RUBY_VERSION < 1.9.0
5
+ implicitly accept ruby's String for [B (byte array)
6
+ copy back byte[] contents into original String
7
+ *test/test.rb
8
+ add string buffer test (test_bothdirection_buffer)
9
+ Wed Nov 17 arton
10
+ *ext/rjb.c
11
+ RJB_VERSION -> 1.3.3
12
+ *ext/load.c
13
+ Check JAVA_HOME before load JVM (OS X specific)
14
+ change int -> size_t for 64bit OS
15
+ *test/test_osxjvm.rb
16
+ add new test for OS X specific JVM detection.
17
+ Sat Oct 30 arton
18
+ *ext/rjb.c
19
+ RJB_VERSION -> 1.3.2
20
+ *extconf.rb
21
+ Change OSX's include path detecting
22
+ Tue Oct 26 arton
23
+ *ext/rjb.c
24
+ RJB_VERSION -> 1.3.1
25
+ *rjb.rake
26
+ make universal-darwin gem for Mac bundled ruby.
27
+ Sun Oct 24 arton
28
+ *sample/filechooser.rb
29
+ omit Thread use (cause JVM crush with 1.9 and StackOverflow with 1.8)
30
+ Sat Oct 23 arton
31
+ *ext/rjb.c
32
+ RJV_VERSION -> 1.3.0
33
+ add loaded? class method.
34
+ add add_classpath method (add jars without invoking load method)
35
+ *ext/load.c
36
+ OSX default jvm name changes to "JavaVM" (bug#28667 reported by Jeff Adams, thanks Jeff !)
37
+ *ext/extconf.rb
38
+ OSX javahome set to /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK
39
+ *lib/rjbextension.rb
40
+ use Rjb::add_classpath method instead of Kernel's class vars.
41
+ *test/test.rb, test/exttest.rb
42
+ fix add_jar test, previous version load them from jp directory.
43
+ Tue Sep 22 arton
44
+ *ext/rjb.c
45
+ RJV_VERSION -> 1.2.10
46
+ add add_jars method. add_jar and add_jars can take an array of jars.
47
+ *test/test.rb
48
+ add calling add_jar with an array test.
49
+ Tue Sep 21 arton
50
+ *ext/rjb.h
51
+ export ClassLoader methods
52
+ *ext/load.c
53
+ move ClassLoader interaction codes into rjb.c
54
+ *ext/rjb.c
55
+ RJV_VERSION -> 1.2.9
56
+ add add_jar method.
57
+ loading classes throgh URLClassLoader if the user add Jars
58
+ *lib/rjb.rb
59
+ change MODIFIER module into a constant. Because it implys Rjb::import.
60
+ change Config -> RbConfig for 1.9
61
+ *test/test.rb
62
+ add Rjb::add_jar test
63
+ *test/JarTest.java
64
+ *test/jartest.jar
65
+ add for Rjb::add_jar test
66
+ Fri Sep 17 arton
67
+ *test/test.rb
68
+ sort arguments order for test_java_methods (the order is implement dependent)
69
+ add fixnum conversion test for 64bit platform (test_64fixnum)
70
+ *ext/rjb.c
71
+ RJV_VERSION -> 1.2.8
72
+ fix rv2jlong bug, the solution was suggested by Ary Borenszweig
73
+ Sun Aug 29 arton
74
+ *ext/rjb.c
75
+ ignore no arguments method signature.
76
+ name base classes under Rjb module.
77
+ *lib/rjb.rb
78
+ implements public_methods and methods
79
+ *test/test.rb
80
+ add non arguments method sig test
81
+ add methods, public_methods, java_methods test
82
+ Thu Jul 22 arton
83
+ *ext/rjb.c
84
+ RJB_VERSION -> 1.2.6
85
+ export jv2rv for rjbexception.c
86
+ *ext/rjb.h
87
+ export jv2rv for rjbexception.c
88
+ *ext/rjbexception.c
89
+ create and keep java exception object for its properties.
90
+ *test/test.rb
91
+ add Exception#cause test
92
+ Wed Jun 9 arton
93
+ *ext/load.c
94
+ accept JAVA_HOME having an extra slash at the end
95
+ *ext/rjb.c
96
+ RJB_VERSION -> 1.2.5
97
+ Fri Jun 5 arton
98
+ *ext/rjb.h
99
+ defin HAVE_LONG_LONG if no HAVE_LONG_LONG but LP64
100
+ *ext/rjb.c
101
+ remove unused variables
102
+ RJB_VERSION -> 1.2.4
103
+ Fri Jun 4 arton
104
+ *ext/riconv.c
105
+ remove unused function if build with Ruby 1.9
106
+ *ext/rjb.c
107
+ RJB_VERSION -> 1.2.3
108
+ to accomodate with rubinius
109
+ *ext/load.c
110
+ to accomodate with rubinius
111
+ *ext/rjbexception.c
112
+ to accomodate with rubinius
113
+ Sun May 30 arton
114
+ *lib/rjbextension.rb
115
+ Rjb extension from Andreas Ronge's neo4j
116
+ - directly import jar by require method
117
+ - Rjb::import without quotations (Java class as Ruby object)
118
+ *test/exttest.rb
119
+ test for rjbextension.rb
120
+ *test/rjbtest.jar
121
+ test file for rjbextension.rb
122
+ Sat May 29 arton on behalf of atoulme
123
+ *ext/rjb.c
124
+ *ext/load.c
125
+ *ext/rjbexception.c
126
+ to accomodate with rubinius
127
+ thanks atoulme !
128
+ Wed May 12 arton
129
+ *test/test.rb
130
+ add Class name for TestMixin module because ruby 1.9 doesn't handle the constant.
131
+ Tue May 11 arton
132
+ *ext/rjb.c
133
+ fix duplicate method registering while no alias.
134
+ add class methods for inspecting method signatures.
135
+ add class_eval method for extending Java class
136
+ *test/test.rb
137
+ add class methods test for inspecting method signatures.
138
+ add mixin tests
139
+ Tue May 4 arton
140
+ *ext/load.c
141
+ corrected wrong function signature (BUG#28088), pointed and fixed by Romulo A. Ceccon (thanks)
142
+ *ext/rjb.c
143
+ using inheritance check while inspecting a object is RJB's instance (for extending it).
144
+ Tue Mar 16 arton
145
+ *ext/riconv.c
146
+ change locale setting "" to "C", fixed by Fabien Sartor (rjb-Bugs-27968)
147
+ *ext/rjb.c
148
+ RJB_VERSION -> 1.2.1
149
+ Sun Nov 1 arton
150
+ *ext/load.c
151
+ load jvm pointed by JVM_LIB environment variable first (suggested by Ittay Dror).
152
+ *ext/rjb.c
153
+ RJB_VERSION -> 1.2.0
154
+ Sun Oct 11 arton
155
+ *ext/extconf.rb
156
+ add double quotation around include path for mingw compiler, original patched by Roger Pack (thanks)
157
+ remove double quotaion around java_home variable for existing checking by File.directoy?
158
+ *rjb.rake
159
+ adding mingw support for the older version compatibility checking
160
+ Thu Sep 10 arton
161
+ *ext/load.c
162
+ Correct previous code (always reload jvm if OSX < Snow Leopard)
163
+ Clear DL's exception if success
164
+ *ext/rjb.c
165
+ RJB_VERSION -> 1.1.9
166
+ *ext/rjbexception.c
167
+ fit arguments for rb_raise to shut warning down
168
+ Mon Sep 07 arton
169
+ *ext/load.c
170
+ Check no compat type dylib after loading was failed (for Snow Leopard)
171
+ *ext/rjb.c
172
+ RJB_VERSION -> 1.1.8
173
+ Sun Feb 15 arton
174
+ *test/test/rb
175
+ add $KCODE and magic comment for iconv
176
+ *ext/rjb.c
177
+ RJB_VERSION -> 1.1.7
178
+ Thu Feb 5 kuwa1
179
+ *test/Test.java
180
+ *test/test.rb
181
+ add tests(Umlaut)
182
+ *ext/rjb.c
183
+ *ext/load.c
184
+ fix for ruby19
185
+ Sun Nov 16 arton
186
+ *ext/load.c
187
+ apply hpux patch, contributed by Ittay Dror. thanks
188
+ Tue Aug 26 arton
189
+ *ext/load.c, rjb.c, rjb.h
190
+ export safe_funcall under the prefix 'rjb'.
191
+ calling DL with rb_protect for avoiding exception.
192
+ Mon Aug 25 arton
193
+ *ext/load.c
194
+ Fix checking the result for loading alternate_jvm_type.
195
+ (patch from Kumar, thanks)
196
+ Thu Aug 14 arton
197
+ *ext/rjb.c, load.c, etc
198
+ change comment line // -> /* */ because AIX's compiler
199
+ add _AIX for load.c (this patch from Ittay Dror, thanks)
200
+ *ext/load.c
201
+ add ALT_JVM_TYPE for alternative jvm directory (by Kumar)
202
+ Sun Jul 13 arton
203
+ *ext/rjb.c
204
+ display warning when Rjb load jvm implicitly if $DEBUG or $VERBOSE.
205
+ Mon May 26 arton
206
+ *ext/rjb.c
207
+ correct char primitive conversion for Bigendian machine.
208
+ use macroes for loading classes
209
+ *ext/load.c
210
+ adjust OS X's directory
211
+ *ext/extconf.rb
212
+ adjust OS X's directory if Home exists
213
+ Thu Mar 27 arton
214
+ *ext/rjb.c
215
+ mark version 1.1.4 for the next release.
216
+ *test/test.rb
217
+ remove unload, because it fails.
218
+ It's more important to assert each functions.
219
+ Thu Mar 27 arton
220
+ *ext/riconv.c
221
+ activate conv tables for getenv configuration.
222
+ Tue Mar 5 Kuwashima
223
+ *ext/rjb.c
224
+ *ext/rjb.h
225
+ *ext/rjbexception.c
226
+ add auto load method.
227
+ Tue Mar 4 Kuwashima
228
+ *ext/rjbexception.c
229
+ *ext/rjb.c
230
+ *test/test.rb
231
+ clear(ignore) exception in current java thread, before some operation.
232
+ *ext/rjbexception.c
233
+ *ext/rjb.c
234
+ add auto load for Rjb::bind, Rjb::throw
235
+ *ext/rjb.c
236
+ *test/test.rb
237
+ add Rjb::unbind
238
+ *test/test.rb
239
+ add loading rubygems
240
+ Sat Feb 23 arton
241
+ *test/test.rb
242
+ let test_field metod use Test.class instead of Point.class
243
+ *test/Test.java
244
+ add a public field for testing
245
+ Fri Feb 22 arton
246
+ *ext/rjb.c
247
+ mark version 1.1.3 for the next release.
248
+ Fri Feb 22 arton
249
+ *ext/rjb.c
250
+ fix field reference (bug# 18238)
251
+ Wed Jan 9 arton
252
+ *ext/rjb.h
253
+ add some ruby macros that defined after 1.8.6 for compatibility
254
+ Change RBridge.class by 1.4.2
255
+ *data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class
256
+ compiled by 1.4.2 version of Java
257
+ *rjb.c
258
+ mark version 1.1.2 for the next release.
259
+ Tue Dec 27 Kuwashima
260
+ *test/Test.java
261
+ *test/test.rb
262
+ *ext/depend
263
+ *ext/load.c
264
+ *ext/extconf.rb
265
+ *ext/rjbexception.c
266
+ *ext/rjb.c
267
+ *ext/riconv.c
268
+ change for compatibility with Ruby-1.9.0
269
+ Tue Nov 20 arton
270
+ *rjb.c
271
+ mark version 1.10.12 for next relase.
272
+ *load.c
273
+ omit useless double-quotations from JAVA_HOME, maybe specifies a longpathname (but useless).
274
+ Wed Nov 14 Kuwashima
275
+ *rjb.c
276
+ add error check to constructor.
277
+ Fri Nov 9 arton
278
+ *test.rb
279
+ *Test.java
280
+ add test for reproducing rjb-bugs-15430
281
+ *rjb.c
282
+ fix rjb-bugs-15430 that caused by bad array conversion.
283
+ (generics method result signature is an object, but the real result is typed array)
284
+ *riconv.c
285
+ correct to get the number of array element.
286
+ Tue Oct 23 Kuwashima
287
+ *riconv.c
288
+ Change string encoding conversion rule.
289
+ Mon Oct 22 Kuwashima
290
+ *riconv.c
291
+ *riconv.h
292
+ recycle iconv instance.
293
+ *test/test.rb
294
+ add cases for test_kjconv
295
+ Sun Sep 23 arton
296
+ *rjb.c
297
+ version 1.0.9
298
+ convert to Ruby's type if Rjb::primitive_converion is enalbed and the result type is java.lang.Object
299
+ support the object conversion for a bignum to long.
300
+ Sat Sep 15 arton
301
+ *rjb.c
302
+ version 1.0.8
303
+ correction of 1.0.7, support long type.
304
+ Fri Sep 14 arton
305
+ *rjb.c
306
+ version 1.0.7
307
+ add auto primitive conversion toggled by Rjb::primitive_conversion
308
+ *test.rb
309
+ add test_auto_conv
310
+ Sun Jun 17 arton
311
+ *rjb.c
312
+ add method aliases.
313
+ setXxYy -> xx_yy=
314
+ getXxYy -> xx_yy
315
+ isXxYy -> xx_yy?
316
+ xxYyZz -> xx_yy_zz
317
+ *test.rb
318
+ add a test for the method alias feature.
319
+ Tue Nov 21 arton
320
+ *rjb.c
321
+ Skip the constant registering process, if the constant was already defined.
322
+ *load.c
323
+ *rjb.c
324
+ *rjbexception.c
325
+ *rjb.h
326
+ add prefix 'rjb' for externed symbol names to avoid confliction.
327
+
328
+ Sun Oct 08 arton (on behalf of richard apodaca)
329
+ *load.c
330
+ support AMD64
331
+
332
+ Mon Sep 11 arton
333
+ *test.rb
334
+ add a test of arguments types are various array.
335
+ *Test.java
336
+ add a test of arguments types are various array.
337
+ *rjb.c
338
+ accept nil for array parameter.
339
+ Sun Sep 10 arton
340
+ *test.rb
341
+ add a test of return type is an object wrapped an array
342
+ *Test.java
343
+ add a method that returns an object wrapped an array
344
+ *rjb.c
345
+ check array-mark in jv2rv for returned object was an array
346
+ Tue Aug 1 arton
347
+ *load.c
348
+ *rjb.c
349
+ change load pathname of the bridge class.
350
+ *post-install.rb
351
+ add for remove previous installed rjb.so.
352
+ *rjb.rake
353
+ add for build Gem.
354
+ *rjb.rb
355
+ for preparing the pathname constant of the bridge class.
356
+ *depend
357
+ chage binary name from rjb.so to rjbcore.so
358
+ *extconf.rb
359
+ chage binary name from rjb.so to rjbcore.so
360
+
361
+ Mon Jul 31 arton
362
+ *load.c
363
+ fix buffer allocation
364
+
365
+ Sun Jul 16 (Jun 22) Kuwashima and arton
366
+ *rjb.c
367
+ version 0.2.8
368
+ *MANIFEST
369
+ *depend
370
+ *load.c
371
+ *rjbexception.c
372
+ change jni.h to jniwrap.h.
373
+ change the bridge class's header according to JDK 5.0's javah.
374
+ *jniwrap.h
375
+ wrap jni.h for Cygin
376
+
377
+ Sat Jun 10 14:10:05 2006 arton
378
+ *rjb.c
379
+ version 0.2.7
380
+ support an array of arrays from ruby to java.
381
+
382
+ Mon May 8 08:52:12 2006 arton
383
+ *load.c
384
+ revision 5
385
+ support both Intel and PPC Mac.
386
+ Patched version was contributed by Demetrius Nunes.
387
+
388
+ Wed Apr 12 03:57:12 2006 arton
389
+ *rjb.c
390
+ version 0.2.6
391
+ support an array of arrays.
392
+ *test.rb
393
+ add an array of arrays test, some tests are contributed by Darren Day.
394
+ *Test.java
395
+ add a test method that returns an array of arrays, some tests are
396
+ contributed by Darren Day.
397
+
398
+ Sat Dec 24 18:56:38 2005 arton
399
+ *rjb.c
400
+ version 0.2.5
401
+ release String, Float, Array object after method call.
402
+ *gctest.rb
403
+ add for String object gc test
404
+
405
+ Mon Sep 19 01:09:30 2005 arton
406
+ *rjb.c
407
+ version 0.2.4
408
+ use null instead of empty string when String argument is nil
409
+ omit unused local variable from jstring2val
410
+ *test.rb
411
+ add null string test (bug since utf-8 support)
412
+
413
+ Tue Jun 28 01:57:07 2005 arton
414
+ *rjb.c
415
+ version 0.2.3
416
+ convert result object to imported class if object is an instance of Class
417
+ call Class#forName if argument count is 1
418
+ *test.rb
419
+ add test_importobj contributed by Mr. Kuwashima, thanks.
420
+
421
+ Mon Jun 27 20:30:50 2005 arton
422
+ treat Class.forName as Rjb::import
423
+ *rjb.c
424
+ version 0.2.2
425
+ add method 'forName' into imported Class object
426
+ if pass imported object to JVM, extract Class object from ruby object
427
+ *test.rb
428
+ add above tests
429
+
430
+ Sat Jun 25 05:58:36 2005 arton
431
+ most bugs were reported by Mr. Micael Weller, thanks.
432
+ *rjb.c
433
+ version 0.2.1
434
+ correct derived static method search
435
+ search class methods then class's instance methods when called by class
436
+ avoid register non capitalized named constants into constants table
437
+ correct capitalized named method search
438
+ *riconv.c
439
+ never call iconv if $KCODE is nil
440
+ *load.c
441
+ using path separator ; for cygwin (by Ryugate)
442
+
443
+ Sun Apr 24 05:26:16 2005 arton
444
+ *rb.c
445
+ version 0.2.0
446
+ delete localref if globalref was created.
447
+ load can take the second argument for jvm
448
+ *load.c
449
+ load can take the second argument for jvm
450
+
451
+ Mon Jan 17 02:40:21 2005 arton
452
+ *rjb.c
453
+ add 'throw' module function.
454
+ move java exception handling functions into newly created rjbexception.c
455
+ *rjb.h
456
+ declations for rjb.c and rjbexception.c
457
+ *rjbexception.c
458
+ java exception handling functions, and 'throw' module function.
459
+ *test.rb
460
+ adding throw test.
461
+
462
+ Wed Jan 12 00:01:08 2005 Kaspar Schiess and arton
463
+ *rjb.c
464
+ correct Rjb::load parameter evaluation (classpath).
465
+ - many thanks to Mr.Schiess.
466
+
467
+ Sun Nov 21 02:51:43 2004 Kuwashima and arton
468
+ *rjb.c
469
+ move dbcs-utf-8 auto conversion feature into riconv.?
470
+ remove JNI version argument from Rjb::load. (bug reported by Mr.Tateishi)
471
+ *load.c
472
+ correct CLASSPATH setting (bad environment name).(bug reported by Mr.Tateishi)
473
+ *riconv.c riconv.h (contributed by Mr.Kuwashima)
474
+ DBCS - utf-8 auto conversion functions.
475
+ *depend MANIFEST
476
+ add riconv.?
477
+ - many tanks to Mr.Kuwashima and Mr.Tateishi.
478
+
479
+ Tue Oct 5 23:08:59 2004 Kuwashima and arton
480
+ *test.rb
481
+ add kanji conversion test
482
+ *rjb.c
483
+ add dbcs(sjis and euc-jp) - utf-8 auto conversion feature.
484
+ the patch was contributed by Mr.Kuwashima, many thanks.
485
+
486
+ Sun Oct 3 18:24:42 2004 arton
487
+ *load.c
488
+ JNIEnv* now using local variable instead of global one.
489
+ Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
490
+ *rjb.c
491
+ JNIEnv* now using local variable instead of global one.
492
+ Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
493
+ This change was suggested by Mr.Kuwashima, he also tested the behavior,
494
+ and gave me some test codes.
495
+ and attach_current_thread is from Mr.Kuwashima's patch.
496
+ Many thanks to Mr.Kuwashima.
497
+
498
+ Sat Sep 25 03:25:45 2004 arton
499
+ *rjb.c
500
+ implements interface's method argument conversion.
501
+ *test.rb
502
+ add Comparable test (interface with method arguments)
503
+ *Test.java
504
+ add Comparable test method.
505
+
506
+ Wed Sep 22 02:30:15 2004 arton
507
+ *rjb.c
508
+ correct constants load, using mid-class.
509
+ convert null string to nil
510
+
511
+ Wed Sep 22 00:05:32 2004 arton
512
+ *rjb.c
513
+ correct ruby type checking. If the parameter type is java.lang.String, rjb instance is always accepted.
514
+
515
+ Mon Sep 20 22:02:53 2004 arton
516
+ *rjb.c
517
+ checking method/constructor signature with class when the argument is rjb's instance.
518
+ Sun Sep 19 00:54:35 2004 arton
519
+ *rjb.c
520
+ convert Java exception to Ruby's StandardError derived class.
521
+ checking method/constructor signature when invoking if no signatur argument is supplied.
522
+ adding field accessor.
523
+
524
+ Sun Sep 12 21:42:00 2004 arton
525
+ *rjb.c
526
+ call exception description when verbose = true.
527
+ correct recursive import call (for Boolean).
528
+ corrent method not found message creation.