-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
3869 lines (2397 loc) · 104 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
2009-09-17 05:30 golda
* lib/CustomOutputTool.pm: Include files before ReplaceVars so we
can use variables in the include files
2009-04-23 00:46 golda
* lib/: CustomOutputTool.pm, wgAgent.pm: Reduced timeout from
default 180 secs to 5 secs for wgAgent.pm, to speed up spidering by
skipping slow sites.
2008-10-28 22:23 golda
* cgi-bin/webglimpse.cgi: wgall.html using QS_filter was broken by
a security enhancement, now make sure to allow '/' char in the
filter input (in order to search specific directories)
2008-10-28 22:19 golda
* templates/wgreindex: remove inoperative -C switch on glimpseindex
2008-10-28 22:19 golda
* lib/CommandWeb.pm: Correct template replacement variable
characters
2008-08-16 00:12 golda
* cgi-bin/: mfs.cgi, wgarcmin.cgi: Didn't we have -T on these?
Added now. Will check back archives.
2008-08-15 23:46 golda
* cgi-bin/: wrrepos.cgi, wrsearch.cgi: Added -T switch!
2008-08-05 03:09 golda
* lib/wgHeader.pm: Update version
2008-08-05 02:48 golda
* lib/CommandWeb.pm: Allow ':' in variable names so that we can use
ModuleName::FunctionName type names. Also add subroutines from
Abra project so the Webglimpse version of ComamdnWeb is compatible
with the Abra version.
2008-08-05 02:46 golda
* lib/CustomOutputTool.pm: fix getting eval() of external
admin-defined module to evaluate properly
2008-08-05 02:33 golda
* lib/CustomOutputTool.pm: minor syntax change
2008-07-23 00:04 golda
* lib/RankHits.pm: skip blank lines in config file
2008-06-18 04:34 golda
* templates/wgoutput.cfg: Added HOOK variable - see files for docs
2008-06-18 04:34 golda
* lib/CustomOutputTool.pm: Added two parameters to makeNewQuery in
order to preserve autosyntax setting
Also added new output variable HOOK for interfacing with external
modules. This allows insertion of externally generated output
anywhere in the results page, using the query, link of each hit
result and other results variables.
2008-06-18 04:33 golda
* cgi-bin/webglimpse.cgi: Added two parameters to makeNewQuery in
order to preserve autosyntax setting
2008-06-18 04:32 golda
* wginstall.pl: Normally we no longer need html2txt and httpget
compiled C programs, avoid including by default so as not to get
compiler warnings. The makefiles are so old for these two bits
that they generate conflicts on most modern systems. Instead we
use LWP for retrieval and htuml2txt.pl for prefiltering html.
2008-06-06 05:01 golda
* cgi-bin/webglimpse.cgi, lib/CustomOutputTool.pm: keep autosyntax
settings in new query box
2008-02-29 16:23 golda
* cgi-bin/webglimpse.cgi: remove leading comments unless in debug
mode
2008-01-27 23:24 golda
* makenh: normalize links to remove trailing '#top' as otherwise
those may be redundant links actually we should probably remove any
'#stuff' from the end
2008-01-03 03:52 golda
* lib/wgHeader.pm: update version
2008-01-03 03:49 golda
* lib/URL.pl: Add URI->query when assembling a URI using the URI
module
2008-01-03 03:49 golda
* makenh: Use cpan module URI->abs() function instead of assembing
the uri parts ourselves (we were chopping off the query when using
the URI module)
2007-12-02 06:57 golda
* cgi-bin/webglimpse.cgi: move configurable variables to top and
add comments. Need to be configured for GoodURLs and Static Search
Pages
2007-12-01 09:05 golda
* cgi-bin/webglimpse.cgi: Enable Good URLs even without ability to
write static search pages
2007-11-30 13:55 golda
* templates/: , html, er.pl, Msgs.pm, wgall.html, wgany.html,
wgindex.html, wgindex.html.tmpl: webglimpse.org ->webglimpse.net in
all template files
2007-11-29 06:07 golda
* wginstall.pl: Corrected behaviour on finding an old version of
glimpse - it wasn't giving the user a chance to override the
location
2007-11-25 05:22 golda
* docs/: TOC.htm, contents.htm, howtos.htm, troubleshooting.htm:
Change all references from webglimpse.org -> webglimpse.net
2007-11-25 05:22 golda
* wginstall.pl: Removed unnecessary warnings about not finding
wgconvert. We don't need it anyway and the warnings were highly
annoying. --GV
2007-10-09 12:44 golda
* cgi-bin/webglimpse.cgi: Add support for generating static web
pages from search result sets. This can greatly increase the
indexable content of your site, and exposes the intelligence of
your ranking algorithms in a way that Google can find.
2007-10-09 12:42 golda
* lib/SqlMergeConf.pm: add ability to search text dump of SQL table
for approximate matches. This is much faster and also more
flexible than doing a "field LIKE '%string%'" search in mysql. the
text dump should be prepared ahead of time and indexed with
glimpseindex
2007-10-09 12:40 golda
* lib/htuml2txt.pl: skip inline css
2007-10-09 12:39 golda
* lib/wgHeader.pm: Added STATIC_SEARCH variables for optional
generation of static search results pages
2007-10-09 12:38 golda
* makenh: Add security check to make sure we only remove our own
.remote.old directory
2007-10-09 12:22 golda
* lib/SqlMerge.pm: Added templates for customizable output routines
for SQL data
2007-10-09 12:02 golda
* lib/RankHits.pm: Added $HasExactMatch variable to allow result
weighting when an exact match is present to the original query
(which may have been searched as an ANDed combination of keywords)
2007-04-27 03:11 golda
* cgi-bin/webglimpse.cgi: Separate out some of the initial output
so that we can insert SQL results in an appropriate place
2007-04-27 03:11 golda
* lib/SqlMergeConf.pm: warn user to backup changes
2007-04-27 03:10 golda
* lib/: CustomOutputTool.pm, SqlMerge.pm, SqlMergeConf.pm: Fixes to
SQL results system - working now at http://btucson.com/
2007-04-24 23:10 golda
* lib/: SqlMerge.pm, SqlMergeConf.pm: New modules for merging SQL
results with full text search
2007-04-24 23:10 golda
* docs/: contents.htm, install.htm, install4.htm: Remove references
to FTP or cPanel installs - we are now ssh only
2007-04-24 23:09 golda
* cgi-bin/webglimpse.cgi: Adding hooks to call SQL queries
2007-04-24 23:09 golda
* wginstall.pl: Added new Sql modules
2007-03-30 03:29 golda
* makenh: Don't store large FILELINKS hash unless we need it for
making neighborhoods (neighborhoods are off by default)
2007-03-27 08:35 golda
* makenh: don't splice a temporary array when we just want to skip
a line! geez!
2007-03-22 01:09 golda
* lib/: URL.pl, wgSiteConf.pm: Fix for undefined scheme URI's, use
eval first to avoid fatal errors (necessary now we are using URI
from cpan if available)
2007-03-22 01:08 golda
* cgi-bin/webglimpse.cgi: Fix for multiple-archive search. Use the
VALUE of archid_N not just the 'N'
2007-03-22 01:07 golda
* makenh: Provide option to tie large hashes to DBM files
2007-03-15 18:16 golda
* lib/: htfilter.pl, htuml2txt.pl: Fix problem where <BASE HREF..>
tags not preserved correctly after filtering
2007-03-14 21:46 golda
* lib/URL.pl: Use URI module from cpan if its available. If not,
keep our fallback old url-parsing stuff.
2007-01-23 22:45 golda
* lib/wgAgent.pm: Don't 'use' after 'require' - just note that we
found the module
2006-12-04 09:28 dkreil
* BibGlimpse.SETUP: fixed permission setting in BibGlimpse.SETUP
[TT]
2006-12-01 14:01 dkreil
* BibGlimpse.README: [no log message]
2006-12-01 13:56 dkreil
* BibGlimpse.README, BibGlimpse.SETUP: Renamed BibGlimpse.INSTALL
to BibGlimpse.SETUP [TT]
2006-12-01 13:47 dkreil
* BibGlimpse.README: BibGlimpse install script [TT]
2006-11-30 07:35 dkreil
* BibGlimpse.README: [no log message]
2006-11-21 01:13 golda
* lib/wgHeader.pm: version #
2006-11-21 01:13 golda
* cgi-bin/webglimpse.cgi: fix for google analytics solution
w/security
2006-11-20 08:57 dkreil
* lib/wrRepos.pm: [no log message]
2006-11-20 08:13 dkreil
* cgi-bin/: wrrepos.cgi, wrsearch.cgi: [no log message]
2006-11-13 10:32 dkreil
* templates/wrwgreindex: abras are only removed if have really
become redundant after reindexing, ie. if there is no more
corresponding .glimpse_filenames entry!
2006-11-13 10:23 dkreil
* templates/wrwgreindex: [no log message]
2006-11-10 06:35 dkreil
* wrREADME: removed the old file, because of renaming to
Bibglimpse.README [TT]
2006-11-10 05:39 dkreil
* wginstall.pl: fixed a parsing bug in wginstall.pl
2006-11-09 12:41 dkreil
* lib/: limpse.README, stall.pl, bin/wrrepos.cgi, bin/wrsearch.cgi,
wrRepos.pm, wrSearchterms.pm: WebRepository
2006-10-24 22:02 golda
* lib/ResultCache.pm: close the pointer file explicitly
2006-10-11 08:26 dkreil
* wginstall.pl, wrREADME, cgi-bin/wrrepos.cgi, docs/install4.htm,
lib/CustomOutputTool.pm, lib/medlars2bib.pl, lib/wgArch.pm,
lib/wgHeader.pm, lib/wrHygiene.sh, lib/wrMedline.pl,
lib/wrRepos.pm, lib/wrSearchterms.pm, lib/wrusexpdf.sh,
templates/wrwgreindex: WebRepository, initial code import [TT]
2006-10-02 23:36 golda
* lib/: bin/webglimpse.cgi, CustomOutputTool.pm, wgHeader.pm:
eliminate pathinfo variable from makeNextHits, use ID instead
2006-09-30 21:21 golda
* cgi-bin/webglimpse.cgi: Eliminate possible control chars from
(deprecated) 'pathinfo' variable.
2006-09-17 22:30 golda
* lib/CustomOutputTool.pm: add my
2006-09-17 22:23 golda
* lib/CustomOutputTool.pm: Additional sanitization for output
variables to prevent XSS/HTML injection
2006-09-13 22:12 golda
* lib/: wgArch.pm, wgHeader.pm: Support spaces in values for
archive variables
2006-09-13 22:11 golda
* lib/RankHits.pm: Fix off-by-one error that missed keywords at the
end of a line when requiring 'Within X words' criteria
2006-08-18 03:49 golda
* makenh: Skip links starting with mailto: or javascript: before
normalizing. Later we may want to pick up someof the javascript
ones...
2006-08-18 02:34 golda
* dist/wgfilter-index, templates/.glimpse_filters: Deny javascript
links before checking for .html ; add common filetypes .asp and
.jsp to be recognized as HTML
2006-08-14 06:40 golda
* lib/: htuml2txt.pl, wgAgent.pm, wgHeader.pm: Keep correct base
href in filtered file. Could involve redirects, be different from
the URL corresponding to the gathered file
2006-08-14 06:12 golda
* makenh: force use of correct base href when gathering links
2006-08-14 04:02 golda
* lib/wgHeader.pm: version
2006-08-14 04:02 golda
* docs/: contents.htm, preface.htm: Uncommenting areas in docs that
came from lj article
2006-08-01 22:51 golda
* lib/: wgHeader.pm, wgTextMsgs.pm: always install using
htuml2txt.pl to avoid confusion; explain to user that other filters
are optional
2006-08-01 22:51 golda
* wginstall.pl: always install using htuml2txt.pl to avoid
confusion
2006-07-28 03:58 golda
* lib/RankHits.pm: fix scoping problem
2006-07-28 02:14 golda
* lib/: /wgrankhits.cfg, RankHits.pm, wgHeader.pm: make query
keywords available to ranking formula
2006-07-28 02:14 golda
* makenh: don't 'use' WWW::Mechanize, just require in eval
2006-07-22 23:12 golda
* lib/: htuml2txt.pl, wgFilter.pm: Skip Javascript to avoid ugly
search results. Fix to wgFilter.pm to make the SkipSection
function work correctly when the start and end patterns occur on
the same line.
2006-07-21 04:25 golda
* lib/wgHeader.pm: version
2006-07-21 04:25 golda
* makenh: use url_abs() function of WWW::Mechanize rather than
url(), in order to apply the current base href
2006-07-19 05:35 golda
* lib/: wgArch.pm, wgRoot.pm: Fix bug of not traversing TREE type
archives because of blank LimitPrefix
2006-07-19 03:35 golda
* lib/wgHeader.pm: version #
2006-07-19 03:35 golda
* makenh: use WWW::Mechanize if available to get links from each
page (we alrady retrieve using UserAgent if its there; but this
lets us take advantage of better BASE HREF and other HTML parsing
support in Mechanize)
2006-07-18 01:04 golda
* lib/wgHeader.pm: [no log message]
2006-07-18 01:04 golda
* docs/licensing.htm: web page update
2006-07-18 01:04 golda
* wginstall.pl: Correct contact information link to use online form
2006-05-30 00:12 golda
* cgi-bin/webglimpse.cgi: The XSS vulnerability fix broke the next
hits toolbar - now fixed.
2006-05-24 21:52 golda
* lib/: CustomOutputTool.pm, RankHits.pm, wgHeader.pm: Fixes for
CenterOutput routine in CustomOutputTool, Bug in centering output
code fixed, also avoids centering altogether if entire matching
string is to be output. Was testing chars past end of string in
certain cases!
RankHits now avoids tests involving processing of entire matching
string if we don't need them.
2006-05-24 21:50 golda
* docs/preface.htm: [no log message]
2006-05-24 21:50 golda
* wginstall.pl: More helpful error message when Glimpse files not
found
2006-05-05 11:59 golda
* lib/CustomOutputTool.pm: Fix for links and other values with
literal [ ] chars. These were being munged by our [variable]
replacement routine
2006-04-21 01:08 golda
* lib/wgHeader.pm: Version...
2006-04-21 01:08 golda
* lib/htuml2txt.pl: Added comments pointing user to wgFilter.pm for
eliminating repetitive text
2006-04-21 01:07 golda
* docs/: appendix.htm, catdoc.htm, configure.htm, contents.htm,
faqs.htm, figures.htm, files.htm, filtering.htm,
gettingstarted.htm, howtos.htm, install.htm, install2.htm,
install3.htm, install4.htm, install5.htm, integrate.htm,
licensing.htm, pdf.htm, preface.htm, searchable.htm,
searchable2.htm, simpletutorial.htm, simpletutorial2.htm,
support.htm, troubleshooting.htm, verify.htm, wgfilter-index.htm,
zip.htm: Doc updates; remove in-doc links since we are now frames
2006-04-19 05:21 golda
* docs/: Main.htm, contents.htm, filtering.htm, gettingstarted.htm,
preface.htm: cleaning up filtering section
2006-04-18 02:41 golda
* lib/wgArch.pm, templates/tmplManageArch.html: Format
troubleshooting suggestions more nicely.
2006-04-18 02:40 golda
* docs/: E, Main.htm, TOC.htm, appendix.htm, catdoc.htm,
compare.htm, configure.htm, faqs.htm, figures.htm, files.htm,
filtering.htm, gettingstarted.htm, howtos.htm, install.htm,
install2.htm, install3.htm, install4.htm, install5.htm,
integrate.htm, licensing.htm, pdf.htm, preface.htm,
processpdf.sh.txt, samples.htm, searchable.htm, searchable2.htm,
simpletutorial.htm, simpletutorial2.htm, support.htm,
troubleshooting.htm, usexpdf.sh.txt, verify.htm,
wgfilter-index.htm, wgvshtdig.htm, zip.htm: Adding documentation
into release tarball, using organized docs from Edis Feldhouse -
thanks, Edis!
2006-04-17 18:15 golda
* lib/wgArch.pm: Add simple troubleshooting suggestions when 0
files are indexed
2006-04-17 18:06 golda
* cgi-bin/mfs.cgi: fix double-spacing in PRE sections of
jump-to-line code - thanks Steve Cochran!
2006-04-14 03:29 golda
* lib/PreFilter.pm: Change way we load filters to allow for filter
programs that accept the filename as parameter instead of filtering
STDIN. Thanks again to D.P. Kreil!
2006-04-14 03:28 golda
* lib/wgArch.pm: Check the startURL not the bare hostname, make
sure we get non-standard ports
2006-04-14 03:28 golda
* lib/wgSiteConf.pm: use fully qualified subroutine name
2006-04-14 02:27 golda
* cgi-bin/mfs.cgi: Don't retrieve original URL for jump-to-line if
original URL appears to be a binary format (pdf, doc, xls) - thanks
to Dr D.P. Kreil for pointing this out!
2006-04-13 12:45 golda
* cgi-bin/webglimpse.cgi: Off by one error on num line matches!
Stupid error $#arrayname is the index of the last element, not the
# of elements...
2006-04-10 01:49 golda
* lib/: htuml2txt.pl, wgAgent.pm: wgAgent: corresponding to mfs.cgi
call - Fix to jump-to-line to avoid off-by-3 errors caused by
header lines htuml2txt.pl : make sure <lineno> prefixes all lines,
otherwise jump-to-line will fail entirely on some lines
2006-04-10 01:49 golda
* cgi-bin/mfs.cgi: Fix to jump-to-line to avoid off-by-3 errors
caused by header lines
2006-04-08 01:46 golda
* cgi-bin/webglimpse.cgi: Added input sanitization to avoid XSS
vulnerability
2006-03-24 23:47 golda
* lib/wgHeader.pm: version
2006-03-24 16:02 golda
* lib/wgRoot.pm: Don't require LimitPrefix for TREE type roots
2006-03-23 23:46 golda
* lib/wgRoot.pm: correct error in evaluating links as remote vs
local in some cases in TREE archive. We had been gathering some
TREE links that we should not have been.
2006-03-23 23:45 golda
* cgi-bin/webglimpse.cgi: support 'insertbefore' input tag for use
with munging hit result URLs
2006-03-06 09:40 golda
* templates/wgindex.html: Add new optional hidden tags to
wgindex.html for modifying output URL - used with shopping carts
such as SoftCart or Minivend.
2006-02-27 23:28 golda
* cgi-bin/webglimpse.cgi, lib/CustomOutputTool.pm: Added support
for path modification to results output
2006-02-14 00:32 golda
* templates/tmplAddTree.html: [no log message]
2006-02-14 00:32 golda
* lib/wgRoot.pm: Support LimitPrefix for TREE type roots
2005-08-09 00:12 golda
* lib/: CustomOutputTool.pm, InputSyntax.pm, RankHits.pm: Add
routing to center output around the keywords; add PATH to output
variables; correct for eliminated lines in RankHits
2005-08-09 00:07 golda
* cgi-bin/: webglimpse.cgi, wgarcmin.cgi: Fix for wgarcmin.cgi on
IE
2005-07-06 16:45 golda
* makenh: better regexp for gathering link descriptions
2005-04-03 15:33 golda
* lib/usexpdf.sh: NOT in test mode - leaves files around
2005-02-27 18:26 golda
* lib/usexpdf.sh: problem with shell escapes - don't try to run
string in shell
2005-02-17 14:22 golda
* lib/htfilter.pl: Version of htuml2txt.pl that uses wgFilter.pm to
process chunks of input files in addition to removing tags.
2005-01-16 23:37 golda
* templates/german/wgoutput.cfg: Update output results style for
German language template
2004-12-28 19:07 golda
* templates/intro.tmpl: Template for 'Welcome to Webglimpse' for
translation
2004-12-28 18:55 golda
* makenh: Added code to save link text (maybe for later ranking of
hits, or automatically associating keywords with pages).
Also better normalizing of /A/.. type links (avoid redundant links)
2004-12-28 18:15 golda
* lib/LangUtils.pm, templates/tmplNewArch.html: Added support for
Dutch (Nederlandse), thanks to David Morris of GentleWare Studios
2004-11-26 13:53 golda
* lib/RankHits.pm: match keywords on word boundaries (maybe should
only do this if lang=English)
2004-11-26 13:53 golda
* cgi-bin/webglimpse.cgi: Can't use limit for speed if we may
eliminate some hits
2004-11-26 12:18 golda
* lib/RankHits.pm:
typo
2004-11-26 11:59 golda
* templates/: wgindex.html, wgsimple.html: Add 'wordspan' option to
search forms
2004-11-26 11:39 golda
* cgi-bin/webglimpse.cgi, lib/RankHits.pm: Eliminate lines that are
outside params (right now our only 'rule' of this type is
wordspan). Also included code for a score 'threshold' so we can
eliminate low-scoring lines for any ranking formula.
2004-11-23 22:39 golda
* lib/RankHits.pm: Wordspan algorithm
2004-11-23 22:20 golda
* makenh: Eliminate PHPSESSID redundant links, make sure to look up
securified url in hash not raw.
2004-11-21 21:49 golda
* cgi-bin/webglimpse.cgi: If user specifies a 'window' in which all
search terms should appear, then make scope of booleans a record
not whole file. (the 'window' must be in a single record)
2004-11-21 21:48 golda
* lib/: CustomOutputTool.pm, RankHits.pm, wgConf.pm:
CustomOutputTool : if user uses HREF directly, assume they know
what they're doing and don't automatically insert our link
RankHits: started modifications to measure 'window' in which search
terms appear
wgConf: fixed which module to call
2004-11-17 22:06 golda
* cgi-bin/webglimpse.cgi: Allow user-specified template file for
default search form that webglimpse.cgi returns without a query.
Also correct highlighting of keywords for complex queries in
non-English languages
2004-10-19 21:38 golda
* lib/OutputTool.pm: Update old link
2004-10-19 21:07 golda
* templates/wgoutput.cfg: Add credits to end of search results by
default (user can remove with commercial version - just edit
wgoutput.cfg)
2004-10-14 15:26 golda
* cgi-bin/webglimpse.cgi: Save original query just how user typed
it for re-display in search output results. We have to do so much
munging to the query string for security and to protect
regexp/special chars, it can be ugly if we print it after we are
done with it...
2004-10-14 15:09 golda
* lib/wgFilter.pm, templates/wgoutput.cfg: Make filter patterns
case-insensitive add some docs to wgoutput.cfg file
2004-10-09 02:22 golda
* cgi-bin/webglimpse.cgi, cgi-bin/wgarcmin.cgi,
lib/CustomOutputTool.pm: When highlighting matching keywords, don't
break words on escaped non-alphanumeric characters. Also make sure
to trim spaces from highlight tags.
wgarcmin.cgi always runs from web currently - remove option to run
on command line - wgcmd does that
2004-10-07 15:24 golda
* cgi-bin/webglimpse.cgi, lib/CustomOutputTool.pm: Support
alternate output for structured queries. Currently the only
available alternate output is the first maxchars from the file (not
including tags). That way we do not output lines like
stockticker{4}: ASFT on queries for "stockticker=ASFT". However we
still may output lines like that on NON-structured queries that
happen to match meta data.
2004-10-04 14:12 golda
* lib/InputSyntax.pm: Substitutions in wrong place...
2004-09-28 23:32 golda
* lib/InputSyntax.pm: Fix typo
2004-09-17 07:15 golda
* cgi-bin/webglimpse.cgi, lib/InputSyntax.pm: Escape regexp chars
when doing a simple search with automatic syntax (ALL, ANY, PHRASE)
This allows users to search for string containing . * ! without
having to use \. to escape the characthers in their search query
2004-08-27 00:46 golda
* lib/ResultCache.pm: typos
2004-08-27 00:17 golda
* lib/ResultCache.pm: Fix problem with cache files being used for
non-identical searches, causing erroneous results
2004-08-19 21:39 golda
* lib/wgFilter.pm: Add ability to munge a section of the indexed
file (for field-based output, for example)
2004-07-29 08:37 golda
* lib/httpget.c:
Don't print last-modified line twice if already printing headers
2004-07-29 08:36 golda
* lib/wgAgent.pm: mimic httpget behaviour on redirects and errors
2004-07-26 11:37 golda
* makenh: Eliminate redundant links of form /?X=Y/ - these are
commonly generated by some HTML editors, apparently.
2004-07-22 13:06 golda
* dist/wgfilter-index: skip .png files
2004-07-22 11:00 golda
* lib/wgAgent.pm: adding header parameters
2004-07-22 10:56 golda
* lib/wgAgent.pm: fix typo, disable LWP for now
2004-07-21 10:44 golda
* lib/: PreFilter.pm, wgAgent.pm: Allow default filter *.* to be
used in .glimpse_filters also changes to wgAgent.pm to handle
header lines
2004-07-20 17:18 golda
* lib/wgAgent.pm: in progress...setting up If-Modified-Since header
2004-07-20 09:34 golda
* lib/wgAgent.pm: Remove unnecessary line so we can use ua->get
instead of setting up the request in advance
2004-07-15 11:15 golda
* cgi-bin/mfs.cgi: add returns back in, fix regexp loop
2004-07-15 07:02 golda
* cgi-bin/mfs.cgi: Changes to make sure not to insert our bolding
and line markers within other tags.
2004-07-15 07:00 golda
* lib/wgAgent.pm: skip HTTP headers
2004-07-06 12:30 golda
* cgi-bin/mfs.cgi: use new wgAgent (uses LWP if avail) instead of
calling HTTPGET directly
2004-07-06 12:26 golda
* lib/wgAgent.pm: Option not to save to file (for use by mfs)
2004-07-01 13:17 golda
* wginstall.pl: Make sure only copy htuml2txt.pl once, and replace
path to perl - was being copied again without correct replacement.
2004-06-29 17:37 golda
* makenh, wginstall.pl, lib/wgAgent.pm, lib/wgSite.pm,
templates/tmplRemoteDomain.html: Use LWP and HTTP.pm if available -
allows us to use cookie-based access
2004-06-23 22:42 golda
* lib/LangUtils.pm: Romanian
2004-06-23 22:41 golda
* makenh, wginstall.pl: remove wgLog from makenh, it is not
available in all versions; duplicate makeTimeStamp routine instead.
2004-05-25 16:31 golda
* templates/romanian/: intro.html, snippets.txt, wgindex.html,
wgoutput.cfg, wgsimple.html, wgverysimple.html: Added Romanian text
- thanks Marian-Nicolae V. Ion !
2004-05-25 16:30 golda
* templates/french/: intro.html, snippets.txt, wgindex.html,
wgoutput.cfg, wgsimple.html, wgverysimple.html: UPdated french text
2004-05-25 16:30 golda
* templates/tmplNewArch.html: Add Romanian option
2004-04-29 12:54 golda
* lib/: stall.pl, CustomOutputTool.pm, wgHeader.pm: Fix minor typos
2004-04-29 12:36 golda
* makenh: Pull out interrupt handling. Was causing index failure
on some systems.
2004-04-26 12:33 golda
* cgi-bin/webglimpse.cgi, lib/CustomOutputTool.pm: make
jump-to-line links work with next hits toolbar!
2004-03-20 20:15 golda
* lib/ResultCache.pm: Fix taint check errors on constructing
wgcache filename.
2004-03-20 09:25 golda
* lib/CustomOutputTool.pm: Use individual archive wgoutput.cfg file
even in cases where searching multiple or alternate archives; do
not use the template file instead.
2004-03-18 09:41 golda
* lib/: nh, wgLog.pm: makeTimeStamp now a subroutine
2004-03-11 20:01 golda
* lib/wgHeader.pm: version #
2004-03-11 13:20 golda
* cgi-bin/webglimpse.cgi: Fix bug where end_files was printed twice
on live searches and files_exceeded failed to print on cached
searches.
2004-03-07 11:25 golda
* cgi-bin/webglimpse.cgi: Allow site admin to modify SearchFeed
hits box separately for each archive by copying the template file
into the archive directory.
2004-03-06 21:41 golda
* lib/CustomOutputTool.pm: Cleaning up non-matching [var]'s was
accidentally deleting the [INCLUDE file] tag! Fixed.
2004-01-22 18:55 golda
* templates/tmplRemoteDomain.html: fix typo
2004-01-15 20:47 golda
* dist/wgfilter-index: Skip mailto's!
2003-12-19 08:24 golda
* wginstall.pl: Install wgFilter.pm
2003-12-13 00:14 golda
* lib/wgHeader.pm: [no log message]
2003-12-13 00:01 golda
* templates/: ts.pm, Feed.pm, tmplManageArch.html,
tmplSearchFeedBox.html: Adjust ordering, clean up box
2003-12-12 23:13 golda
* templates/tmplManageArch.html: Correct gateway page
2003-12-12 23:11 golda
* lib/SearchFeed.pm, templates/tmplSearchFeedBox.html: Adding
modules to handle SearchFeed results
2003-12-12 22:42 golda
* templates/: pl, bglimpse.cgi, arcmin.cgi, dWeb.pm, ter.pm, .pm,
.pm, tmplManageArch.html, wgoutput.cfg: Adding support for optional
sponsored links from SearchFeed ; lets portal-type sites generate