-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1590 lines (1295 loc) · 57.6 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
API ChangeLog
* Release 1.9.0 *
03-Nov-2020 Troy A. Griffitts <scribe@crosswire.org>
Added new compile option USECXX11TIME which will provide a default
SWLog::logTimedInformation impl using C++11 facilities
Added new compile options STRIPLOGD and STRIPLOGI which will compile
out engine calles to SWLog::logDebug and SWLog::logInformation
and SWLog::logTimedInformation for runtime optimization
Extended Cordova plugin to include SWModule::setEntry,
SWMgr::getPrefixPath
Isolated all File IO calls to FileMgr
Merged in Xiphos' Windows patch to FileMgr to allow full legal Unicode
range in file path names.
Improved TEI -> HTML output path
Completed camelCase of all public non-deprecated API methods
Added the concept of Utility Modules to engine which are intended to
assist clients in building a robust user experience but are not
intended for exposure to the end user in the same way as
traditional SWORD modules.
Added the concept of [Pref Abbrevs] to locale files to assist mobile
developers choose a localized abbreviation for Bible book
names.
Added facility to set timeouts for SWTransport classes
Many locale updates and new locales added
Improved support for many markup tags
Many bug fixes
Changes to promote safe multi-threaded use
Expanded examples
25-Jul-2020 Troy A. Griffitts <scribe@crosswire.org>
Added ZipCompress::unTarGZ to provide a library facility to untargz
a file on all supported platforms.
07-Jul-2020 Troy A. Griffitts <scribe@crosswire.org>
Renamed __[su][8,16,32,64] defines to SW_[su][8,16,32,64]
20-Apr-2020 Troy A. Griffitts <scribe@crosswire.org>
Extended StringMgr to include lowerUTF8, isUpper, isLower, isDigit,
isAlpha
Added personalization facility for cipher keys
10-Sep-2018 Troy A. Griffitts <scribe@crosswire.org>
Added intra-verse search support
01-Nov-2017 Troy A. Griffitts <scribe@crosswire.org>
Added bindings: Android and cordova
01-Sep-2017 Troy A. Griffitts <scribe@crosswire.org>
Adding French mapping data.
Patch submitted by domcox <dominique@corbex.org>
21-May-2017 Troy A. Griffitts <scribe@crosswire.org>
Added --with-icuregex option to use ICU regex engine
* Release 1.8.0 *
24-Apr-2017 Troy A. Griffitts <scribe@crosswire.org>
Branching 1.8.x
16-Apr-2016 Troy A. Griffitts <scribe@crosswire.org>
Added working --chapter --verse decrementors across Testament
Added handling of more odd double colon verse reference texts
Removed deprecated utility cipherraw; use mod2zmod w/ cipherkey
or osis2mod -c instead.
Added new tests to testsuite for mod2zmod and osis2mod with cipher
18-Dec-2015 Peter von Kaehne <refdoc@crosswire.org>
Added image and table handling to TEI latex
Added image handling to TEI RTF
18-Dec-2015 Peter von Kaehne <refdoc@crosswire.org>
Added image and table handling to TEI xhtml and htmlhref filters
contributed by Dominique Corbex <dominique.corbex@gmail.com>
15-Dec-2014 DM Smith <dmsmith@crosswire.org>
Fixed endless loop in osis2mod for some inputs.
15-Dec-2014 DM Smith <dmsmith@crosswire.org>
Added support for Psalm Book divisions using <div type=majorSection>
from GHellings
03-Dec-2014 Karl Kleinpaste <charcoal@users.sf.net>
Corrected anomalous OSIS highlighting output w/GHellings' patches in
src/modules/filters/osis{plain,xhtml}.cpp
12-Jul-2014 Костя Маслюк <kostyamaslyuk@gmail.com>
Versification mapping implementation and example at
examples/tasks/parallelbibles.cpp
27-Apr-2014 Troy A. Griffitts <scribe@crosswire.org>
Added C# bindings contributed by Daniel Hughes <trampster@gmail.com>
17-Mar-2014 Chris Little <chrislit@crosswire.org>
Added zVerse4, zText4, & zCom4 classes to support compressed text/
commentary modules with entry sizes > 64k
3-Mar-2014 Chris Little <chrislit@crosswire.org>
Added support for bzip2 (Burrows-Wheeler) module compression via libbz2
Added support for xz (LZMA2) module compression via liblzma
30-Dec-2013 Peter von Kaehne <refdoc@crosswire.org>
Added LaTeX output filters
* Release 1.7.0 *
5-Oct-2013 Troy A. Griffitts <scribe@crosswire.org>
Add a new Option filter, OSISReferenceLinks, based on work submitted
by "John Austin", which allows removal of references based on
a type/subtype combination. .conf usage is:
GlobalOptionFilter=OSISReferenceLinks|Option Name|Option Tip
|OSIS Reference Type|OSIS Reference SubType
|Default Value
e.g,
GlobalOptionFilter=OSISReferenceLinks|Reference Material Links
|Hide or show links in the Biblical text to study helps
|x-glossary||On
14-Aug-2013 Troy A. Griffitts <scribe@crosswire.org>
Added new version macros in swversion.h and removed
config.h as a packaged and included entity
2-Aug-2013 Chris Little <chrislit@crosswire.org>
Added basic bibliography method to SWModule
(mostly from refdoc's patch)
16-July-2013 Troy A. Griffitts <scribe@crosswire.org>
Many classes have had class and method names normalized, including:
VerseMgr renamed to VersificationMgr
SWKey
ListKey
SWModule
13-July-2013 Chris Little <chrislit@crosswire.org>
Added LXX & Orthodox versifications
13-July-2013 Troy A. Griffitts <scribe@crosswire.org>
InstallMgr FTP now has a 45 second timeout
11-July-2013 Troy A. Griffitts <scribe@crosswire.org>
SWIG bindings updated to build and work with autotools
8-Jul-2013 Chris Little <chrislit@crosswire.org>
Applied submitted UTF8ArabicPoints code
Plugged Bzip2Compress & XzCompress into the API, though these
remain clones of the ZipCompress class and will not be
supported in 1.7.0
6-July-2013 Jaak Ristioja <jaak@ristioja.ee>
InstallMgr HTTP transport, fix for buffer overrun in non-standard
Apache dir list output
29-Jun=2013 Chris Little <chrislit@crosswire.org>
Removed PLAINHTML and PLAINFootnotes filters
19-Jun-2013 Gregory S. Hellings <greg.hellings@gmail.com>
Introduced CMake options to specify exact install locations
of subcomponents
11-Jun-2013 Troy A. Griffitts <scribe@crosswire.org>
Changed SWBuf append methods to return *this, so they can be chained
Added a new method SWBuf::indexOf
New XHTML Filters based on HTMLHREF but now support:
tables, sub, and super elements, hi rend attribute for
overline of nom sac
better whitespace processing for:
block tags by supressing multiple vspace
poetry lines
10-Jun-2013 Chris Little <chrislit@crosswire.org>
Added basic OSISEnum & OSISXlit filters
Renamed OSISRuby to the more general OSISGlosses
7-Jun-2013 Troy A. Griffitts <scribe@crosswire.org>
Enhanced regex searches to return result which cross a single
verse boundaries
30-May-2013 Troy A. Griffitts <scribe@crosswire.org>
Generalized Transport interface from 'FTP' to 'Remote' to better
accommodate HTTP, SFTP, etc.
11-April-2013 Troy A. Griffitts <scribe@crosswire.org>
Verse parser updates, including:
Fixed parsing of Ps.V
Added parsing of special 'inscriptio' and 'subscriptio' entries
resolving to special Book 0:0 and Book 1:0
respectively
e.g., Matt.Inscr -> Matt.0.0; Matt.Subscrip -> Matt.1.0
Better handling of verse suffix, e.g., John.1.3b
Handle comma verses properly after range which spans chapters,
e.g., jn.1.1-2.5,9
12-Mar-2013 Troy A. Griffitts <scribe@crosswire.org>
More examples, including: show a chapter, verse range
24-Feb-2013 Troy A. Griffitts <scribe@crosswire.org>
Greatly improved navigation with intros and normalization turned
on/off
1-Feb-2013 Troy A. Griffitts <scribe@crosswire.org>
New .conf entries honored:
StrongsPadding=false, which turns off
logic to detect strongs numbers and add padding
CaseSensitiveKeys=true, which makes a lexicon case sensitive
29-Jan-2013 Jaak Ristioja <jaak@ristioja.ee>
Removed warnings in header files for unused variables
06-Jan-2013 Gregory S. Hellings <greg.hellings@gmail.com>
Added support to install from SFTP sources using username/password
authentication in places where cURL has SFTP support (no support
for public-key auth yet)
19-Dec-2012 Manfred Bergmann <manfred.bergmann@me.com>
Added ObjC wrappers for the SWORD filter classes. Mainly because in
Eloquent project it is not possible to access any of the plain
C++ SWORD stuff. Wrappers are necessary
Added FilterProvider and FilterProviderFactory. They have been
created to add the possibility for application to override
the default filters (render/strip). To add a custom
FilterProvider, subclass DefaultFilterProvider and override the
methods that are required to return other filter instances.
Then initialize the Factory with this provider
+[FilterProviderFactory initWithImpl:<your impl>]
07-Nov-2012 Chris Little <chrislit@crosswire.org>
Starting (very minimal) support for TEI in xml2gbs
Generalizing ruby as glosses (for use in non-Japanese texts or
even Japanese texts with non-ruby glosses)
14-Sep-2012 Troy A. Griffitts <scribe@crosswire.org>
Changed default log level to WARN from INFO
29-Aug-2012 Gregory S. Hellings <greg.hellings@gmail.com>
Swig bindings may now be built against shared or static libraries.
Cleaned up almost all gcc 4.7 warnings from the swig bindings and
eliminated errors which packagers had discovered.
Swig bindings are now installed by the normal 'make install' under
CMake
11-Jul-2012 Troy A. Griffitts <scribe@crosswire.org>
New Lucene index field for searching 'morph' (lemma@morphology)
21-Jun-2012 Peter von Kaehne <refdoc@crosswire.org>
Added Pohnpeian language locale
25-Apr-2012 Gregory S. Hellings <greg.hellings@gmail.com>
InstallMgr now supports HTTPS connections where cURL has support
for that transport
24-Mar-2012 DM Smith <dmsmith@crosswire.org>
osis2mod: Allow comments to be in osis document and to be stripped out.
From John Zaitseff
osis2mod: Allow div in header of osis document. From John Zaitseff
21-Feb-2012 Troy A. Griffitts <scribe@crosswire.org>
Added constants for module types:
SWMgr::MODTYPE_BIBLES, MODTYPE_COMMENTARIES, MODTYPE_LEXDICTS,
MODTYPE_GENBOOKS, MODTYPE_DAILYDEVOS
14-Feb-2012 Gregory S. Hellings <greg.hellings@gmail.com>
Added cross-compile support to CMake, including sample Toolchain files.
13-Feb-2012 Karl Kleinpaste <karl@kleinpaste.org>
Added ability for *HTML* wrappers to render n attribute from notes
30-Jan-2012 Manfred Bergmann <manfred.bergmann@me.com>
Update to Lion Project. All SWORD utils are now in Xcode project and can
be built from there. They are however prepared to be used from
with Eloquent
07-Dec-2011 Chris Little <chrislit@crosswire.org>
Removed SynodalP v11n from library
12-Nov-2011 DM Smith <dmsmith@crosswire.org>
osis2mod: re-added the preverse div markers
02-Nov-2011 Gregory S. Hellings <greg.hellings@gmail.com>
Improved handling of CLucene and included support for CLucene 2
29-Oct-2011 Troy A. Griffitts <scribe@crosswire.org>
Added RTFHTML parsing of rtf \\number codes to facilitate .conf files
Adjusted abuser detection in SwordOrb and made orbs cycle when max is
reached for an IP (probably a server using us as a service)
Added translate and InstallMgr functions to orb
29-Sep-2011 Troy A. Griffitts <scribe@crosswire.org>
Added sane parameter parsing to imp2ld
Added methods for utf8 / wchar conversion to help clucene
07-Aug-2011 Manfred Bergmann <manfred.bergmann@me.com>
Added new Lion Xcode project where the SWORD stuff is compiled in Xcode
project. Changed -setClass: and instead added a protocol
implementation based setting of configuration
ObjC: Re-added ppc archiecture for Xcode project
14-Jul-2011 Gregory S. Hellings <greg.hellings@gmail.com>
Added a sample Python script that demonstrates the bindings and compares
osisIDs in an XML file to known Versification schemes
10-Jul-2011 Manfred Bergmann <manfred.bergmann@me.com>
ObjC: Fix and simplification for -
(id)attributeValueForParsedLinkData:(NSDictionary *)data
withTextRenderType:(TextPullType)textType
10-Jul-2011 Manfred Bergmann <manfred.bergmann@me.com>
ObjC: Added option to retrieve texts for link data as rendered or
stripped.
Minor changes to SwordInstallSource and Controller.
Adaption of ModuleType "All" to modulesForType: method.
Added additional "All" enum ModuleType
Changed visibility of swordManager.
Added listModulesForType: method.
Added convenience constructor for SwordInstallSourceController.
SwordLocaleManager can be initialized with a given path to
locales.d. Swordbible decodeRef class method will now only pass
back values where not NULL was delivered.
16-Mar-2011 Peter von Kaehne <refdoc@crosswire.org>
Introducing localised keys to imp2vs.cpp
15-Mar-2011 Peter von Kaehne <refdoc@crosswire.org>
Faroese Locale
10-Jul-2011 Manfred Bergmann <manfred.bergmann@me.com>
Module names are stored as lower case string in SwordManagers module
cache. -moduleForName: now als uses a lower case string to pull
the module from the cache
* Release 1.6.2 *
18-Oct-2010 Troy A. Griffitts <scribe@crosswire.org>
Fixed parsing book names containing the letter 'f'
from Ben Morgan
Fixed imp2vs not flushing cache before exiting when
creating compressed modules
Fixed LZSS compression
14-Oct-2010 Troy A. Griffitts <scribe@crosswire.org>
Allow <hi> to be nested in any order in OSIS markup
Updates to allow hyphenated book names
15-Aug-2010 Gregory S. Hellings <greg.hellings@gmail.com>
Added a file to SWIG bindings to enable compilation
of Perl bindings, which lacked stl_multimap.i
Added support for building Python and Perl with CMake
Updated demo Perl script to reflect new API changes
25-Jun-2010 Troy A. Griffitts <scribe@crosswire.org>
Added CMake build system, contributed by GHellings
29-Mar-2010 Troy A. Griffitts <scribe@crosswire.org>
Set verse to 1 when changing chapter and book in VerseKey
Fixed a bug where book designations ending in 'f' would
trigger the verse+'f'/'ff' feature.
Fixed curl bug which seems to hold on to progress
object even after scope of data retrival
* Release 1.6.1 *
01-Jan-2010 Troy A. Griffitts <scribe@crosswire.org>
Added locales.d/locales.conf - a special locale which
can be queried for localized and English lang names
New supported v11n systems: german kjva leningrad luther
mt nrsva nrsv synodal vulg <chrislit@crosswire.org>
02-Dec-2009 Troy A. Griffitts <scribe@crosswire.org>
Updated installmgr util to allow multiple
commands and update dl progress
Added progress reporting to FtpLib transport
Added ability to cancel during file transport,
per Eeli's suggestion
Increased clucene buffer size - mwtalbert
On clucene index creation, error out on no
write perms - mwtalbert
12-Oct-2009 Troy A. Griffitts <scribe@crosswire.org>
Added initial impl for CurlHTTPTransport submitted
by Nic Carter <niccarter@mac.com>
Added initial Android ifdefs to get things compiling
under the Android NDK
Added bindings/java-jni for Android development
09-Aug-2009 Troy A. Griffitts <scribe@crosswire.org>
Added checks for Hebrew and Arabic when stripping
for searching
* Release 1.6.0 *
14-May-2009 Troy A. Griffitts <scribe@crosswire.org>
General cleanup and prep for release
04-May-2009 Troy A. Griffitts <scribe@crosswire.org>
Added ability for (SWBuf("xxx") == (const char *)0) to
return false;
Added OSIS Header logic to accept:
<div subType="x-preverse" sID="xyz"/>
Added initial set of v11n schemes (Chris Little):
KJV, Leningrad, MT, KJVA, NRSV, NRSVA
12-Apr-2009 Troy A. Griffitts <scribe@crosswire.org>
Added '.' feature for entryAttrib search, e.g,
Word//Lemma./G932/ will find in Lemma, Lemma.1, etc.
Added LocalePath feature in sword.conf
06-Apr-2009 Joachim A. <jansorg@crosswire.org>
Added Maltese bookname translation prepared by C. S.
30-Mar-2009 Ben Morgan
Added new methods to SWModule:
bool isLinked(SWKey *k1, SWKey *k2)
- are two entries linked
bool hasEntry(SWKey *k1)
- does an entry for the given key exist?
Added new methods to SWLD:
long getEntryCount()
- number of entries in the dictionary
getKeyForEntry(long entry)
- get the key for the nth entry
getEntryForKey(const char *key)
- get the index for the given key
Updated strongsPad to work with keys with a prefix of G or H
Fixed a bug in SWMgr which would load certain files in the
mods.d directory which shouldn't have been loaded.
Fix for divineName with non-ascii text in OSISHTMLHREF filter
07-Feb-2009 Troy A. Griffitts <scribe@crosswire.org>
Added fallback checks for OS specific module
locations:
$ALLUSERSPROFILE/Application Data/sword
~ additionally looked for at:
$HOMEDRIVE$HOMEPATH/Application Data
added ~/sword (note the absense of '.')
26-Dec-2008 Troy A. Griffitts <scribe@crosswire.org>
Added list support in OSIS HTML conversion (ghellings)
23-Dec-2008 Troy A. Griffitts <scribe@crosswire.org>
Added ignore of comment lines starting with '#'
in SWConfig processing
Added requirement to call setUserDisclaimerConfirmed
in InstallMgr before remote functions operate
Added refreshRemoteSourceConfiguration to sync a
local InstallMgr.conf with a master remote list
Added ability for InstallMgr to use username/passwd
supplied by either .conf or globally in c-tor
Added VerseMgr to abstract versification scheme
functionality
Included 1 versification scheme: KJV
Added param on SWBuf::stripPrefix to allow use more
like a safe string tokenizer to replace strtok
16-Dec-2008 Joachim A. <jansorg@crosswire.org>
Added two Chinese bookname translations provided by
F. Lee
03-Sep-2008 Troy A. Griffitts <scribe@crosswire.org>
Added getOSISRefRangeText to SWKey- not yetimplemented
ideally or even correctly for all SWKey types
* Release 1.5.11 *
14-May-2008 Troy A. Griffitts <scribe@crosswire.org>
Added ability for lexicon drivers to accept
####![a-z] as strong number.
13-May-2008 Chris Little <chrislit@crosswire.org>
Added basic TEIRTF filters
Added tei2mod utility
Added Japanese locale from http://bible.50webs.org/en/
Applied Ben Morgan's TEIHTMLHREF filter
Added TEIHTMLHREF filter to BCB5 project
11-May-2008 Troy A. Griffitts <scribe@crosswire.org>
Applied patch to better handle x-refs in notes
-Ben Morgan <benpmorgan at gmail dot com>
Applied patch to better output OSIS in plaintext
-Ben Morgan <benpmorgan at gmail dot com>
Updated rawstr and rawstr4 to work consistently
with buffer sizes
Updated French locales and added french abbrev
locales from Dominique Corbex
<dominique dot corbex at gmail dot com>
Updated Farsi locales from Peter von Kaehne
<refdoc at gmx dot net>
16-Oct-2007 Troy A. Griffitts <scribe@crosswire.org>
Implemented a basic TreeKeyIdx::remove() method
* Release 1.5.10 *
16-Oct-2007 Troy A. Griffitts <scribe@crosswire.org>
Added new vi-utf8.conf Vietnamese locale submitted
by Daniel Owens <dhowens at pmbx dot net>
11-Oct-2007 Troy A. Griffitts <scribe@crosswire.org>
Added new FileMgr::openFileReadOnly to help centralize
all file io details
11-Oct-2007 Troy A. Griffitts <scribe@crosswire.org>
Added new RawText4 and RawCom4 drivers which allow
for a 4 byte record size. Patch submitted by
Doug Rintoul <doug_rintoul at sil dot org>
6-Oct-2007 Troy A. Griffitts <scribe@crosswire.org>
Added SWBuf::stripPrefix method which works nice
for returning and stripping stuff like
'lemma' from "lemma:G1234"
Added part params to XMLTag::setAttribute
Changed OSISStrongs to only strip lemma parts with
strong prefix
Applied fix for newer version of gcc which errors if
create perms are not passed to ::open
(Deji Akingunola <dakingun at gmail dot com>)
Modified OSISLemma to only strip lemma parts with
lemma.* prefix or no prefix
Added UTF-8 processing for case insensitive unindexed
searching
13-Sep-2007 Troy A. Griffitts <scribe@crosswire.org>
Added InstallMgr::getModuleStatus to return a list
of differences between the modules of two SWMgr
objects
03-Mar-2007 Joachim Ansorg <jansorg@crosswire.org>
Added osis morph segments filter include file to the dist
Fixed wrong stricmp in SWObject
10-Dec-2006 Troy A. Griffitts <scribe@crosswire.org>
Added example: examples/cmdline/verserangeparse.cpp
2-Dec-2006 Troy A. Griffitts <scribe@crosswire.org>
Added example: examples/cmdline/listoptions.cpp
Added entryAttributes processing for morph segs
23-Nov-2006 Daniel Glassey <dglassey@crosswire.org>
Use acx_clucene.m4 from CLucene contribs to detect CLucene
apply Debian patch for flatapi for 64-bit portability
20-Nov-2006 Troy A. Griffitts <scribe@crosswire.org>
Moved treekey and genbook tests to utilities
Finished first stable version of rewrite of imp2gbs
Fixed bug in treekey where didn't break on found sibling
Added .trim to localName segments of genbook path,
e.g. /this / is/a/test/ - all spaces will be removed
Added recognition of additional greek accent ~
in UTF8GreekAccents filter
Fixed bug in RawGenBook::setText where default size
is < 0, not false
Changed lucene indexing to actually index the key field. This
allows searching within key field (e.g. key:word)
Fixed divineName logic
Fixed & handling
* Release 1.5.9 *
21-Sep-2006 Troy A. Griffitts <scribe@crosswire.org>
Clean up and package for 1.5.9
Added Thai Unicode locale coutesy of
Adrian Korten <adrian_korten@sil.org>
29-Aug-2006 Troy A. Griffitts <scribe@crosswire.org>
Added recognition for the sysConfig parameter in SWMgr c-tor
(allow passing path to sword.conf to use for config)
Updated CORBA server to allow option -sysConf /path/sword.conf
16-Aug-2006 Troy A. Griffitts <scribe@crosswire.org>
Added new module lookup options:
./sword.conf
../library/mods.d
Added fix to preserve markup in headings (charcoal)
Fixed non-UTF8 builds (thanks berkana)
1-Aug-2006 DM Smith <dmsmith@crosswire.org>
Fixed divineName bug
Updated q handling to use quote stack
Update to fix RLT
Fixed a bug in osis2mod that duplicated a chapter title in the verse
Normalize whitespace in xml tags
Updated support for more OSIS markup, including q marker
21-May-2006 Troy A. Griffitts <scribe@crosswire.org>
Added SWBuf::startsWith, endsWith
Added entry attribute exposure of multipart words
Added beginnings of VerseKey subclass which uses TreeKey
25-Apr-2006 Troy A. Griffitts <scribe@crosswire.org>
Changed SWModule::search to fill result set up with more
specialized SWKey objects, instead of always SWKey
Changed SWModule::search to use CLucene better for
non-VerseKey modules
Added basic proximity searching with CLucene searches
Added ListKey::sort()
14-Apr-2006 Troy A. Griffitts <scribe@crosswire.org>
Added EntryAttribute support to SWIG bindings (from mreimer)
29-Mar-2006 Joachim Ansorg <jansorg@crosswire.org>
Fixed lucene code to work with 0.9.x (tested with 0.9.10)
31-Jan-2006 Troy A. Griffitts <scribe@crosswire.org>
Added support for OSIS variants
Added .NET support and update to swig bindings (from lefticus)
28-Nov-2005 Troy A. Griffitts <scribe@crosswire.org>
Fixed ICUStringMgr toUpper method
19-Nov-2005 Troy A. Griffitts <scribe@crosswire.org>
Cleaned up headers to remove unnecessary includes
26-Oct-2005 Martin Gruner <mgruner@crosswire.org>
Added Arabic locale (from Mina Magdy).
17-Oct-2005 Joachim Ansorg <jansorg@crosswire.org>
Fixed the dutch locale file
21-Sep-2005 Martin Gruner <mgruner@crosswire.org>
Added Hebrew locale for both Tanach (OT) and
Berit Chadashah (NT).
* Release 1.5.8 *
27-May-2005 Troy A. Griffitts <scribe@crosswire.org>
Clean up and package for 1.5.8
16-May-2005 Troy A. Griffitts <scribe@crosswire.org>
Changed Strongs to Lemma and added LemmaClass for
EntryAttributes
Made OSIS, GBF, and ThML filters parse lemma and
morph
2-May-2005 Troy A. Griffitts <scribe@crosswire.org>
Removed many tools files and added them to
the sword-tools repository
Removed the need for many #if's throughout the code
Added seek, read, write, O_*, S_* to filemgr.cpp
11-Apr-2005 Troy A. Griffitts <scribe@crosswire.org>
Cleaned up unused files in preparation for release
Updated pkg-config to report proper required libs
1-Jan-2005 Troy A. Griffitts <scribe@crosswire.org>
Extended InstallMgr routines to recurse directories
Cleaned up InstallMgr code
Created FTPTransport base class used by InstallMgr
to allow for any FTP routines to be plugged
into InstallMgr by overriding a new
createFTPTransport method to return subclass
(Joachim's good idea)
Moved all CURL and FTPLib code into FTPTransport
subclasses CURLFTPTransport and FTPLibFTPTransport
classes respectively
Moved status reporting methods from InstallMgr to
StatusReporter in FTPTransport ftptrans.(h|cpp)
Added CopyDir, removeDir, and isDirectory methods
to FileMgr
Added SWMgr::deleteModule to allow deleting a
loaded module from an SWMgr class-- needed
before InstallMgr deletes files involved
so after destruction of SWModule, all files
will be closes (mostly for Windows, but good
on any platform).
13-Aug-2004 Troy A. Griffitts <scribe@crosswire.org>
Migrated to SVN
11-May-2004 Troy A. Griffitts <scribe@crosswire.org>
Updated to support ARM cross-compile, and that
without errors
03-Apr-2004 Will Thimbleby <will@thimbleby.net>
Added SWBuf method setFormatted()
Altered all remaining uses of char[127]
for file names to use SWBufs.
06-Jan-2003 Troy A. Griffitts <scribe@crosswire.org>
Changed system[Log|File|Locale]Mgr to
*Mgr *[get|set]System*Mgr() per Daniel Glassey's
discovery of potential problems from order of
initializing statics.
Added new prefix recognition for OSIS lemma prefix
"strong:"
* Release 1.5.7 *
28-Dec-2003 Troy A. Griffitts <scribe@crosswire.org>
Updated many filters
Split cvs, removing apps
Updated OSIS importer
28-Aug-2003 Troy A. Griffitts <scribe@crosswire.org>
Abstracted the search interface from SWModule
Added experimental implementation of fast
search framework to zText using
clucene
* Release 1.5.6 *
26-Aug-2003 Troy A. Griffitts <scribe@crosswire.org>
Packaged up 1.5.6
Updated CORBA services to expose a little more
functionality for the OSIS webapp
12-Aug-2003 Troy A. Griffitts <scribe@crosswire.org>
Added Enciphering code that works with SWBuf
Fixed appendFormatted to re-init var_args
Other small fixes to build on Opteron 64-bit
07-Jul-2003 Troy A. Griffitts <scribe@crosswire.org>
Added enough functionality to remotely install
into installmgr, but Daniel Glassey needs
to fix the linux autobuild stuff :)
Added SWOptionFilter and made most option filters
extent this class.
26-Jun-2003 Troy A. Griffitts <scribe@crosswire.org>
Removed all std::string references from API and
mostly replaced with SWBuf
Added int max param to SWBuf::append
Added some file copy functions to FileMgr
Moved some more install stuff to installmgr
18-Jun-2003 Troy A. Griffitts <scribe@crosswire.org>
Joachim added OSISFootnotes. Added entryAttributes
parsing in OSISFootnotes
Added = operator and empty constructor to XMLTag
Fixed OSISHeadings to passthru non x-preverse note
bodies
10-Jun-2003 Troy A. Griffitts <scribe@crosswire.org>
Added tests/testsuite for building a good set
of regression tests
Fixed VerseKey parsing of "1. book" and osisRefs
06-Jun-2003 Joachim Ansorg <junkmail@joachim.ansorgs.de>
Implemented encodeURL() function in utilweb.cpp
Converted ThMLHTML filter to XMLTag, removed handling
of scripRefs because this shouldn't be done
in FMT_HTML
Converted ThMLHTMLHREF to XMLTag. Fixed some things.
Simplified some small things in filters, nothing big.
01-Jun-2003 Joachim Ansorg <junkmail@joachim.ansorgs.de>
Added WEBIF filters, based on HTMLHREF filters.
Added new utilweb stuff for working with urls etc.
Fixed SWORD_NAMESPACE_START and SWORD_NAMESPACE_END
in defs.h if NO_SWORD_NAMESPACE was defined
30-May-2003 Troy A. Griffitts <scribe@crosswire.org>
Added utilities/installmgr to call some of the
basic functionality from engine install
routines.
Added removeModule to installmgr.cpp, copied from
Windows InstallMgr.
26-May-2003 Troy A. Griffitts <scribe@crosswire.org>
Added first cut of osis2mod using the ESV as a
basic template. Works with VerseKey mods
only and doesn't capture all data.
Improved verse reference parsing to include proper
parsing of osisRef attributes and other
misc. anomalies.
Returned canon.h back to previous state to
avoid locale key mismatches
25-May-2003 Troy A. Griffitts <scribe@crosswire.org>
Added utilfuns/utilxml.cpp and test/xmltest which
include basic xml utility classes
Added comparison operators to SWBuf so it plays
nicely with stl containers
19-Feb-2003 Troy A. Griffitts <scribe@crosswire.org>
Added utilfuns/swbuf.cpp and tests/swbuftest
Fixed make system to include osisrtf and osisplain
Started HUGE task of moving all char **buf over
to SWBuf &buf
06-Feb-2003 Joachim Ansorg <joachim@ansorgs.de>
Added ro.conf (Romanian) in locales.d
14-Jan-2003 Joachim Ansorg <joachim@ansorgs.de>
Added strip filter for the red letter words so users can
turn it off
Worked a bit on locales.d/de.conf to include some abbrevs
10-Jan-2003 Terry Biggs <tbiggs@infinet.com>
Added new osisstrongs and osismorph support to gbfhtml*.
08-Jan-2003 Troy A. Griffitts <scribe@crosswire.org>
Added new osisstrongs and osismorph option filters.
Hacked gbfrtf to support, for now:
the osis <w> tag,
Removed OSIS <note>...</note>,
Removed any empty strongs tags for the article.
19-Dec-2002 Joachim Ansorg <joachim@ansorgs.de>
Removed old russian book locale file, because it wasn't
working in Linux AND Windows
Added book locale files (cp1251 and koi8-r) submitted by
Pavlo Bohmat bohm@ukr.net to support Windows
and Linux.
30-Nov-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Finnish locale files contributed by Tero
Favorin <tero at favorin dot com>
27-Nov-2002 Joachim Ansorg <joachim@ansorgs.de>
Worked on Swig bindings. They work now with latest CVS.
25-Nov-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Chris' ThMLVariants option filter to SWMgr
21-Nov-2002 Troy A. Griffitts <scribe@crosswire.org>
Added support to ListKey to test for inclusion in
set. eg. listKey.setText("mat 2:2") will set
listKey.Error() to true if Matthew 2:2 is not
in the listkey set. listKey will also be set
to the correct subKey and position if it IS
in the set.
09-Nov-2002 Troy A. Griffitts <scribe@crosswire.org>
Updated ICU headers and Thai transliterator per
Steven Loomis' recommendations.
29-Oct-2002 Troy A. Griffitts <scribe@crosswire.org>
Added SWModule *SWMgr::getModule(const char *modName);
Added Terry Biggs' patch to htmlref filters to
more consistently deal with strongs numbers
23-Oct-2002 Daniel Glassey <dglassey@crosswire.org>
Some base work for installmgr on classes to
manage mods.d
* Release 1.5.5 *
22-Oct-2002 Troy A. Griffitts <scribe@crosswire.org>
Updated hu locale submitted from Mentler Gyula
Fixed bug in Book parsing that took first matching
book, not best matching book.
Added VCL autoconf/automake files and updated to
compile on gcc 3.2
21-Oct-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed ListKey bugs dealing with TOP and BOTTOM and
added at least an attempt to position the
current element key on ListKey::setText
20-Oct-2002 Troy A. Griffitts <scribe@crosswire.org>
Added optimizations for ListKey persistent keys
in VerseKey drivers
09-Oct-2002 Daniel Glassey <dglassey@crosswire.org>
Add debian directory so you can build debs from cvs
* Release 1.5.4a *
07-Oct-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed rawFilter bug where entrySize was being passed
instead of maxBufferSize. This problem caused
a number of problems with the engine.
Applied a few of Franklin Bratcher's critical patches
to diatheke.
01-Oct-2002 Daniel Glassey <dglassey@crosswire.org>
Work on sword swig perl binding
Change sword to use a sword namespace
Fix to build with gcc3.2 again after yesterday
30-Sep-2002 Daniel Glassey <dglassey@crosswire.org>
Remove using namespace std from all headers
28-Sep-2002 Troy A. Griffitts <scribe@crosswire.org>
Added SWModule::Index and SWCom and SWText impls
* Release 1.5.4 *
25-Sep-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed zverse zstr zcom ztext zld to work with cipher
Added cipher key to mod2zmod
27-Aug-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Nikolay Igotti's logic for improved non-western
locale functionality
Fixed mod2zmod to work properly with headings
Fixed cheatah to allow heading texts like 'Mat 0:0'
08-Aug-2002 Troy A. Griffitts <scribe@crosswire.org>
Added support for new entry in /etc/sword.conf
[Install]
AugmentPath=/where/ever
multiple entries can exist.
31-Jul-2002 Daniel Glassey <dglassey@crosswire.org>
Minor change to use iostream not iostream.h (more gcc3)
31-Jul-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed FileMgr::trunc if trunc should be empty was
leaving a 1 byte (null) file, instead of empty.
30-Jul-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed zLD link bug where resolving incorrectly
skipped IDXENTRYSIZE instead of 6 ("@LINK ").
Fixed RawLD link errors.
Allocate buffer for RawStr* drivers in readtext
to allow realloc if link
29-Jul-2002 Victor Porton <porton@narod.ru>
Fixed RawLD and RawLD4 drivers not reporting errors in
getRawEntry()
28-Jul-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Gregor Anzelj's Slovenian (sl.conf) locale.
27-Jul-2002 Troy A. Griffitts <scribe@crosswire.org>
lex/dict drivers use new toupperstr_utf8 to allow
keys to be encoded in utf8 (hopefully will
allow cedict to be built/work correctly.
Added toupperstr_utf8 to utilstr.cpp
Make all operators have real name methods
Isolated SWModule operators in define
Fixed RawLD and RawLD4 drivers where there was
a blank entry created at the beginning
Added test lextest
Consolidated setPosition for lexicons in SWLD
16-Jul-2002 Daniel Glassey <dglassey@crosswire.org>
utf8transliterator now loads translators from local
sword ICU data on demand
SWMgr loads a UTF8Transliterator filter along with
other filters on Load
11-Jul-2002 Daniel Glassey <dglassey@crosswire.org>
simple fixes to allow compiling with gcc 3.1
rename gettext to readtext as unobtrusively as
possible.
fix BGreek_Greek trans to work with icu2.1
add SWMgr::isICU for apps to check if ICU stuff is
available
10-Jul-2002 Daniel Glassey <dglassey@crosswire.org>
Initial support for using sword transliterators
with offical ICU
24-Jun-2002 Troy A. Griffitts <scribe@crosswire.org>
Added a few english abbrevs to better parse BW exported
texts.
Added Error() raised on improperly parsed VerseKey
text.
22-Jun-2002 Daniel Glassey <dglassey@crosswire.org>
Fixes to allow compiling with gcc3
add configure support to libVCL and change X!/installmgr
to build it automatically
remove --enable-vcl from core sword
13-Jun-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed Module heading bug
Fixed SWConfig += bug again
Fixed SWModule size logic when getEntrySize returns -1
06-Jun-2002 Troy A. Griffitts <scribe@crosswire.org>
Fixed SWConfig += bug
Added Efata's Indonesian locale
09-Jun-2002 Joachim Ansorg <jansorg@crosswire.org>
Added Perl bindings by J. Kaiser to the CVS
06-Jun-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Dominique Corbex' fr locale updates
Added new resultBuffer protected member to SWBasicFilter
04-Apr-2002 Troy A. Griffitts <scribe@crosswire.org>
Added VerseKey::getOSISRef()
Added the beginnings of ThMLOSIS filter
02-Apr-2002 Troy A. Griffitts <scribe@crosswire.org>
Added gsoap bindings and test client.
Added gbfstrongs parsing of entry attributes
30-Mar-2002 Troy A. Griffitts <scribe@crosswire.org>
Added mod2imp to export a sword module in 'imp'
format
Better entry attribute parsing in greekdef* and
thmlstrongs*
22-Mar-2002 Troy A. Griffitts <scribe@crosswire.org>
Added Saulo Rodrigues e Silva's <saulo@jatai.ufg.br>
locale for pt_BR
Added entry attributes for Thayer and ThMLStrongs