-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
10403 lines (6683 loc) · 376 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This ChangeLog file is no longer maintained - see the git repo history for
more recent changes: https://xapian.org/bleeding
Sat Sep 26 06:19:22 GMT 2015 Olly Betts <[email protected]>
* php/docs/examples/simpleexpand.php5,
php/docs/examples/simplematchdecider.php5,
php/docs/examples/simplesearch.php5: When iterating an MSet with
foreach, don't throw the docid away as $dummy, put it in $docid
and use it - the code looks cleaner, and this avoids a call to C++
to get the docid on each iteration.
Sat Sep 26 06:17:08 GMT 2015 Olly Betts <[email protected]>
* HACKING,README,configure.ac,php/docs/index.rst,php/smoketest.php:
Make PHP 5.5 the minimum officially supported version, as 5.4 has
now reached EOL.
Sat Sep 26 03:46:57 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Update for addition of XAPIAN_DOCID_BASE_TYPE and
XAPIAN_TERMCOUNT_BASE_TYPE.
Fri Jun 05 12:42:41 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Update for optional reference counting of
MatchSpy.
Mon Jun 01 13:14:40 GMT 2015 Olly Betts <[email protected]>
* NEWS,configure.ac: Update for 1.3.3.
Mon Jun 01 11:52:12 GMT 2015 Olly Betts <[email protected]>
* NEWS: Update.
Fri May 29 07:31:12 GMT 2015 Olly Betts <[email protected]>
* python/smoketest.py: Add new testcase to catch any internal
functions, methods, constants, etc which have accidentally been
wrapped.
Fri May 29 07:30:20 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Ignore new internal sortable_serialise_()
function.
Fri May 29 07:25:17 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Ignore internal methods of Xapian::Weight.
Wed May 27 03:07:15 GMT 2015 Olly Betts <[email protected]>
* NEWS: Update.
Tue May 26 23:17:09 GMT 2015 Olly Betts <[email protected]>
* NEWS: Credit people for the #616-related improvements in 1.3.2.
Mon May 25 10:03:24 GMT 2015 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: SWIG now automatically
makes xapian.Error a subclass of the Python Exception class, so
drop our post-processing tweak to add this in.
Mon May 25 09:58:30 GMT 2015 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Eliminate 'modern'
subdirectory - we haven't generated a non-modern variant of the
python bindings for ages.
Mon May 25 05:59:49 GMT 2015 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Fix Makefile comment typo.
Sun May 24 13:07:47 GMT 2015 Olly Betts <[email protected]>
* configure.ac: Fix configure test for whether $CLI can run CSharp
programs - previously it would always fail, which would mean that
the CSharp tests wouldn't be run if CSharp programs can't be run
directly.
Fri May 22 06:13:49 GMT 2015 Olly Betts <[email protected]>
* NEWS: Update.
Fri May 22 04:48:35 GMT 2015 Olly Betts <[email protected]>
* NEWS.SKELETON: Add "Python3" section.
Thu May 21 04:37:31 GMT 2015 Olly Betts <[email protected]>
* README,configure.ac: Require Tcl 8.5 as older versions are no longer
supported upstream, and this version added ::tcl::pkgconfig, which
makes the configure tests simpler and more reliable.
Tue May 19 05:45:48 GMT 2015 Olly Betts <[email protected]>
* perl/t/symbol-test.t: If the symboltest module build fails, skip the
test - it's likely due to external reasons, like incompatible
compiler flags being taken from Perl's Config module, due to Perl
having been built with a different compiler to Xapian.
Fri May 15 11:31:59 GMT 2015 Olly Betts <[email protected]>
* perl/perl.i: Just call the existing Perl Xapian::inmemory_open()
function rather than defining and wrapping an inline C++
new3_WritableDatabase() function which calls InMemory::open().
Fri May 15 06:49:50 GMT 2015 Olly Betts <[email protected]>
* perl/util.i.in: Add a "LICENSE" section to the main POD.
Fri May 15 04:50:28 GMT 2015 Olly Betts <[email protected]>
* python3/pythontest.py: Expand comment about disabling
test_import_star under threads.
Thu May 14 13:50:24 GMT 2015 Olly Betts <[email protected]>
* README: Remove the experimental markers from Lua and Python3,
and the note welcoming patches for Python 3.1.x support (since
Python 3.1.x was EOL-ed 3 years ago).
Tue May 12 07:39:04 GMT 2015 Olly Betts <[email protected]>
* configure.ac: Fix typo.
Mon May 11 06:55:32 GMT 2015 Olly Betts <[email protected]>
* doxygen_xml.conf.in,xapian-head.i: Update for addition of
XAPIAN_NOEXCEPT.
Sun May 10 13:27:23 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Update for optional reference counting of
FieldProcessor.
Sun May 10 11:21:55 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Update for optional reference counting of
functors.
Fri May 08 11:01:03 GMT 2015 Olly Betts <[email protected]>
* perl/t/: Add 'use strict' to all testcases.
Fri May 08 11:00:14 GMT 2015 Olly Betts <[email protected]>
* perl/t/document.t,perl/t/writabledatabase.t: Add missing 'my'.
Fri May 08 10:55:32 GMT 2015 Olly Betts <[email protected]>
* perl/perl.i: Wrap missing constants.
Fri May 08 10:54:51 GMT 2015 Olly Betts <[email protected]>
* perl/perl.i,perl/t/parser.t: Wrap WILDCARD_LIMIT_* constants as
constants.
Fri May 08 10:48:20 GMT 2015 Olly Betts <[email protected]>
* perl/t/parser.t: Update to use Test::More.
Fri May 08 09:56:52 GMT 2015 Olly Betts <[email protected]>
* perl/perl.i: Remove duplicate %constant for OP_WILDCARD.
Tue May 05 04:56:25 GMT 2015 Olly Betts <[email protected]>
* python/pythontest.py,python3/pythontest.py: Fix typo in test context
("multipler" -> "multiplier").
Tue May 05 04:09:24 GMT 2015 Olly Betts <[email protected]>
* perl/Makefile.am,perl/t/collapse.t: Add test coverage for
Enquire::set_collapse_key() with 1 and 2 parameters.
Fri May 01 12:16:29 GMT 2015 Olly Betts <[email protected]>
* configure.ac: Update check for -fvisibility to match xapian-core's.
Fri May 01 12:15:28 GMT 2015 Olly Betts <[email protected]>
* configure.ac: Simplify test of Ruby version.
Fri May 01 12:14:31 GMT 2015 Olly Betts <[email protected]>
* INSTALL: IRIX is past EOL so drop information about IRIX make.
Fri May 01 12:05:53 GMT 2015 Olly Betts <[email protected]>
* perl/perl.i: Add workaround for Perl defining a seed() macro which
breaks '#include <algorithm>' undef C++11 with GCC.
Fri May 01 11:04:33 GMT 2015 Olly Betts <[email protected]>
* configure.ac,m4/ax_cxx_compile_stdcxx_11.m4: Require a C++11
compiler.
Fri Apr 24 03:26:10 GMT 2015 Olly Betts <[email protected]>
* xapian-headers.i: Don't wrap Query::LEAF_* - they're for internal
use in xapian-core.
* python/smoketest.py: Add test_internal_enums_not_wrapped to check
that xapian.Query has no attributes starting with "LEAF_".
Mon Apr 13 06:22:15 GMT 2015 Olly Betts <[email protected]>
* tcl8/tcl.i: Adjust precedence of the typecheck typemap for wrapping
constructing a query from a Tcl list so that we disambiguate this
from the new OP_WILDCARD constructor correctly.
Thu Apr 09 21:47:28 GMT 2015 Olly Betts <[email protected]>
* ruby/Makefile.am: Ship generate-rdoc-stubs in the tarball. Reported
by Matthias Klose in https://bugs.debian.org/782270
Fri Mar 13 10:33:47 GMT 2015 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Fix 'make install' when
building from git with --disable-documentation. Fix to handle a
VPATH build from a tarball when the generated docs will be in
$(srcdir).
Fri Mar 13 05:28:28 GMT 2015 Olly Betts <[email protected]>
* csharp/Makefile.am,java/Makefile.am,lua/Makefile.am,perl/Makefile.am,
php/Makefile.am,ruby/Makefile.am,tcl8/Makefile.am: Fix "make
install" from a git tree configured with --disable-documentation.
(Fixes #658, reported by German M. Bravo)
Tue Mar 03 04:04:36 GMT 2015 Olly Betts <[email protected]>
* java/docs/examples/SimpleSearch.java: getPercent() returns an
integer.
Tue Mar 03 04:01:46 GMT 2015 Ashley <[email protected]>
* java/docs/examples/SimpleSearch.java: Fix build and update example.
Fri Feb 13 13:10:11 GMT 2015 Olly Betts <[email protected]>
* python/smoketest.py,python3/smoketest.py: Update testcases for lazy
wildcard expansion change in xapian-core.
Wed Jan 07 04:00:24 GMT 2015 Olly Betts <[email protected]>
* configure.ac: Don't AC_SUBST LUA_INC as we never use it.
Thu Dec 18 00:30:06 GMT 2014 Olly Betts <[email protected]>
* python/python.i: Don't release the GIL when using
XapianSWIGQueryItor as it uses Python C API calls.
Thu Dec 18 00:19:56 GMT 2014 Olly Betts <[email protected]>
* python3/pythontest.py: Actually reenable the test case which was
failing before the previous commit fixed the underlying problem.
Thu Dec 18 00:18:07 GMT 2014 Olly Betts <[email protected]>
* python3/python.i: Don't release the GIL when using
XapianSWIGQueryItor as it uses Python C API calls. (fixes #346)
Wed Dec 17 23:01:35 GMT 2014 Olly Betts <[email protected]>
* python/generate-python-exceptions,
python3/generate-python-exceptions: Remove comment which is no
longer correct since #538 was fixed 4.5 years ago.
Mon Dec 15 00:10:42 GMT 2014 Olly Betts <[email protected]>
* xapian-headers.i: Add DB_RETRY_LOCK as a constant to wrap.
Fri Dec 05 11:26:16 GMT 2014 Olly Betts <[email protected]>
* ChangeLog,configure.ac: Fix typos reported by Veres Lajos.
Fri Dec 05 11:20:17 GMT 2014 Olly Betts <[email protected]>
* doxygen_xml.conf.in: Update to avoid warnings about obsolete tags
from newer doxygen.
Sun Nov 30 22:00:58 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Add an example of specifying LUA_SO to --help output.
Sun Nov 30 21:49:48 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Rework LUA_SO checks to be clearer and to properly
handle LUA_SO being specified without a leading '.'.
Sun Nov 30 15:46:08 GMT 2014 James Aylett <[email protected]>
* configure.ac: use \{0,1\} instead of \? for better sed
portability.
Mon Nov 24 19:58:34 GMT 2014 Olly Betts <[email protected]>
* NEWS,configure.ac: Update for 1.3.2.
Mon Nov 24 10:45:30 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Update comment about MACOSX_DEPLOYMENT_TARGET -
OS X 10.2 is long obsolete now.
Sun Nov 23 23:57:02 GMT 2014 Olly Betts <[email protected]>
* NEWS,csharp/Makefile.am,csharp/docs/index.rst,fake_dbfactory.i,
java/Makefile.am,lua/docs/index.rst,php/docs/index.rst,
python/docs/introduction.rst,python/smoketest.py,
python3/docs/introduction.rst,python3/smoketest.py,
ruby/docs/index.rst,tcl8/docs/index.rst,xapian-head.i,
xapian-headers.i: Update for renaming of 'brass' backend to 'glass'.
Sun Nov 23 05:14:03 GMT 2014 Olly Betts <[email protected]>
* python/docs/introduction.rst: Fix typo.
Sun Nov 09 22:48:08 GMT 2014 Olly Betts <[email protected]>
* NEWS: Update.
Tue Nov 04 20:38:38 GMT 2014 Olly Betts <[email protected]>
* php/docs/index.rst: Note that PHP < 5.4 are now out of security
support.
Tue Nov 04 04:38:06 GMT 2014 Olly Betts <[email protected]>
* php/smoketest.php: Iterating foreach ($it as $k => $c) doesn't work
unless $k is a string or integer in PHP < 5.5, so test the old way
under older versions.
Tue Nov 04 04:25:57 GMT 2014 Olly Betts <[email protected]>
* php/smoketest.php: Remove disabling of subclassing tests for PHP
versions >= 5.4.
Mon Nov 03 22:11:19 GMT 2014 Olly Betts <[email protected]>
* INSTALL,php/docs/index.rst: In current PHP releases, dl() will only
look in the configured extension directory, and only accepts a
leafname, and dl() is disabled in most SAPIs, so update the
documentation about how to install the PHP bindings without being
root. Fixes #661, reported by Felix Ostmann.
Sun Nov 02 20:51:03 GMT 2014 Olly Betts <[email protected]>
* NEWS: Update for 1.2.19 release.
Fri Oct 24 23:06:25 GMT 2014 Gaurav Arora <[email protected]>
* csharp/Makefile.am,java/Makefile.am: Update for addition of LMWeight
class.
Mon Oct 20 00:53:59 GMT 2014 Olly Betts <[email protected]>
* .gitignore,csharp/.gitignore,java/.gitignore,lua/.gitignore,
perl/.gitignore,php/.gitignore,python/.gitignore,python3/.gitignore,
python3/docs/.gitignore,ruby/.gitignore,tcl8/.gitignore: Update to
ignore new generated files.
Sun Oct 19 09:40:09 GMT 2014 Olly Betts <[email protected]>
* README: Note that Ruby 2.1 works too.
Mon Oct 13 11:41:18 GMT 2014 Olly Betts <[email protected]>
* NEWS: Update.
Fri Oct 10 11:43:55 GMT 2014 Olly Betts <[email protected]>
* php/add-php-ref-handling: Be careful to pick up just the parameter
name and not any default value. (Fixes #659, reported by jmienert)
* php/smoketest.php: Add regression test.
Thu Sep 18 02:23:53 GMT 2014 Olly Betts <[email protected]>
* python3/: Remove executable bits from a number of files which
shouldn't have them.
Thu Sep 18 02:19:54 GMT 2014 Olly Betts <[email protected]>
* python3/extra.i: Fix typo in code to keep a reference to a
FieldProcessor object, reported by Germán M. Bravo in github PR59.
* python3/smoketest.py: Add regression test.
Thu Sep 18 02:12:47 GMT 2014 Olly Betts <[email protected]>
* python/extra.i: Fix typo in code to keep a reference to a
FieldProcessor object, reported by Germán M. Bravo in github PR59.
* python/smoketest.py: Add regression test.
Thu Sep 18 01:53:02 GMT 2014 Olly Betts <[email protected]>
* java/java.i: Update to use the new Xapian::iterator_valid() API.
Fri Sep 12 16:21:34 GMT 2014 Olly Betts <[email protected]>
* php/docs/index.rst: Align entries in tables in ReST source.
Fri Sep 12 16:19:55 GMT 2014 Olly Betts <[email protected]>
* php/docs/examples/simpleexpand.php5,
php/docs/examples/simplematchdecider.php5,
php/docs/examples/simplesearch.php5,php/docs/index.rst,php/php.i,
php/smoketest.php: Wrap Xapian iterator classes as PHP iterators.
(fixes#652)
Fri Sep 12 13:40:48 GMT 2014 Olly Betts <[email protected]>
* xapian-headers.i: Ignore new iterator API (which we see via friend
declarations).
Fri Sep 12 13:35:25 GMT 2014 Olly Betts <[email protected]>
* HACKING,README,php/docs/index.rst: Make PHP 5.4 the minimum
officially supported version, as 5.3 has now reached EOL.
Thu Sep 11 17:02:10 GMT 2014 Olly Betts <[email protected]>
* php/smoketest.php: Add regression test for throwing an exception from
a PHP implementation of FieldProcessor::apply(), fixed by newer SWIG.
Thu Sep 11 16:59:14 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Fix SWIG version check to not fail on 3.* by making the
pattern match all older versions rather than some newer ones, and
update the minimum checked for to be what we actually currently want
- it was 1.3.40 which is 5 years old!
Wed Sep 03 19:15:34 GMT 2014 Olly Betts <[email protected]>
* xapian-head.i,xapian-headers.i: Define XAPIAN_IN_XAPIAN_H rather
than XAPIAN_LIB_BUILD to avoid the direct subheader inclusion
checks.
Fri Aug 29 21:36:39 GMT 2014 Olly Betts <[email protected]>
* xapian-headers.i: Add DBCHECK_SHOW_FREELIST as a constant to wrap.
Thu Aug 21 08:53:48 GMT 2014 Olly Betts <[email protected]>
* xapian-headers.i: Add DB_FULL_SYNC as a constant to wrap.
Tue Aug 05 12:46:08 GMT 2014 Olly Betts <[email protected]>
* NEWS: Update.
Fri Aug 01 06:34:31 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Enable automake option 'subdir-objects' as (a) this
avoids a warning with newer automake and (b) it better to put the
objects alongside the source in this case anyway (less cluttered,
and the objects and generated sources will both get cleaned up
if the directory is removed).
Wed Jul 30 04:03:09 GMT 2014 Olly Betts <[email protected]>
* perl/Makefile.am,php/Makefile.am: Restore explicit dependencies of
except.i - they are needed so that except.i gets generated before
the automatically generated dependency information is available.
Tue Jul 22 01:04:29 GMT 2014 Olly Betts <[email protected]>
* php/Makefile.am: Add add-php-ref-handling script as a dependency of
the stamp file, so we regenerate if this script changes.
Tue Jul 22 01:02:48 GMT 2014 Olly Betts <[email protected]>
* perl/Makefile.am,php/Makefile.am: Remove unnecessary explicit
dependencies on except.i, as swig-depcomp finds this automatically.
Tue Jul 22 01:02:04 GMT 2014 Olly Betts <[email protected]>
* csharp/Makefile.am: Fix to generate dependencies for stamp file
correctly.
Tue Jul 22 01:01:33 GMT 2014 Olly Betts <[email protected]>
* csharp/Makefile.am: Update for Snipper wrapping.
Mon Jul 21 23:50:00 GMT 2014 Mihai Bivol <[email protected]>
* java/Makefile.am,xapian-headers.i: Add Snipper in xapian bindings.
Wed Jul 09 01:14:43 GMT 2014 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Fix "make dist" to include
the sphinx-generated docs when DOCUMENTATION_RULES=0.
Tue Jul 08 13:33:01 GMT 2014 Olly Betts <[email protected]>
* csharp/Makefile.am,java/Makefile.am,lua/Makefile.am,php/Makefile.am,
ruby/Makefile.am,tcl8/Makefile.am: Fix "make dist" when
DOCUMENTATION_RULES is off but generated index.html files exist.
Mon Jun 30 04:11:46 GMT 2014 Olly Betts <[email protected]>
* python/smoketest.py: Fix typo in SimpleStopper with file testcase.
Mon Jun 30 02:18:04 GMT 2014 Olly Betts <[email protected]>
* python/pythontest.py,python3/pythontest.py: Add a comment to explain
why the PostingSource is in a list in the "postingsource" testcase,
and add a term to the list to make it a less artificial test.
Sat Jun 28 11:15:47 GMT 2014 Olly Betts <[email protected]>
* Makefile.am,shortstop.list: Add and distribute new data file
'shortstop.list', needed for new SimpleStopper ctor testcase.
Sat Jun 28 09:34:15 GMT 2014 Olly Betts <[email protected]>
* xapian-head.i,xapian-headers.i: Provide a SimpleStopper constructor
which provides the ability to initialise from a stopword list in a
file. Based on patch from Assem Chelli.
* python/smoketest.py: Add testcoverage for this new wrapping.
Mon Jun 23 02:49:37 GMT 2014 Olly Betts <[email protected]>
* csharp/Makefile.am,java/Makefile.am,lua/Makefile.am,php/Makefile.am,
ruby/Makefile.am,tcl8/Makefile.am: Don't guard installation of
index.html generated from RST by "if DOCUMENTATION_RULES".
Mon Jun 23 02:23:40 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Add hints for which package to install for rst2html
and sphinx-build (the latter is particularly useful, as there are at
least 3 different open source projects using the name "sphinx").
Mon Jun 23 00:56:02 GMT 2014 Olly Betts <[email protected]>
* csharp/Makefile.am,java/Makefile.am,lua/Makefile.am,perl/Makefile.am,
php/Makefile.am,python/Makefile.am,python3/Makefile.am,
ruby/Makefile.am,tcl8/Makefile.am: Use $(MKDIR_P).
Mon Jun 23 00:55:14 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Use AS_MKDIR_P instead of test -d || mkdir.
Sun Jun 22 13:47:03 GMT 2014 Olly Betts <[email protected]>
* NEWS: Update.
Sat Jun 21 01:29:37 GMT 2014 Olly Betts <[email protected]>
* perl/Xapian/RSet.pm: Fix duplicate "1;" at end of module.
Sat Jun 21 01:27:55 GMT 2014 Olly Betts <[email protected]>
* perl/Xapian/,perl/docs/examples/,perl/generate-perl-exceptions,
perl/perl.i,perl/t/databasemodified.t,perl/t/search.t,
perl/t/writabledatabase.t,perl/util.i.in: Whitespace clean-up.
Sat Jun 21 01:00:59 GMT 2014 Olly Betts <[email protected]>
* HACKING,README,perl/Makefile.am,perl/Search/Xapian/,perl/Xapian/,
perl/docs/examples/,perl/generate-perl-exceptions,perl/perl.i,
perl/t/,perl/util.i.in,xapian-bindings.spec.in: Move the new
SWIG-based Perl bindings into a 'Xapian' module, to smooth the
overlap with the hand-coded XS 'Search::Xapian' module.
Fri Jun 20 23:25:33 GMT 2014 Olly Betts <[email protected]>
* python/docs/examples/simpleindex.py: Eliminate needless differences
with the python3 version - drop a duplicate blank line, and prefer
"line = line.strip()" to "line = string.strip(line)".
Fri Jun 20 12:51:35 GMT 2014 Olly Betts <[email protected]>
* python3/docs/examples/simpleexpand.py,
python3/docs/examples/simpleindex.py: Fix Python3 examples to
actually work. (see #346)
Fri Jun 20 06:14:05 GMT 2014 Olly Betts <[email protected]>
* perl/Search/Xapian/MultiValueSorter.pm: Fix documentation comment
typo ("foward" -> "forward").
Mon Jun 16 13:01:39 GMT 2014 Olly Betts <[email protected]>
* configure.ac: List the python-related files in AC_CONFIG_FILES
together.
Mon Jun 16 13:01:14 GMT 2014 Olly Betts <[email protected]>
* configure.ac,python/docs/examples.rst,python/docs/index.rst,
python/docs/xapian.rst,python3/docs/examples.rst,
python3/docs/index.rst,python3/docs/xapian.rst: Whitespace tweaks.
Mon Jun 16 12:54:14 GMT 2014 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Remove echo statements from
rules which report the rule ran successfully - we don't have these
in other rules.
Mon Jun 16 12:38:54 GMT 2014 Olly Betts <[email protected]>
* python3/docs/index.rst,python3/docs/introduction.rst,
python3/docs/introduction3.rst: Resolve inconsistencies in what we
think the introduction for Python 3 is called, fixing a build error
in the sphinx docs.
Mon Jun 16 12:33:39 GMT 2014 Assem Chelli <[email protected]>
* configure.ac,python/Makefile.am,python/docs/,python3/Makefile.am,
python3/docs/: Generate Python API docs with Sphinx. (Fixes #138)
Thu May 01 00:28:43 GMT 2014 Olly Betts <[email protected]>
* php/smoketest.php: Add tests of get_eset() with an ExpandDecider and
with a min weight threshold.
Sun Apr 06 19:40:12 GMT 2014 James Aylett <[email protected]>
* perl/Makefile.am: Perl tests are ordering-dependent, so
use .NOTPARALLEL to avoid problems during parallel builds.
Sun Mar 30 22:57:50 GMT 2014 Anish Kanchan <[email protected]>
* java/SmokeTest.java: Add testcase that FLAG_SPELLING is now wrapped
in a usable way. (see #616)
Sun Mar 30 22:06:54 GMT 2014 Olly Betts <[email protected]>
* lua/docs/index.rst: Note that constants can now be accessed using
CLASS.CONSTANT as well as CLASS_CONSTANT.
Sun Mar 30 22:04:43 GMT 2014 Olly Betts <[email protected]>
* lua/docs/index.rst: RST source formatting tweak.
Thu Mar 27 23:02:39 GMT 2014 Olly Betts <[email protected]>
* lua/smoketest.lua: Whitespace tweak.
Thu Mar 27 23:00:56 GMT 2014 Olly Betts <[email protected]>
* lua/smoketest.lua: Change expect() parameter order to the more
natural (got, expected), which most of the calls already used,
and fix up the few calls which passed (expected, got).
Thu Mar 27 10:45:27 GMT 2014 Olly Betts <[email protected]>
* python/Makefile.am,python3/Makefile.am: Pass
-DSWIG_PYTHON_LEGACY_BOOL to SWIG to revert strict bool typemap to
the more Pythonic older typemap.
Thu Mar 27 07:21:08 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Don't report Python version twice if it's too new or
too old.
Mon Mar 10 11:17:12 GMT 2014 Olly Betts <[email protected]>
* README: Add links to Erlang and Node.js bindings.
Mon Mar 10 02:35:19 GMT 2014 Olly Betts <[email protected]>
* csharp/docs/index.rst,lua/docs/index.rst,php/docs/index.rst,
python/docs/index.rst,ruby/docs/index.rst,tcl8/docs/index.rst:
Remove use of "$Date" as it's not expanded by git, and the "last
updated" information isn't all that informative anyway - there can
still be stale information even if the file was updated very
recently.
Mon Mar 10 02:27:52 GMT 2014 Olly Betts <[email protected]>
* ruby/Makefile.am: Fix to build Ruby docs from reStructured text,
which I somehow failed to apply from Mayank's patch.
Sun Mar 09 10:14:38 GMT 2014 Mayank Chaudhary <[email protected]>
* csharp/Makefile.am,csharp/docs/index.html,csharp/docs/index.rst,
java/Makefile.am,java/docs/index.html,java/docs/index.rst,
lua/Makefile.am,lua/docs/index.html,lua/docs/index.rst,
php/Makefile.am,php/docs/index.html,php/docs/index.rst,
python/Makefile.am,python/docs/index.html,python/docs/index.rst,
ruby/docs/index.html,ruby/docs/index.rst,tcl8/Makefile.am,
tcl8/docs/index.html,tcl8/docs/index.rst: Convert HTML docs to
reStructured text.
Sun Feb 23 22:06:31 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Remove unnecessary m4 quoting.
Fri Feb 21 07:26:26 GMT 2014 Olly Betts <[email protected]>
* configure.ac: Fix Ruby bindings to build on Windows (and other
platforms where allow_undefined_flag=unsupported. (fixes#634)
Mon Feb 17 05:02:47 GMT 2014 Olly Betts <[email protected]>
* README: Note that C# bindings now need .NET 2 or later (because
that's what SWIG-generated code now requires).
Mon Feb 17 04:16:07 GMT 2014 Olly Betts <[email protected]>
* php/smoketest.php: Add missing "exit(1);" after check that
MatchDecider returns an MSet with the expected docid in.
Sun Feb 16 05:51:00 GMT 2014 Olly Betts <[email protected]>
* python3/python.i: Update (no longer recognised)
XAPIAN_BINDINGS_SKIP_BRASS_AND_CHERT_FACTORIES to
XAPIAN_BINDINGS_SKIP_DEPRECATED_DB_FACTORIES so deprecated db
factories aren't wrapped.
* python3/smoketest.py: Update testcases to test factories which
shouldn't be wrapped aren't, and that the replacements work.
Wed Jan 29 04:01:36 GMT 2014 Olly Betts <[email protected]>
* python3/Makefile.am,python3/run-python-test: Pass Python 3
interpreter as PYTHON3 not PYTHON, and default to python3 if not
specified.
Fri Jan 10 09:00:05 GMT 2014 Olly Betts <[email protected]>
* xapian-headers.i: Update for xapian-core Database::check() optional
parameter change.
Thu Jan 09 03:34:17 GMT 2014 Olly Betts <[email protected]>
* python/pythontest.py,python3/pythontest.py,xapian-head.i,
xapian-headers.i: Wrap Xapian::Database::check() for the bindings
with arguments (path, opts = 0), and if opts != 0, send output to
stdout.
Mon Jan 06 12:10:08 GMT 2014 Olly Betts <[email protected]>
* python/pythontest.py,python3/pythontest.py: When testing
valuestreams, just use the xapian.WritableDatabase constructor
rather than chert_open() - that code dates back to when chert was
the only disk-based backend to support valuestreams, and it wasn't
the default backend.
Wed Jan 01 04:22:36 GMT 2014 Olly Betts <[email protected]>
* python3/Makefile.am: Fix handling of DOCUMENTATION_RULES.
Wed Dec 25 20:30:49 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Quote $PYTHON, etc in backward compatibility code.
Wed Dec 25 06:29:07 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Fix some issues with the previous change, so it works
as intended.
Tue Dec 24 21:26:27 GMT 2013 Olly Betts <[email protected]>
* python3/Makefile.am: Use PYTHON to run doxy2swig, as that's reliably
set when we're in maintainer mode.
Tue Dec 24 21:21:17 GMT 2013 Olly Betts <[email protected]>
* Makefile.am,configure.ac,python/Makefile.am: Rename the variables
used for the python2 bindings to begin PYTHON2 instead of PYTHON.
Try python2 before python when looking for an interpreter for the
python2 bindings, as some distros now point /usr/bin/python at
Python 3.
Sat Dec 21 01:06:19 GMT 2013 Olly Betts <[email protected]>
* python3/smoketest.py: Add parentheses around print arguments.
Fri Dec 20 03:50:50 GMT 2013 Olly Betts <[email protected]>
* xapian-headers.i: Update for addition of Xapian::DB_NO_TERMLIST.
Fri Dec 20 00:22:02 GMT 2013 Olly Betts <[email protected]>
* csharp/docs/index.html,lua/docs/index.html,php/docs/index.html,
php/smoketest.php,python/docs/index.html,python3/docs/index.rst,
xapian-headers.i: Update for addition of Xapian::DB_BACKEND_STUB
and deprecationg of Xapian::Auto::open_stub().
Thu Dec 19 09:48:04 GMT 2013 Olly Betts <[email protected]>
* NEWS: Update from 1.2.16 and ChangeLog.
Thu Dec 19 06:45:17 GMT 2013 Olly Betts <[email protected]>
* csharp/docs/index.html,lua/docs/index.html,perl/perl.i,
php/docs/index.html,python/docs/index.html,python3/docs/index.rst,
python3/python.i,ruby/docs/index.html,tcl8/docs/index.html,
xapian-head.i,xapian-headers.i: Update for deprecation of
Xapian::Brass::open() and Xapian::Chert::open().
Thu Dec 19 02:26:03 GMT 2013 Olly Betts <[email protected]>
* xapian-headers.i: Update for new Xapian::DB_* constants.
Thu Dec 19 02:17:15 GMT 2013 Olly Betts <[email protected]>
* python3/docs/index.rst: Wording tweaks.
Thu Dec 19 02:15:09 GMT 2013 Olly Betts <[email protected]>
* python/smoketest.py,python3/smoketest.py: If constants weren't
handled in xapian-headers.i with the CONSTANT() macro, we ended up
with xapian.cvar being created, and an obscure error from
smoketest.py. Now we report what the variables are in the
testsuite output.
Wed Dec 18 23:10:53 GMT 2013 Olly Betts <[email protected]>
* xapian-headers.i: Update for addition of xapian/constants.h.
Fri Dec 06 05:29:53 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Link against -ltclstubX.Y for Tcl 8.5 and later
(reported by Sergei Golovan in https://bugs.debian.org/724830).
Also, use a better check for TCL_INC for Tcl 8.5 and later.
Fri Dec 06 03:31:50 GMT 2013 Olly Betts <[email protected]>
* README,configure.ac: Tweak configure to work with Ruby 2.0.
Tue Dec 03 07:38:49 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Sync link_all_deplibs_CXX check with xapian-core.
Fri Nov 08 10:32:13 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Remove duplicate check for thread-local storage
qualifier.
Tue Oct 22 05:52:54 GMT 2013 Olly Betts <[email protected]>
* python3/Makefile.am: Make sure docs subdirectory exists in builddir
before running $(RST2HTML) to fix build when srcdir != builddir.
Mon Oct 14 09:59:27 GMT 2013 Olly Betts <[email protected]>
* ruby/generate-rdoc-stubs: Skip internal classes.
Fri Oct 11 08:29:23 GMT 2013 Olly Betts <[email protected]>
* python3/docs/examples/: Update syntax of examples for Python3.
Fri Oct 11 07:37:59 GMT 2013 Olly Betts <[email protected]>
* python/docs/examples/simpleexpand.py: Use Pythonic iteration over
the ESet.
Fri Oct 11 05:50:45 GMT 2013 Olly Betts <[email protected]>
* python3/docs/index.rst: Strip trailing whitespace.
Fri Oct 11 05:14:21 GMT 2013 Olly Betts <[email protected]>
* configure.ac,python3/Makefile.am,python3/docs/.gitignore,
python3/docs/index.html,python3/docs/index.rst: Overhaul Python3
documentation and convert it to reStructured Text. (see #346)
Thu Oct 10 23:57:56 GMT 2013 Olly Betts <[email protected]>
* python3/python.i,python3/smoketest.py: Make xapian.version_string()
return a Unicode string. (see #346)
Thu Oct 10 23:47:18 GMT 2013 Olly Betts <[email protected]>
* python3/python.i,python3/pythontest.py: Make unserialise methods and
functions only accept bytes. (see #346)
Tue Oct 08 02:29:28 GMT 2013 Olly Betts <[email protected]>
* perl/generate-perl-exceptions: Use croak_sv() or ERRSV if defined.
Sun Oct 06 23:48:07 GMT 2013 Olly Betts <[email protected]>
* configure.ac: Don't prefer ruby1.8 to ruby when looking for a ruby
interpreter - these days it's more likely to ignore ruby 1.9 rather
than avoid picking ruby 1.6.
Fri Oct 04 00:32:38 GMT 2013 Olly Betts <[email protected]>
* python3/pythontest.py: Don't run postingsource testcase under
threads for now as it segfaults for unknown reasons.
Fri Oct 04 00:29:04 GMT 2013 Olly Betts <[email protected]>
* python3/pythontest.py,python3/smoketest.py,python3/util.i: Drop the
deprecated 'MSet.items' and 'ESet.items' for Python3 - people are
going to need to make code updates anyway, so keeping existing code
working unchanged isn't a realistic concern.
* python3/docs/index.html: Drop discussion of removed features.
Fri Oct 04 00:27:13 GMT 2013 Olly Betts <[email protected]>
* README: Document 3.2 as the minimum supported Python3 version, and
update the status to "mostly functional".
Thu Oct 03 23:51:26 GMT 2013 Olly Betts <[email protected]>
* configure.ac,python/,python3/: Provide bindings version in
xapian.__version__ as per PEP 396. (see #346)
Sat Sep 28 00:02:21 GMT 2013 Olly Betts <[email protected]>
* python3/pythontest.py: Fix test_postingsource testcase.
Fri Sep 27 23:37:28 GMT 2013 Olly Betts <[email protected]>
* python3/pythontest.py: Fix test_allterms_iter testcase.
Fri Sep 27 23:37:01 GMT 2013 Olly Betts <[email protected]>
* python3/extra.i: Fix ValueStreamIter.__next__().
Fri Sep 27 23:36:23 GMT 2013 Olly Betts <[email protected]>
* python3/extra.i: Correct comments for next() changes in Python3.
Fri Sep 27 23:28:47 GMT 2013 Olly Betts <[email protected]>
* python3/testsuite.py: Remove unnecessary next() helper from
testsuite.py.
Fri Sep 27 23:28:20 GMT 2013 Olly Betts <[email protected]>
* python3/extra.i: Fix LatLongCoordsIter.__next__().
Fri Sep 27 23:14:33 GMT 2013 Olly Betts <[email protected]>
* python/pythontest.py,python3/pythontest.py: Fix testcases which
check that non-random-access iterators which have moved on give
an exception if you try to use the old value - previously these
didn't actually test all the old values, only the last one.
Fri Sep 27 07:53:45 GMT 2013 Olly Betts <[email protected]>
* python3/smoketest.py,python3/util.i: smoketest.py now passes.
Fri Sep 27 04:23:54 GMT 2013 Olly Betts <[email protected]>
* python3/docs/examples/simplesearch.py,python3/python.i,
python3/pythontest.py,python3/smoketest.py: All methods returning
std::string now return 'bytes' in Python, except for
get_description()/__str__(). (see #346)
Wed Sep 25 02:50:39 GMT 2013 Olly Betts <[email protected]>
* php/smoketest.php: Reenable the FieldProcessor subclass test for PHP
5.4, as this one does work.
Tue Sep 24 10:00:05 GMT 2013 Olly Betts <[email protected]>
* .gitignore: Update for switch from gzip to xz.
Tue Sep 24 09:55:17 GMT 2013 Olly Betts <[email protected]>
* configure.ac,xapian-bindings.spec.in: Compress source tarballs with
xz instead of gzip.
Thu Sep 19 06:52:11 GMT 2013 Olly Betts <[email protected]>
* Makefile.am,configure.ac,python/,python3/.gitignore,
python3/Makefile.am,python3/docs/examples/,python3/docs/index.html,
python3/: Split python3 bindings into a separate subdirectory, to
make it simpler to handle differences between python2 and python3.
This also makes it easier to test both, as a tree can now be
configured for both at once.
Wed Sep 18 12:58:51 GMT 2013 Olly Betts <[email protected]>
* python/Makefile.am: Further updates for PEP 3147.
Wed Sep 18 12:50:00 GMT 2013 Olly Betts <[email protected]>
* python/util.i: Fix std::string input typemaps for Python 3.
(see #346)
Wed Sep 18 10:56:35 GMT 2013 Olly Betts <[email protected]>
* configure.ac,python/Makefile.am: Handle the PEP 3147 names which
.pyc and .pyo files use in newer Python 3 versions. (see #346)
Wed Sep 18 00:36:50 GMT 2013 Olly Betts <[email protected]>
* python/util.i: Rename next() to __next__() for Python 3 as iterators
need to have a __next__() method there. (see #346)
Mon Sep 16 12:00:41 GMT 2013 Olly Betts <[email protected]>
* perl/t/parser.t: Update for xapian-core change to always return
UTF-8 object descriptions. (see #620)
Mon Jul 15 12:10:18 GMT 2013 Aarsh Shah <[email protected]>
* csharp/Makefile.am,java/Makefile.am: Update for DPHWeight.
Sun Jul 14 07:07:42 GMT 2013 Aarsh Shah <[email protected]>
* csharp/Makefile.am,java/Makefile.am: Update for PL2Weight.