forked from erlyaws/yaws
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
5445 lines (3354 loc) · 141 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
2007-02-08 16:38 klacke
* configure: need to also check in configure after the setuod_drv
gcc/ld patch
2007-02-06 17:25 klacke
* src/yaws_cgi.erl: added auth env stuff to yaws_cgi patch by
Julian Noble
2007-02-06 12:04 etnt
* src/yaws_server.erl: Bugfix by Magnus Froberg: binding socket
with fd_server now only listens to the specified IP address given
in #sconf.listen
2007-02-04 17:38 klacke
* ChangeLog, www/code.yaws, www/news, www/setpcookie.yaws,
www/upload.yaws: preparing for 1.67
2007-02-04 16:56 klacke
* vsn.mk: preparing for release 1.67
2007-02-04 16:47 klacke
* src/yaws_server.erl: Removed the urlc_total counter - it didn't
provide info which was worth the proce of having it - Also Chris
NewCombe reported trobles with the counter
2007-02-02 10:28 etnt
* src/Makefile: Added install of the priv/*.xsd files
2007-02-01 16:58 etnt
* src/yaws_api.erl: Fixing yaws_api:find_cookie_val/2 which was
broken.
2007-01-30 11:27 etnt
* www/soap_intro.yaws: Added paragraph with some limitation
regarding binding style and type of encoding.
2007-01-26 16:55 etnt
* www/soap_intro.yaws: Made the examples look prettier.
2007-01-26 15:53 etnt
* www/soap_intro.yaws: Adding missing description on call to:
yaws_soap_srv:setup/2.
2007-01-24 08:49 klacke
* src/yaws_config.erl: patch from Dimitriy Kargapolov for tmpdir
handling
2007-01-23 15:46 etnt
* src/yaws_soap_lib.erl: Bugfix by Feredrik Thulin: The
(undocumented) http_uri:parse/1 return format was changed between
Erlang/OTP R11B-1 and R11B-2.
2007-01-19 21:43 klacke
* configure.in: [no log message]
2007-01-19 21:42 klacke
* src/yaws.erl: Patch from Fredrik Thulin to make setuid_drv work
better under ubuntu where gcc with some stack smashing tech is used
to build, then we cannot use ld, we need to use ggc to greate the
shared object
2007-01-19 10:17 etnt
* src/yaws_server.erl: Appmod </, Mod> didn't work properly. Should
be fixed now.
2007-01-17 10:43 etnt
* src/yaws_rss.erl: The generated content was not valid RSS 2.0
content. This is fixed now.
2007-01-02 23:58 klacke
* doc/yaws.tex, man/yaws.conf.5, src/yaws_config.erl: added ability
to have config files in several files, patch from Sergei Golovan
2006-12-29 19:27 etnt
* src/yaws_rpc.erl, www/json_intro.yaws: Added call to callback
function: M:F(cookie_expire) which is expected to return a proper
cookie expire string. If non-existant, the default behaviour will
prevail, i.e a session bases cookie lifetime.
2006-12-25 16:45 etnt
* src/yaws_api.erl: Extending yaws_api:find_cookie_val/2 to accept
an #arg record as second argument as well.
2006-12-22 04:10 yarivvv
* www/haxe_intro.yaws: tweaked the haXe documentation
2006-12-17 21:02 klacke
* www/: news, soap_intro.yaws: vsn 1.66
2006-12-17 19:23 klacke
* applications/mail/src/Makefile: [no log message]
2006-12-16 16:12 mikaelka
* applications/yapp/Makefile: Fix to yapp Makefile to clean all
generated files in doc directory
2006-12-14 23:45 etnt
* src/yaws.erl: Adding add_server/2 and lots of access functions
for manipuling the #ssl{} record
2006-12-13 09:30 etnt
* www/doc.yaws: Adding entry for the yaws_soap_lib man-page.
2006-12-12 17:43 etnt
* man/: yaws.conf.5, yaws_soap_lib.5: Adding a new man page for the
yaws_soap_lib module. Also, added enable_soap config to yaws.conf.5
2006-12-12 17:25 etnt
* src/yaws_soap_lib.erl: [no log message]
2006-12-12 17:13 etnt
* src/yaws_soap_lib.erl: [no log message]
2006-12-12 16:46 etnt
* src/yaws_soap_lib.erl: [no log message]
2006-12-12 16:42 etnt
* src/yaws_soap_lib.erl: Adding yaws_soap_lib:call/4 which takes
the acual Header and Body messages.
2006-12-12 15:24 etnt
* src/yaws_soap_lib.erl: [no log message]
2006-12-12 15:20 etnt
* src/yaws.erl: Fixing the setup of the PAM/Auth stuff when
starting embedded Yaws.
2006-12-12 14:49 etnt
* src/yaws_soap_lib.erl: Fixing the handling of the return value
from the http-request.
2006-12-12 13:32 klacke
* src/yaws_cgi.erl: override cgienv if provideded env in extraenv
2006-12-12 10:54 klacke
* ChangeLog, www/news: [no log message]
2006-12-12 10:47 klacke
* vsn.mk: preparing for 1.66
2006-12-12 10:33 klacke
* scripts/yaws.template: [no log message]
2006-12-12 10:29 klacke
* src/yaws.erl: need pam for embedded mode
2006-12-12 00:54 klacke
* src/yaws.erl, www/json_sample.yaws: small bug fixes
2006-12-11 17:20 klacke
* c_src/epam.c: set RUSER so that pam_group.so works for us
2006-12-10 23:32 etnt
* include/erlsom.hrl, include/soap.hrl, include/yaws.hrl,
priv/envelope.xsd, priv/soap.xsd, priv/wsdl.xsd, src/Makefile,
src/yaws.erl, src/yaws_config.erl, src/yaws_rpc.erl,
src/yaws_soap_lib.erl, src/yaws_soap_srv.erl, www/TAB.inc,
www/json_intro.yaws, www/soap_intro.yaws: Adding SOAP processing
capabilities to Yaws. Read the www/soap_intro.yaws for more info.
2006-12-10 20:55 klacke
* scripts/Install, scripts/Makefile, scripts/make-upload,
src/Makefile: Make/build fixes
2006-12-06 00:05 klacke
* src/yaws_config.erl: bug found in path handling for yaws_dir by
CEAN guys
2006-12-01 22:15 klacke
* src/yaws_compile.erl: handle compiler crash
2006-11-28 21:48 klacke
* src/yaws_server.erl: filer econnreset errors
2006-11-27 20:29 klacke
* src/yaws_api.erl: memory better htmlize
2006-11-20 23:20 klacke
* src/yaws_server.erl: shutdown fixes from Danile Luna
2006-11-19 23:14 klacke
* src/yaws_cgi.erl: added env DOCUMENT_ROOT to cgi env vars -
Michael FIG
2006-11-19 18:09 klacke
* src/yaws_server.erl: dont log write errors when error is 'closed'
2006-11-09 21:30 etnt
* src/yaws_server.erl: Fixed bug: the 'start_mod' module was not
called correctly when having several servers listening to the same
port.
2006-11-06 23:41 klacke
* src/yaws_server.erl: the pathinfo elem in #arg got wrong when
appmod was /
2006-11-05 22:20 klacke
* src/yaws.erl: start_embedded default flags patch by Jason
Andersson
2006-10-18 16:18 jbevemyr
* src/: yaws_log.erl, yaws_server.erl: Fixed logging for authmodule
2006-10-18 15:51 jbevemyr
* include/yaws.hrl, man/yaws.conf.5, src/yaws_config.erl,
src/yaws_server.erl: Added option for having a module for handling
authentication.
2006-10-09 22:44 mikaelka
* applications/yapp/src/yapp.erl: Fix to yapp for starting
dependencies, patch from Michael Leonhard
2006-09-20 14:34 klacke
* man/yaws_api.5, src/yaws_api.erl: [no log message]
2006-09-20 09:46 klacke
* www/: arg.yaws, arg2.yaws: added the client IP address to the
#arg record
2006-09-20 09:29 klacke
* include/yaws_api.hrl, src/yaws_server.erl: added the client IP
address to the #arg record
2006-09-19 09:41 klacke
* include/yaws.hrl, man/yaws.conf.5, src/yaws_config.erl,
src/yaws_server.erl: added config flag 'use_large_ssl_pool =
bool()'
2006-09-11 20:12 klacke
* ChangeLog, vsn.mk, www/news: preparing for 1.65
2006-09-11 11:11 klacke
* src/yaws_server.erl: patch by Chris NewCombeto handle PUT method
better
2006-09-10 23:23 klacke
* www/configuration.yaws: [no log message]
2006-09-09 22:48 mikaelka
* www/yapp_intro.yaws: Fixed some formulations
2006-09-09 19:42 mikaelka
* www/: TAB.inc, yapp_intro.yaws: added yapp_intro.yaws
2006-09-09 19:40 mikaelka
* applications/yapp/src/yapp.erl: fix so that files in top
directory that start with same string as the yapp are not affected
2006-09-08 21:47 yarivvv
* src/haxe.erl: removed debug logging statements
2006-09-08 20:07 yarivvv
* src/haxe.erl: Updated the haXe remoting adapter to be compatible
with the latest version of haXe. The main improvement is the
performance of the caching algorithm
2006-09-07 16:28 etnt
* src/yaws.erl: Bugfix of my stupidity
2006-09-07 16:10 etnt
* src/yaws.erl: Fixed a typo in start_embedded/N.
2006-09-06 13:22 etnt
* src/ymnesia.erl: Added the ymnesia.erl appmod.
2006-09-06 10:05 klacke
* src/yaws_zlib.erl: patch from Matthew Reilley to handle new
return value from OTP zlib:deflate/4
2006-09-05 22:14 etnt
* src/yaws.erl, www/embed.yaws: Reworked the start_embedded
functions into three functions.
start_embedded(DocRoot). start_embedded(DocRoot, SC_KeyValueList).
start_embedded(DocRoot, SC_KeyValueList, GC_KeyValueList).
2006-09-05 16:58 klacke
* src/yaws_compile.erl: [no log message]
2006-09-05 15:53 etnt
* src/yaws.erl: Added start_embedded/2 that takes a list of sconf
attributes.
2006-09-05 10:10 etnt
* www/embed.yaws: [no log message]
2006-09-05 10:07 etnt
* www/embed.yaws: Updated to reflect the yaws:start_embedded/N
functions.
2006-09-05 09:09 etnt
* src/: yaws_jsonrpc.erl, yaws_rpc.erl, yaws_xmlrpc.erl: Corrected
reference to yaws_api.hrl so that they now compile properly.
2006-09-05 08:56 etnt
* src/yaws.erl: Added start_embedded/1 and start_embedded/4.
Quick and easy way of starting Yaws in embedded mode. No need for
any start-script switches and no dependencies to Yaws header files.
Just call either start_embedded/1 or start_embedded/4 and you are
in the air.
2006-09-03 17:41 mikaelka
* applications/yapp/: Makefile, README, vsn.mk, doc/.empty,
ebin/.empty, priv/docroot/END.inc, priv/docroot/HEAD.inc,
priv/docroot/add.yaws, priv/docroot/add_post.yaws,
priv/docroot/index.yaws, priv/docroot/list.yaws,
priv/docroot/remove.yaws, priv/docroot/remove_post.yaws,
src/Makefile, src/yapp.app.src, src/yapp.erl, src/yapp_app.erl,
src/yapp_event_handler.erl, src/yapp_handler.erl,
src/yapp_mnesia_server.erl, src/yapp_registry.erl,
src/yapp_server.erl, src/yapp_sup.erl: added Yaws application
handler - yapp
2006-09-03 17:34 mikaelka
* src/yaws_server.erl: Added dynamic Docroot to ssi for Yapps
2006-08-30 09:13 klacke
* src/yaws_server.erl: patch from anders nygren to handle absolute
paths + yssi
2006-08-28 20:53 klacke
* scripts/yaws.template, src/json.erl, src/yaws_compile.erl,
src/yaws_ctl.erl: patch from Magnus froberg to get better control
over the files generated by 'yaws --check'. This is good if one
wants to run i.e. xref and dialyzer also on all the generated .erl
files from the --checker
2006-08-25 16:46 klacke
* src/: mime_type_c.erl, yaws_api.erl, yaws_dav.erl,
yaws_server.erl: found errors with xref
2006-08-23 09:38 klacke
* src/json.erl: empty array bug in json parse found by juhani and
fixed by gaspar
2006-08-07 12:20 klacke
* src/yaws_server.erl: [no log message]
2006-08-07 12:19 klacke
* src/yaws_server.erl: appmod '/' was broken
2006-08-07 11:35 klacke
* scripts/: Install, netbsd/yaws.sh: NetBSD support from Kuzma
Bartosz
2006-07-13 13:09 klacke
* ChangeLog, www/news: [no log message]
2006-07-13 13:06 klacke
* vsn.mk: preparing for 1.64
2006-07-13 10:42 jbevemyr
* applications/mail/src/smtp.erl: Fixes from Bengt Kleberg to make
smtp.erl useful outside the webmail app.
2006-07-06 11:04 klacke
* src/: Makefile, yaws_cgi.erl, yaws_ctl.erl: patch by Sergei
Golovan which fixed a CGI bug and made yaws_ctl safe
2006-07-03 11:17 klacke
* scripts/: Install, darwin/Yaws.StartupItem: install patches for
macosX by Eric Baur
2006-06-27 22:26 yarivvv
* www/haxe_intro.yaws: fix documentation typo
2006-06-27 06:47 yarivvv
* www/haxe_sample.yaws: fixed documentation bug in haxe_sample.yaws
2006-06-27 06:29 yarivvv
* www/: haxe_intro.yaws, haxe_intro.yaws: fixed documentation bug
in haxe_intro.yaws
2006-06-27 06:10 yarivvv
* src/Makefile, src/haxe.erl, src/yaws_rpc.erl,
www/haxe_intro.yaws, www/haxe_sample.html, www/json_intro.yaws,
www/TAB.inc, www/json_sample.yaws: Added a haXe remoting adapter
with documentation
2006-06-22 12:30 klacke
* src/yaws_server.erl: made index.php autoload if it exists
2006-06-19 11:00 klacke
* www/json_intro.yaws: [no log message]
2006-06-16 14:50 klacke
* scripts/debian/yaws.init.d: [no log message]
2006-06-16 14:38 klacke
* scripts/: Install, debian/yaws.init.d: added debian startup
script
2006-06-16 14:25 klacke
* c_src/Makefile: [no log message]
2006-06-16 14:21 klacke
* README: [no log message]
2006-06-15 14:44 klacke
* www/shopingcart/shopcart.erl: [no log message]
2006-06-11 16:51 klacke
* vsn.mk, www/news: tiny followup rel
2006-06-11 16:47 klacke
* scripts/: Install, Makefile: weird make behaviour from macos make
2006-06-07 23:09 klacke
* Makefile: [no log message]
2006-06-07 22:35 klacke
* Makefile, src/yaws.erl, src/yaws_server.erl, src/yaws_sup.erl,
www/news: mikl hup fixes
2006-06-07 22:13 klacke
* ChangeLog, www/internals.yaws, www/news: [no log message]
2006-06-07 22:07 klacke
* Makefile, configure, configure.in, vsn.mk, src/Makefile,
src/yaws_config.erl, src/yaws_generated.template: preparing for
1.62
2006-06-01 09:15 klacke
* include/yaws.hrl, man/yaws.conf.5: changed default php exe to
php-cgi
2006-05-31 15:09 klacke
* scripts/yaws.template: [no log message]
2006-05-31 00:11 klacke
* configure, configure.in, include.mk.in, scripts/Install,
scripts/Makefile: [no log message]
2006-05-30 23:31 klacke
* src/Makefile, src/json.erl, src/jsonrpc.erl,
src/yaws_jsonrpc.erl, src/yaws_xmlrpc.erl, www/TAB.inc,
www/json_intro.yaws, www/json_sample.html, www/json_sample.yaws,
www/jsolait/jsolait.js, www/jsolait/lib/jsonrpc.js,
www/jsolait/lib/urllib.js: JSON ajax code from Gaspar Chilingarov,
I added docs describing an example
2006-05-30 17:20 klacke
* include.mk.in, doc/Makefile, scripts/Install,
scripts/yaws.template, src/yaws_config.erl, src/yaws_ctl.erl:
run_erl to_erl support patch from Mats Cronquist
2006-04-28 17:42 klacke
* src/yaws_ctl.erl: [no log message]
2006-04-28 17:35 klacke
* src/: yaws_content_negotiation.erl, yaws_server.erl,
yaws_zlib.erl: some bugs in non used code found by dialyzer
2006-04-27 22:02 klacke
* scripts/gentoo/conf.d.yaws, scripts/gentoo/init.d.yaws, www/news,
doc/yaws.pdf: [no log message]
2006-04-27 21:47 klacke
* ChangeLog, scripts/freebsd/yaws.sh, src/yaws_ctl.erl, www/news:
preparing for 1.61
2006-04-27 21:38 klacke
* scripts/yaws.template, src/yaws_config.erl, src/yaws_ctl.erl: [no
log message]
2006-04-27 21:25 klacke
* Makefile, README, configure, configure.in, include.mk.in, vsn.mk,
c_src/Makefile, man/Makefile, man/yaws.1, man/yaws.conf.5,
man/yaws_api.5, scripts/Install, scripts/Makefile,
scripts/yaws.template, src/Makefile, src/yaws.erl,
src/yaws_api.erl, src/yaws_cgi.erl, src/yaws_config.erl,
src/yaws_ctl.erl, src/yaws_generated.template, www/code/Makefile,
www/shopingcart/Makefile: added support for 2 additional configure
flags, --disable-pam and --with-extrainclude=DIR
Worked the Makefiles to properly support DESTDIR. This is useful
for packagers (deb, rpm ...)
2006-04-05 09:53 klacke
* src/yaws_ls.erl: [no log message]
2006-04-05 09:53 klacke
* LICENSE: changed licens to proper BSD
2006-03-18 00:32 klacke
* scripts/: darwin/Yaws.StartupItem, gentoo/conf.d.yaws,
redhat/yaws.init.d, suse/yaws.init.d: [no log message]
2006-03-18 00:17 klacke
* src/yaws_log.erl: [no log message]
2006-03-17 23:57 klacke
* ChangeLog, www/news: ""
2006-03-17 23:46 klacke
* vsn.mk: prearing for 1.60
2006-03-14 21:59 klacke
* include.mk.in: [no log message]
2006-03-09 22:58 klacke
* include/yaws.hrl, man/yaws.1, man/yaws.conf.5,
scripts/yaws.template, src/Makefile, src/yaws.erl,
src/yaws_404.erl, src/yaws_api.erl, src/yaws_cgi.erl,
src/yaws_compile.erl, src/yaws_config.erl, src/yaws_ctl.erl,
src/yaws_html.erl, src/yaws_log.erl, src/yaws_ls.erl,
src/yaws_revproxy.erl, src/yaws_server.erl,
src/yaws_session_server.erl, src/yaws_ssl.erl, src/yaws_sup.erl:
removed the ability change userid, also stopped writing to
/tmp/yaws and started to write to /home/klacke/.yaws instead. This
is much better since we cannot now ever get into the situations
where file ownership and umask stop us from controlling a daemon.
Also cleaned up the start flags to the yaws script, all old flags
are still there for backward scompatibilty.
2006-03-09 18:25 klacke
* c_src/Makefile: [no log message]
2006-03-06 17:22 klacke
* man/yaws.conf.5: [no log message]
2006-02-26 14:38 mbj
* applications/wiki/: README, src/wiki.erl,
src/wiki_format_txt.erl: Fixed error printouts; handle https and
ftp links; updated READE
2006-02-22 14:40 klacke
* src/yaws_ctl.erl: file descriptor leak bug found by Mats
Cronqvist where each call to 'yaws -ls' left an unclosed dscriptor
in the server
2006-02-21 14:08 klacke
* src/yaws_ctl.erl: [no log message]
2006-02-14 23:22 klacke
* c_src/Makefile, c_src/epam.c, man/yaws.conf.5,
src/yaws_config.erl, src/yaws_server.erl, src/yaws_sup.erl: [no log
message]
2006-02-14 22:00 klacke
* ChangeLog, www/news: ""
2006-02-14 21:10 klacke
* c_src/Makefile: ""
2006-02-14 20:56 klacke
* c_src/epam.c, include/yaws.hrl, src/Makefile,
src/mime_type_c.erl, src/yaws_config.erl, src/yaws_ctl.erl,
src/yaws_ls.erl, src/yaws_server.erl, src/yaws_sup.erl: pam
cleanup, add env record, yaws_ls enhancements by
2006-02-12 16:59 mikaelka
* src/yaws_server.erl: Clearold ets table instead of deleting and
making a new one when updating sconf line 559
2006-02-07 20:25 klacke
* src/yaws_revproxy.erl: broken revproxy
2006-02-07 12:14 klacke
* man/yaws.conf.5: [no log message]
2006-02-03 15:01 sstrollo
* configure, configure.in, c_src/epam.c: Handle pam include files
in different location...
2006-02-03 14:47 sstrollo
* c_src/setuid_drv.c: Call setpwent() in setuid_drv (which wasn't
working without it on FreeBSD)
2006-02-01 23:43 klacke
* c_src/epam.c: [no log message]
2006-02-01 23:41 klacke
* c_src/Makefile: ""
2006-02-01 23:36 klacke
* ChangeLog, www/news: [no log message]
2006-02-01 23:27 klacke
* vsn.mk, c_src/Makefile, doc/yaws.pdf, include/yaws.hrl,
man/yaws.conf.5, man/yaws_api.5, src/Makefile, src/yaws_config.erl,
src/yaws_pam.erl, src/yaws_server.erl, src/yaws_sup.erl: added pam
support + prepare for 1.58
2005-12-10 19:21 mikaelka
* src/yaws_server.erl: changed so that an arg_rewrite_mod may
temporarily change the docroot by changing the Arg#arg.docroot
attribute
2005-11-30 21:10 klacke
* include/yaws.hrl, man/yaws.conf.5, scripts/yaws.conf.template,
src/yaws_config.erl, src/yaws_server.erl: added support for fdsrv
2005-11-25 20:49 etnt
* src/: yaws_config.erl, yaws_rss.erl: Fixing the yaws-rss
functionality. Adding configure parameter rss_dir, defining the
directory where to store the RSS database.
2005-11-23 23:52 mbj
* src/yaws.erl: fixed allow_header for non-DAV case
2005-11-23 23:45 mbj
* include/yaws.hrl, src/Makefile, src/dav.erl, src/yaws.erl,
src/yaws_config.erl, src/yaws_dav.erl, src/yaws_server.erl:
reworked the DAV support a bit - don't use an appmod, instead yaws
has built-in support for DAV methods. Added support for missing
DAV methods (COPY etc).
2005-11-20 23:30 klacke
* src/: yaws.erl, yaws_api.erl, yaws_cgi.erl, yaws_compile.erl,
yaws_config.erl, yaws_content_negotiation.erl, yaws_ctl.erl,
yaws_debug.erl, yaws_log.erl, yaws_ls.erl, yaws_revproxy.erl,
yaws_server.erl, yaws_ssl.erl: ""
2005-10-11 14:12 klacke
* src/mime_type_c.erl: bad charset header genererated
2005-10-05 13:24 klacke
* src/yaws_server.erl: ""
2005-10-04 22:21 etnt
* src/yaws_rss.erl: Cleaned up w3cdtf-date function by Daniel
Kaminski.
2005-10-03 09:41 etnt
* src/yaws_rss.erl: Updated the RSS date format, as suggested by
Daniel Kaminski.
2005-10-03 09:34 etnt
* doc/README.rss, src/yaws_rss.erl: Fixed the RSS date format, as
suggested by Daniel Kaminski.
2005-09-30 11:16 klacke
* src/yaws_server.erl: [no log message]
2005-09-30 11:04 klacke
* include/yaws.hrl, src/yaws_config.erl, src/yaws_server.erl: ""
2005-09-29 10:03 klacke
* include/yaws.hrl, man/yaws.conf.5, scripts/yaws.conf.template,
src/yaws_config.erl, src/yaws_server.erl: added feature to not pick
first sconf when virthosting
2005-09-28 17:31 klacke
* man/yaws.conf.5: ""
2005-09-25 16:51 mikl
* applications/wiki/wiki.conf: Fixed path to the application
directory where yaws files are stored.
2005-09-16 14:45 etnt
* doc/README.rss: Updated RSS documentation.
2005-09-16 14:41 etnt
* src/yaws_rss.erl: Made month and days in RSS output to consist of
two figures instead of just one.
2005-09-13 16:11 klacke
* src/mime.types: ""
2005-08-17 15:08 klacke
* ChangeLog, src/Makefile, src/yaws_revproxy.erl, www/news: ""
2005-08-17 15:01 klacke
* vsn.mk: preparing for 1.57
2005-08-17 01:01 klacke
* include/yaws.hrl: rel/abs path patch by Rob Schmersel which fixed
a problem in the wiki
2005-08-15 20:26 klacke
* src/: yaws_revproxy.erl, yaws_ssl.erl: ""
2005-08-15 17:45 klacke
* src/: yaws.erl, yaws_ctl.erl, yaws_debug.erl, yaws_revproxy.erl,
yaws_server.erl, yaws_ssl.erl: rewrote yaws SSL code to use the
packet http and packet line modes that are now supported in the OTP
ssl module. Earlier this was all manual (and slow) code in yaws.
Thus yaws/SSL servers are now considerably faster
2005-08-15 13:01 klacke
* src/: yaws_server.erl, yaws_session_server.erl, yaws_ssl.erl:
support chunked data from the client
2005-07-05 11:08 klacke
* src/: yaws.erl, yaws_server.erl: tmp patch by Karel Ostrovsky
2005-07-02 16:30 klacke
* src/yaws_cgi.erl: cgi port patch by joe_e_e
2005-07-02 16:17 mikl
* ChangeLog, src/yaws_cgi.erl: yaws_cgi.erl: Do not send the server
port along with the host name in the CGI HTTP_HOST environment
variable.
2005-06-30 15:40 mikl
* ChangeLog, src/yaws_cgi.erl: Added HTTP_HOST env variable for CGI
scripts (was required by sphpblog).
2005-06-30 15:37 mikl
* ChangeLog, include.mk.in: Added compile option to generate debug
information in the Erlang beam file
2005-06-17 12:58 klacke
* www/: dynamic.yaws, index.yaws, news: ""
2005-06-16 13:59 klacke
* www/news, www/yaws-1.55_to_1.56.patch, vsn.mk: ""
2005-06-16 13:47 klacke
* www/news: ""
2005-06-16 13:36 klacke
* src/yaws_api.erl: ""
2005-06-16 13:33 klacke
* src/yaws_api.erl: ""
2005-06-10 16:17 klacke
* ChangeLog, www/news: ""
2005-06-10 16:08 klacke
* vsn.mk: preparing for release 1.55
2005-06-08 14:58 klacke
* include/yaws.hrl, man/yaws.conf.5, src/yaws_config.erl,
src/yaws_server.erl: added the possibilty to have multiple
docroots, where a page is searched in the list of docroots
2005-06-07 20:08 klacke
* scripts/Install: ""
2005-06-07 13:13 klacke
* man/yaws.1, scripts/yaws.template: -erlarg patch by Fredrik
Thulin
2005-05-26 22:54 etnt
* src/yaws_dav.erl: [no log message]
2005-05-23 19:14 klacke
* man/yaws_api.5: ""
2005-05-20 00:47 etnt
* src/: dav.erl, yaws_server.erl: Adding support for PUT and
DELETE.
2005-05-19 20:21 etnt
* src/dav.erl: [no log message]
2005-05-19 00:36 etnt
* src/dav.erl: [no log message]
2005-05-18 16:42 klacke
* scripts/yaws.template: ""
2005-05-18 00:12 etnt
* src/: Makefile, dav.erl: Begun work with providing a filsystem
dav appmod.
2005-05-17 10:37 etnt
* src/yaws_dav.erl: Fixed include file references.
2005-05-16 23:24 etnt
* src/: yaws.erl, yaws_server.erl: Adding the MKCOL method
(webdav).
2005-05-16 23:12 etnt
* src/yaws_api.erl: Added return code 207, Multi Status
2005-05-16 14:56 etnt
* src/yaws_dav.erl: [no log message]
2005-05-16 13:58 etnt
* include/yaws_dav.hrl, src/Makefile, src/yaws.erl,
src/yaws_dav.erl, src/yaws_server.erl: Adding the beginning of
WebDav support. The PROPFIND method has been added. The intention
is to let appmods take care of the WebDav specfics.
2005-05-16 13:01 klacke
* src/yaws_api.erl: ""
2005-05-12 15:12 klacke
* doc/yaws.tex, scripts/Makefile, www/code/Makefile,
www/shopingcart/Makefile: ""
2005-04-29 14:28 mikl
* src/yaws.erl: temp directory is now taken from TMP environment
variable, and a default is used if the environment variable is not
set
2005-04-25 15:48 klacke
* src/: yaws_config.erl, yaws_server.erl: new feature called
redirect maps whereby its possible to redir entire parts of the
docroot to another site