-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.20090621
17001 lines (11727 loc) · 596 KB
/
ChangeLog.20090621
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-06-21 Alvaro Lopez Ortega <[email protected]>
* Changelog: This is the last entry of this change-log file. It's
being rename to Changelog.20090621. From now on we will use SVN
commit comments, and the Changelog file will be built out of them.
2009-06-19 Alvaro Lopez Ortega <[email protected]>
* admin/static/images/wizards/Makefile.am, admin/Makefile.am,
admin/Wizard_Mailman.py, admin/static/images/wizards/mailman.png:
Adds a new wizard for Mailman.
* admin/PageVServer.py: Fixes a missing translation.
* cherokee/handler_streaming.c (set_auto_rate): Fixes the FLV
management. There was a bug in this function that caused it
randomly.
* configure.in: The *.pre files was not being rebuild when
./configure was being run twice. That leaded the build to be
corrupted in some same. Thanks to Giuseppe Maxia for finding and
reporting this bug.
2009-06-19 Jonathan Hernandez <[email protected]>
* admin/PageVServers.py, admin/PageVServer.py, admin/Wizard.py,
admin/static/css/cherokee.css: New look and feel for wizards.
2009-06-15 Antonio Perez <[email protected]>
* admin/PageVServers.py, admin/PageVServer.py: Table headers
should not be reordered.
2009-06-15 Alvaro Lopez Ortega <[email protected]>
* admin/ModuleFullpath.py, admin/ModuleHeader.py,
admin/ModuleRequest.py, admin/ModuleExists.py,
admin/ModuleMethod.py, admin/ModuleDirectory.py: Improves the
validation functions.
* admin/Wizard_RoR.py: Adds a check in order to ensure that
public/dispatch.fcgi exists. There are RoR applications that
doesn't include it (or includes a dispatch.fcgi.example file).
2009-06-14 Alvaro Lopez Ortega <[email protected]>
* cherokee/access.c, cherokee/access.h, cherokee/Makefile.am,
cherokee/rule_from.c, cherokee/rule_from.h, configure.in,
admin/ModuleFrom.py, admin/consts.py, admin/Makefile.am: Adds a
new matching rule plug-in. It checks the IP of the source of the
request and compare it with a list of IPs and subnets.
2009-06-13 Alvaro Lopez Ortega <[email protected]>
* 0.99.17 released
* cherokee/rule_exists.h, cherokee/rule_exists.c,
admin/ModuleExists.py: Add a new option to the exists rule, so it
checks for index file when a local directory is found.
* cherokee/handler_common.c, cherokee/virtual_server.c: The index
files list entries are now buffers instead of char*.
* admin/validations.py, split_list: Improve list parsing. From now
on, lists can be defined with ',' and/or ' '.
* admin/Rule.py, admin/ModuleExtensions.py, admin/PageVServer.py,
admin/validations.py: Fixes a problem reported on the mailing
list: Extension Lists weren't being checked:
http://lists.octality.com/pipermail/cherokee/2009-June/010467.html
2009-06-12 Jonathan Hernandez <[email protected]>
* admin/PageVServer.py admin/PageVServers.py: Add cookie for
persistency in sections. Fixes the bug #493:
http://bugs.cherokee-project.com/493
2009-06-12 Alvaro Lopez Ortega <[email protected]>
* admin/ModuleExists.py: Adds a missing options supported by the
server: 'match_only_files'. It specifies whether regular files
should be the only entries taken into account by the rule match
plug-in.
* admin/Wizard_RoR.py: Fixes the wizard so it uses the right
directory root. Thanks to Gunnar Wolf for pointing the mistake.
* admin/PageInfoSource.py: Fixes Information Source table render.
* cherokee/source_interpreter.c, cherokee/spawner.c,
cherokee/connection-protected.h, cherokee/connection.c: Fixes a
potential issue for the new spawning mechanism.
* admin/PageEntry.py, admin/Rule.py, admin/Module.py: Improves the
Rule matching entries validation. It also fixes the bug #486:
http://bugs.cherokee-project.com/486
2009-06-11 Alvaro Lopez Ortega <[email protected]>
* admin/ModuleExists.py, admin/PageVServer.py: The "File Exists"
rule should allow to create new rule entries with the "Match Any
File" bit. This patch fixes http://bugs.cherokee-project.com/492
* admin/Wizard_RoR.py, admin/static/images/wizards/ror.png,
admin/static/images/wizards/Makefile.am, admin/Makefile.am,
admin/util.py: Adds a new Wizard for Ruby on Rails.
* admin/util.py (path_find_binary): It wasn't working property
when invoked without custom check function.
2009-06-10 Antonio Perez <[email protected]>
* admin/PageVServers.py, admin/PageVServer.py,
admin/static/css/cherokee.css, admin/static/js/jquery.tablednd.js:
Since now, to reorder Virtual Servers or Rules, we have to click
on the first column of the table, instead on all the row.
2009-06-09 Alvaro Lopez Ortega <[email protected]>
* 0.99.16 released
* cherokee/http.h, cherokee/http.c: Adds the "201 Created" HTTP
error. Implements: http://bugs.cherokee-project.com/490
2009-05-27 Jonathan Hernandez <[email protected]>
* admin/PageVServer.py admin/PageVServers.py admin/css/cherokee.css:
Update Look & Feel for VServers
2009-06-05 Alvaro Lopez Ortega <[email protected]>
* po/admin/zh_CN.po, admin/consts.py: Updates the Chinese
translation. Patch by lijiong1986 <[email protected]>.
2009-06-02 Alvaro Lopez Ortega <[email protected]>
* admin/Wizard_PHP.py: Adds a new default path /usr/php/bin. For
some reason OpenSolaris 2009.06 install PHP in there.
* contrib/Makefile.am (cherokee): Fixes compilation with Sun's
make.
* cherokee/spawner.c, cherokee/shm.c, cherokee/shm.h,
cherokee/common-internal.h, cherokee/main.c, configure.in: Replace
POSIX semaphores with SysV semaphores. The reason? Quite sadly,
FreeBSD doesn't support POSIX semaphores by default (support is
supposed to be kind of unstable). Since SysV semaphores are
supported on Linux, MacOS X and FreeBSD, it made sense to use them
instead of POSIX.
2009-06-01 Alvaro Lopez Ortega <[email protected]>
* cherokee/main_admin.c: Configure cherokee-admin to pass the PATH
environment variable to the python SCGI back-end. It fixes an
issue on FreeBSD.
* admin/Wizard_Drupal.py, admin/Wizard_WordPress.py,
admin/Wizard_Django.py, admin/Wizard.py: Adds support for the
usual static files (favicon.ico and robots.txt) to the "Virtual
Server" wizards.
* cherokee/rule_fullpath.c, cherokee/rule_fullpath.h,
cherokee/Makefile.am, configure.in, qa/229-Fullpath.py,
qa/230-Fullpath2.py, qa/Makefile.am, admin/ModuleFullpath.py,
admin/consts.py, admin/Makefile.am: Adds a new rule type: Full
Path. It's a very simplistic rule for match full paths. It is
going to be useful for matching request like '/favicon.ico' or
'/robots.txt' without using a regular expression. This commit also
adds a couple for QA tests on the new rule type.
* admin/PageEntry.py, admin/Rule.py, admin/PageVServer.py,
admin/PageInfoSource.py: Allows matching rules to validate its
content and show error messages.
2009-05-31 Alvaro Lopez Ortega <[email protected]>
* admin/static/images/wizards/wordpress.jpg,
admin/static/images/wizards/Makefile.am,
admin/static/images/wizards/wordpress.png,
admin/Wizard_WordPress.py: Replace wordpress.jpg by a .png.
* cherokee/handler_scgi.c (add_env_pair): Adds a new tracing
entry.
* admin/Wizard_Drupal.py: Adds the Virtual Server version of the
Wizard.
* admin/Wizard_Drupal.py, admin/Wizard_WordPress.py,
admin/util.py: Tries to detect where the software is installed so
it can use the path as suggestion.
* admin/Wizard_Drupal.py, admin/static/images/wizards/Makefile.am,
admin/static/images/wizards/drupal.png, admin/Makefile.am: Adds a
new wizard for Drupal.
* cherokee/rule_list.c, cherokee/rule_header.c, cherokee/rule.c,
cherokee/rule_default.c, cherokee/rule_and.c, cherokee/rule_or.c,
cherokee/rule.h, cherokee/rule_extensions.c, cherokee/rule_bind.c,
cherokee/rule_directory.c, cherokee/rule_request.c,
cherokee/rule_exists.c, cherokee/rule_geoip.c,
cherokee/rule_not.c, cherokee/rule_method.c: The "file exists"
rule did not check whether a previous non-final rules set a custom
document root. Now, it takes it into account and uses the right
document root directory for the checking.
2009-05-31 Antonio Perez <[email protected]>
* admin/ModuleFcgi.py: We decided to make Script Alias available
on FastCGI handler config.
2009-05-30 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_redir.c (match_and_substitute): When a custom
document root is used, the web_directory property is dropped from
the request. Detect that case and add web_directory to the request
before the evaluation is performed.
* cherokee/handler_redir.c (match_and_substitute): Bug Fix: Do not
overwrite or modify the original request property if it's already
set.
* cherokee/handler_redir.c (match_and_substitute): Bug Fix: The
internal web directory must be cleaned up on internal redirs.
* admin/Wizard_PHP.py: Adds support for adding a index.php in the
virtual server's directory index.
* admin/Wizard_WordPress.py: Reimplement the wizard using the
proper class structure.
* admin/Wizard.py, admin/consts.py: Generalize Wizard categories.
* admin/Wizard.py, admin/consts.py, admin/Wizard_Django.py,
admin/Wizard_HotLinking.py, admin/Wizard_WordPress.py,
admin/Wizard_Redirect.py: Groups wizards in groups.
2009-05-30 Antonio Perez <[email protected]>
* admin/config.py, admin/PageVServers.py: Fixes number of
domains per virtual host.
http://bugs.cherokee-project.com/247
2009-05-29 Alvaro Lopez Ortega <[email protected]>
* admin/Wizard.py, admin/static/images/wizards/Makefile.am,
admin/static/images/wizards/hotlinking.png, admin/Makefile.am,
admin/Wizard_Redirect.py, admin/Wizard_HotLinking.py: Adds a new
Hot-Linking prevention wizard.
* admin/Wizard_Django.py, admin/Wizard_Redirect.py,
admin/Wizard.py: Adds log cloning support to the 'VServer'
wizards. Logging settings can be cloned from a previously
configured virtual server.
2009-05-28 Alvaro Lopez Ortega <[email protected]>
* admin/Wizard_Django.py: Adds support of the in-virtual server
wizard. Now, Django based projects can be configured as dirs.
2009-05-27 Jonathan Hernandez <[email protected]>
* admin/Wizard_PHP.py: Add /opt/local/bin to paths
* admin/PageVServers.py, admin/PageVServer.py: Nest rules table
in a div for new look and feel and JS for show sections (work in
progress).
* admin/static/images/tab.png, admin/static/images/rulestable-th.png,
admin/static/images/menu-active.png, admin/static/css/cherokee.css:
Change images for tabs (not so rounded corners), active menu option
and table header, styles for rulestable and vserver actions.
2009-05-27 Alvaro Lopez Ortega <[email protected]>
* admin/Wizard_PHP.py, admin/util.py, admin/Wizard_Django.py,
admin/static/images/wizards/Makefile.am, admin/Makefile.am,
admin/static/images/wizards/django.png: Adds a new Wizard for
Django at virtual server level.
* cherokee/spawner.c (cherokee_spawner_spawn): Fixes compilation
on OpenSolaris. Thanks Alexander von Gluck <[email protected]>
for reporting (and for writing a spec file for Cherokee!).
2009-05-26 Alvaro Lopez Ortega <[email protected]>
* doc/cookbook_zend.txt (Cookbook): Clarifies the use of "file"
and "common". Patch by Frank Groeneveld; thanks! It fixes:
http://svn.cherokee-project.com/482
* cherokee/handler_cgi_base.c, cherokee/handler_fcgi.c: Better
error management. Fixes: http://bugs.cherokee-project.com/469
* cherokee/buffer.h (cherokee_buffer_encode_sha1_digest),
cherokee/buffer.c: Adds new method.
2009-05-25 Alvaro Lopez Ortega <[email protected]>
* cherokee/Makefile.am, cherokee/cryptor_libssl_dh_1024.c,
cherokee/cryptor_libssl_dh_512.c, cherokee/cryptor_libssl.c,
cherokee/cryptor_libssl_dh_2048.c, admin/PageAdvanced.py,
cherokee/cryptor_libssl_dh_4096.c, contrib/make-dh_params.sh: Add
support for DH parameters. Patch by Arnaud Cornet. Thanks!!
http://bugs.cherokee-project.com/457
* cherokee/rule_exists.c, cherokee/rule_exists.h: Adds a new
parameter to allow the rule to select only files, or any sort of
directory entries.
2009-05-24 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_cgi_base.c: It shouldn't reply with a HTTP
status code 200 when a redirection ("Location:") header is
returned by a {Fast,S,}CGI. It fixes bug report:
http://bugs.cherokee-project.com/478
2009-05-24 Antonio Perez <[email protected]>
* admin/PageVServers.py: Shows logging status using
images.
2009-05-24 Alvaro Lopez Ortega <[email protected]>
* admin/PageVServers.py, admin/static/images/wizards/Makefile.am,
admin/Wizard.py, admin/static/images/wizards/redirect.jpg,
admin/Wizard_Redirect.py: Adds a new Wizard: Host redirection.
* cherokee/connection-protected.h, cherokee/connection.c: Better
ret_eof_have_data management. Thanks to Stefan de Konink for his
findings and patch proposal. Good stuff!
http://bugs.cherokee-project.com/474
2009-05-23 Alvaro Lopez Ortega <[email protected]>
* cherokee.conf.sample.pre, configure.in, admin/server.py,
admin/Wizard_PHP.py, admin/Page.py, admin/Wizard_WordPress.py,
admin/PageVServer.py, admin/static/images/wizards/php.jpg,
admin/Wizard.py, admin/static/images/wizards/wordpress.jpg,
admin/util.py, admin/static/images/wizards/Makefile.am,
admin/static/images/Makefile.am, admin/PageVServers.py: Initial
support of the Wizard mechanism. Includes two examples: PHP and
Wordpress.
* admin/PageEntry.py: Show the Document Root entry even if a
handler has not been selected. There should be possible to define
non-final rules with a custom document root.
* admin/PageVServer.py (PageVServer._render_rules_generic): Adds a
new column to represent the Document Root of rules.
* cherokee/handler_cgi_base.c: Fixes the DOCUMENT_ROOT value.
* cherokee/main.c (do_spawn): Fixes a memory corruption issue.
http://bugs.cherokee-project.com/468
Thanks to [email protected] for the report!
* cherokee/config_reader.c (cherokee_config_reader_parse_string):
Fixes a regression that was introduced a few day ago.
* README: Misc updates
2009-05-22 Antonio Perez <[email protected]>
* admin/PageVServer.py, admin/static/images/Makefile.am,
admin/static/images/cross.png, admin/static/images/tick.png:
'Yes' and 'No' words in Rule List are substituted by a 'tick'
and a 'cross' images. RFE #471:
http://bugs.cherokee-project.com/471
2009-05-22 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_fcgi.c (set_env_pair): Adds a new TRACE point
to print the FastCGI variables.
2009-05-21 Alvaro Lopez Ortega <[email protected]>
* admin/consts.py: Adds a new entry for the Dutch translation.
* cherokee/main_admin.c: Use Expire headers when serving static
content. This should improve Cherokee-Admin performance slightly.
2009-05-20 Alvaro Lopez Ortega <[email protected]>
* configure.in: Check libposix4 for POSIX shm/sem functions.
AFAIK, only ancient Solaris version located them there.
2009-05-13 Antonio Perez <[email protected]>
* cherokee/main.c: Cleans shared memory stuff on exit.
2009-05-13 Alvaro Lopez Ortega <[email protected]>
* admin/consts.py: Adds a new language entry for German. The
translation isn't finished yet, but the de.po file is already in
place.
* cherokee/rule_header.c, admin/ModuleHeader.py: Adds a new 'Host'
property to the header matcher, so target hosts can also be
matched from regular rules. Patch by Stefan de Konink.
2009-05-12 Alvaro Lopez Ortega <[email protected]>
* 0.99.15 released
* cherokee/handler_file.c (cherokee_handler_file_step): Fixes
range management when the server internally uses sendfile() (and
start and end points are specified by the client). Fixes:
http://bugs.cherokee-project.com/459
Thanks to Matt Whiteley for the report.
2009-05-11 Alvaro Lopez Ortega <[email protected]>
* cherokee/buffer.c (cherokee_buffer_replace_string): It can
replace substrings with "" (empty strings). Patch by Arnaud
Cornet.
* cherokee/main.c (do_spawn): Fixes a lingering processes issue.
* cherokee.conf.sample.pre: Rewrites warning about editing the
configuration file by hand.
* cherokee/config_reader.c (cherokee_config_reader_parse_string):
Relaxes grammar. The last line of the configuration file is no
longer required to finish with a new line. Thanks to Gunnar Wolf
for letting us know. It fixes Debian bug: [email protected]
http://lists.octality.com/pipermail/cherokee/2009-May/010290.html
* cherokee/main.c: Fixes the new spawning mechanism. There were
process being left behind when cherokee exited. Fixes bug:
http://bugs.cherokee-project.com/456
2009-05-10 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_streaming.c (open_media_file): Fixes a
potential double-free() when serving broken media files.
* cherokee/spawner.h: It ought to fix a compilation issue on
FreeBSD. Thanks to Jason <[email protected]> for reporting.
* cherokee/main_admin.c: Fixes a compilation warning:
http://lists.octality.com/pipermail/cherokee/2009-May/010246.html
2009-05-09 Alvaro Lopez Ortega <[email protected]>
* cherokee/source_interpreter.c (_spawn_shm): When a custom user
is not defined, the new process GID is also inherited from the
server process. Thanks to Evangelos Foutras for the feedback!
2009-05-08 Antonio Perez <[email protected]>
* admin/ModuleWildcard.py, admin/ModuleRedir.py,
admin/ModuleCgi.py, admin/PageVServers.py, admin/ModuleBind.py,
admin/ModuleProxy.py, admin/ModuleRehost.py,
admin/PageGeneral.py, admin/ModuleBalancer.py,
admin/PageMime.py, admin/PageVServer.py, admin/PageIcon.py,
admin/ModuleAuthlist.py, admin/Form.py, admin/PageInfoSource.py,
admin/ModuleErrorRedir.py: Usability patch. Images used for
deletions now use links to execute javascript code, instead of
the onClick event.
* admin/PageEntry.py, admin/ModuleWildcard.py,
admin/ModuleAuth.py, admin/ModuleGeoip.py, admin/ModuleRedir.py,
admin/Page.py, admin/ModuleDirlist.py, admin/ModuleHtdigest.py,
admin/ModuleFile.py, admin/ModuleLdap.py,
admin/ModuleServerInfo.py, admin/ModuleCustomError.py,
admin/ModuleScgi.py, admin/PageAdvanced.py, admin/Rule.py,
admin/ModuleCgi.py, admin/ModulePlain.py,
admin/ModuleDbslayer.py, admin/PageVServers.py,
admin/ModuleEvhost.py, admin/ModuleBind.py,
admin/ModuleProxy.py, admin/ModuleRequest.py,
admin/ModuleCommon.py, admin/ModuleHeader.py,
admin/ModuleStreaming.py, admin/ModuleExtensions.py,
admin/ModuleSecdownload.py, admin/PageGeneral.py,
admin/ModuleRehost.py, admin/ModuleBalancer.py,
admin/ModuleFcgi.py, admin/PageMime.py, admin/ModuleExists.py,
admin/ModuleMethod.py, admin/PageVServer.py, admin/Form.py,
admin/ModuleHtpasswd.py, admin/PageInfoSource.py,
admin/ModuleDirectory.py, admin/ModuleMysql.py,
admin/ModuleMirror.py: Better string translation support. Fixes
problems with empty strings, and fixes a problem with strings
that was not translated when the user changes the language.
2009-05-07 Antonio Perez <[email protected]>
* admin/server.py: Cherokee-Admin fails if HTTP_ACCEPT_LANGUAGE
is not included in request header. Fixes bug #453:
http://bugs.cherokee-project.com/453
2009-05-06 Antonio Perez <[email protected]>
* admin/ModuleBalancer.py, admin/ModuleDirlist.py: Fixes an i18n
issue related to empty strings.
2009-05-06 Alvaro Lopez Ortega <[email protected]>
* 0.99.14 released
2009-05-05 Alvaro Lopez Ortega <[email protected]>
* po/admin/es.po: Updates the Spanish translation.
* admin/PageInfoSource.py: Fixes NOTE_GROUP.
* cherokee/handler_file.c, cherokee/handler_file.h,
qa/146-ContentRange4-NoIO.py, qa/056-ContentRange3.py,
qa/145-ContentRange3-NoIO.py, qa/057-ContentRange4.py,
qa/058-ContentRange-Double.py: Fixes the 'Range:' management:
http://bugs.cherokee-project.com/454 Special
thanks to Arnaud Cornet for his report and patch.
2009-05-04 Alvaro Lopez Ortega <[email protected]>
* cherokee/logger.c (parse_x_real_ip), admin/PageVServer.py: Adds
support for the X-Forwarded-For header.
* cherokee/socket.c (cherokee_socket_sendfile): Fixes an important
bug. Under certain circunstances, the server load was
sky-rocketing because really CPU hogy loops were executed.
2009-04-30 Alvaro Lopez Ortega <[email protected]>
* 0.99.13 released
* cherokee/Makefile.am, cherokee/source_interpreter.c,
cherokee/spawner.c, cherokee/main.c, configure.in: Fixes the new
spawning mechanism so Cherokee can be compiled without POSIX
shared memory support. (It seems that uclibc lacks it).
* cherokee/source_interpreter.c: Use the default group whenever a
UID is specified but a GID changed is not.
2009-04-29 Alvaro Lopez Ortega <[email protected]>
* cherokee/spawner.c, cherokee/spawner.h, cherokee/shm.c,
cherokee/main.c: Fixes a spawner issue. It tries to fix:
http://bugs.cherokee-project.com/449
* cherokee/source_interpreter.c, cherokee/source_interpreter.h,
cherokee/spawner.c, cherokee/spawner.h, admin/PageInfoSource.py,
cherokee/main.c: Adds group changing capabilities.
* cherokee/server.c: Use cherokee_getgrnam() instead of getgrnam().
2009-04-28 Alvaro Lopez Ortega <[email protected]>
* 0.99.12 released
* cherokee/validator_mysql.c: A data base password isn't actually
required. Thus, the check for a password has been removed.
* admin/ModuleMysql.py (ModuleMysql._op_apply_changes): Disables
MD5 passwords when using Digest authentication.
2009-04-26 Alvaro Lopez Ortega <[email protected]>
* cherokee/Makefile.am, cherokee/init.c: Fixes cget compilation.
2009-04-25 Alvaro Lopez Ortega <[email protected]>
* cherokee/main.c (do_spawn): Fixes a glibc 2.9 compilation
problem. Thanks to Jacob Peddicord <[email protected]> for
pointing out the issue.
* configure.in: Adds librt detection.
* admin/PageVServer.py (PageVServer._op_apply_changes): Fixes
logger disabilitation.
* cherokee/source_interpreter.c: If no custom UID is defined,
spawn new interpreters with the same UID as cherokee-worker.
2009-04-24 Alvaro Lopez Ortega <[email protected]>
* cherokee/macros.h, cherokee/Makefile.am, cherokee/spawner.c,
cherokee/source_interpreter.c, cherokee/logger_combined.c,
cherokee/logger.c, cherokee/logger.h, cherokee/spawner.h,
cherokee/logger_w3c.c, cherokee/logger_w3c.h, cherokee/init.c,
cherokee/shm.c, cherokee/shm.h, cherokee/main_admin.c,
cherokee/main.c, cherokee/logger_ncsa.c, cherokee/logger_ncsa.h,
cherokee/handler_cgi.c, cherokee/logger_custom.c,
cherokee/logger_custom.h, cherokee/logger_combined.h,
cherokee/server.c: A new process spawning mechanism has been
implemented. It uses the main cherokee process (running as root)
to spawn new processes, so their UID can be changed. In this way,
cherokee-worker can run as an unprivileged user while interpreter
are spawned as another user.
* cherokee/handler_cgi_base.c, cherokee/handler_file.c,
qa/202-xsendfile2.py: Fixes a X-Sendfile support issue. It wasn't
coming along with keep-alive and chunked connections.
2009-04-23 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_cgi_base.c (parse_header): Fixes the
X-Accel-Redirect support.
2009-04-22 Alvaro Lopez Ortega <[email protected]>
* admin/server.py (main): Fixes a translation problem (warning).
2009-04-22 Antonio Perez <[email protected]>
* admin/consts.py, admin/PageVServer.py: Fixes a bug, which was
causing that the domain mathing method of a virtual server could
be set but not configured.
2009-04-21 Alvaro Lopez Ortega <[email protected]>
* cherokee/thread.c: Cleans up the piece of code where connections
were being closed. The behaviour changes as well, lingering close
is used by default now.
2009-04-21 Antonio Perez <[email protected]>
* cherokee/socket.c, cherokee/cryptor_libssl.c: Tries to fix
some SSL issues. Related to bug:
http://bugs.cherokee-project.com/413
2009-04-21 Alvaro Lopez Ortega <[email protected]>
* cherokee.conf.sample.pre: Adds a mime-type for JSON, and remove
a few others.
* cherokee/thread.c, cherokee/thread.h: Do not call pthread_wait
twice (it crashes).
* cherokee/handler_file.c, cherokee/handler_cgi.c,
cherokee/connection.c: Use cherokee_bogonow_now instead of the
thread local variable - it's proved to be safer.
2009-04-20 Alvaro Lopez Ortega <[email protected]>
* admin/PageEntry.py: Reflexs the latest feature in
Cherokee-admin.
* cherokee/virtual_server.c, cherokee/Makefile.am,
cherokee/cherokee.h, cherokee/config_entry.c,
cherokee/config_entry.h, cherokee/nullable.h, cherokee/thread.c:
Implements a new 'no_log' property, so rules can specify whether
or not they want requests to be logged.
* cherokee/handler_proxy.c (build_request): Fixes bug #450
http://bugs.cherokee-project.com/450
* cherokee/main_admin.c (config_server): It was not printing the
right port when the -p was used.
2009-04-18 Antonio Perez <[email protected]>
* cherokee/logger_w3c.c, cherokee/logger_ncsa.c: Query string
was being added to original request in NCSA and Apache compatible
logs; and was not being included in W3C log format. Thanks to
Enric Agut for reporting this bug.
2009-04-18 Alvaro Lopez Ortega <[email protected]>
* 0.99.11 released
* cherokee/server.c (cherokee_server_step): Fixes a Graceful
Restart issue. The server was hogging the CPU while two or more
workers were working at the same time. This bug was also reported
by Stefan de Konink.
* cherokee/thread.c: Tries to fix an important bug. Random
connections were being closed every now and then. Bug discovered
by Stefan de Konink.
2009-04-17 Alvaro Lopez Ortega <[email protected]>
* configure.in: Disable NLS support if gettext is not installed.
* m4/progtest.m4, m4/Makefile.am, m4/nls.m4, m4/po.m4, autogen.sh,
po/admin/en.po, po/admin/Rules-quot, po/admin/insert-header.sin,
po/admin/es., po/admin/remove-potcdate.sin, po/admin/cherokee.pot,
po/admin/Makefile.in.in, po/admin/ChangeLog, po/admin/POTFILES.in,
po/admin/quot.sed, po/admin/LINGUAS, po/admin/[email protected],
po/admin/[email protected], po/admin/boldquot.sed, README,
po/admin/Makevars, po/Makefile.am, configure.in, admin/config.py,
admin/server.py, admin/configured.py.pre, Makefile.am,
admin/po/cherokee-admin-en.po, admin/po/cherokee-admin.pot,
admin/po/cherokee-admin-es.po, admin/Makefile.am: 'Native Language
Support' integration.
2009-04-17 Alvaro Lopez Ortega <[email protected]>
* admin/config.py (Config._parse): Fixes bug #444
http://bugs.cherokee-project.com/444
Cherokee-admin had trouble parsing configuration files with
embedded SQL queries.
2009-04-16 Antonio Perez <[email protected]>
* admin/ModuleGeoip.py, admin/ModuleBind.py,
admin/po/cherokee-admin-en.po, admin/po/cherokee-admin.pot,
admin/po/cherokee-admin-es.po: More i18n changes and
translation files updates.
2009-04-16 Alvaro Lopez Ortega <[email protected]>
* cherokee/bind.c (cherokee_bind_init_port): Clarifies the error
message.
* cherokee/handler_redir.c, qa/228-Redir-Paths2.py,
qa/Makefile.am, qa/227-Redir-Paths.py: Fixes bug #432
http://bugs.cherokee-project.com/432
Now hidden redirections can use non-global paths.
* cherokee/handler_cgi_base.c, admin/ModuleCgi.py: It will be
handier for many people if {Fast,S,}CGIs have the error handler
bit set by default.
2009-04-15 Antonio Perez <[email protected]>
* admin/static/css/cherokee.css, admin/status.template.html,
admin/Page.py, admin/PageStatus.py: i18n changes to Status page
template, and the language drop-down menu was moved to the upper
right corner of Status page.
* admin/PageStatus.py: Removes Change Language button.
* admin/PageEntry.py, admin/Rule.py, admin/PageStatus.py,
admin/ModuleBind.py, admin/PageFeedback.py: Fixes feedback page
and other minor issues.
2009-04-15 Alvaro Lopez Ortega <[email protected]>
* admin/Page.py, admin/PageStatus.py, admin/status.template.html:
The language drop-down menu isn't something that the user has to
access frequently. Thus, I've moved it away from the sidebar. The
CSS style has still to be fixed for this new location though.
* cherokee/validator_authlist.c, admin/ModuleAuthlist.py: Fixes
bug http://bugs.cherokee-project.com/433 . An
empty authlist validator is no longer a fatal error.
2009-04-15 Taher Shihadeh <[email protected]>
* admin/Rule.py: fixes issue
http://bugs.cherokee-project.com/440
2009-04-14 Alvaro Lopez Ortega <[email protected]>
* qa/226-PathInfo-Default.py: Adds a new QA to test:
http://bugs.cherokee-project.com/439
2009-04-14 Antonio Perez <[email protected]>
* admin/ModuleEmptyGif.py, admin/ModuleAdmin.py,
admin/PageEntry.py, admin/ModuleWildcard.py,
admin/error_icons_dir_missing.template.html, admin/Theme.py,
admin/config.py, admin/server.py, admin/ModuleAuth.py,
admin/ModuleGeoip.py, admin/ModuleRedir.py, admin/Page.py,
admin/PageNewConfig.py, admin/ModuleDirlist.py,
admin/ModuleHtdigest.py, admin/ModuleFile.py,
admin/PageError.py, admin/ModuleLdap.py,
admin/ModuleServerInfo.py, admin/ModuleCustomError.py,
admin/ModuleScgi.py, admin/error_couldnt_launch.template.html,
admin/PageAdvanced.py, admin/Rule.py, admin/ModuleCgi.py,
admin/ModulePlain.py, admin/ModuleDbslayer.py,
admin/PageVServers.py, admin/ModuleEvhost.py,
admin/PageStatus.py, admin/ModuleBind.py, admin/ModuleProxy.py,
admin/ModuleRoundRobin.py,
admin/error_not_writable.template.html, admin/ModuleHeader.py,
admin/ModuleCommon.py, admin/ModuleRequest.py,
admin/ModuleStreaming.py, admin/ModuleSsi.py,
admin/ModuleExtensions.py, admin/ModuleSecdownload.py,
admin/consts.py, admin/default.template.html,
admin/PageGeneral.py, admin/ModuleRehost.py,
admin/ModuleBalancer.py, admin/ModuleFcgi.py, admin/PageMime.py,
admin/ModuleExists.py, admin/ModuleMethod.py,
admin/po/cherokee-admin-en.po, admin/po/cherokee-admin.pot,
admin/po/cherokee-admin-es.po, admin/Table.py,
admin/PageVServer.py, admin/static/css/cherokee.css,
admin/Entry.py, admin/ModuleAuthlist.py, admin/Form.py,
admin/ModuleHtpasswd.py, admin/PageInfoSource.py,
admin/status.template.html, admin/ModuleDirectory.py,
admin/ModuleMysql.py, admin/validations.py,
admin/ModuleMirror.py, admin/PageFeedback.py,
admin/CherokeeManagement.py, admin/ModuleIpHash.py,
admin/PageIcon.py, admin/ModuleErrorRedir.py: Adds
internationalization (i18n) to cherokee-admin.
* admin/server.py, admin/Page.py, admin/po/cherokee-admin-en.po,
admin/po/cherokee-admin.pot, admin/po/cherokee-admin-es.po,
admin/PageVServer.py, admin/Form.py, admin/status.template.html:
More i18n related changes.
2009-04-14 Alvaro Lopez Ortega <[email protected]>
* cherokee/handler_cgi_base.c, qa/225-PathTranslated.py,
qa/Makefile.am: Adds PATH_TRANSLATED support to {Fast,S,}CGI. It
also adds a new QA test.
* admin/PageVServer.py (PageVServer._render_hosts): Makes the
Virtual Server page slightly more consistent. It wasn't showing
the "Domain Matching" tab in the 'default' virtual host, and that
has proved to be confusing for some users.
2009-04-13 Alvaro Lopez Ortega <[email protected]>
* 0.99.10 released
2009-04-10 Alvaro Lopez Ortega <[email protected]>
* cherokee/proxy_hosts.c (poll_release): Implements a better reuse
policy.
2009-04-09 Alvaro Lopez Ortega <[email protected]>
* cherokee/bogotime.c (update_guts): Fixes a regression and I
introducced yesterday.
* cherokee/connection.c (cherokee_connection_instance_encoder):
Encoders should not be used for replies without body.
* doc/modules_loggers_custom.txt, doc/modules_loggers.txt,
doc/modules.txt, doc/Makefile.am: Adds some basic 'Custom logger'
documentation.
* cherokee/handler_proxy.c (cherokee_handler_proxy_init): Improve
error management on the initialization phase.
2009-04-08 Alvaro Lopez Ortega <[email protected]>
* cherokee/socket.c (cherokee_socket_test_read): New method.
* cherokee/http.h, cherokee/http.c: Adds 406 Not acceptable.
* cherokee/proxy_hosts.c, cherokee/handler_cgi_base.c,
cherokee/util.c: Adds a check to ensure that the incoming header
isn't larger than MAX_HEADER_LEN.
* cherokee/handler_proxy.c, cherokee/handler_proxy.h,
admin/ModuleProxy.py: Adds a new option to preserve the original
"Host:" header when the reverse proxy forwards a request.
* cherokee/logger_w3c.c, cherokee/bogotime.c, cherokee/bogotime.h,
cherokee/util.c, cherokee/util.h, cherokee/logger_ncsa.c: Some
updates regarding the time management routines. Some unused stuff
have been removed; a new callback mechanism has been also added.
* cherokee/logger_custom.c: Implements a couple of variable
replacement that were unimplemented yet.
2009-04-07 Alvaro Lopez Ortega <[email protected]>
* doc/media/images/admin_general.png,
doc/media/images/admin_vserver_loggers.png,
doc/media/images/admin_general_networking.png,
doc/media/images/admin_advanced2.png,
doc/media/images/admin_advanced4.png,
doc/media/images/admin_general_permissions.png,
doc/media/images/admin_behaviour.png,
doc/media/images/admin_vserver.png,
doc/media/images/admin_rule_regex.png,
doc/media/images/admin_general_ports.png,
doc/media/images/admin_advanced1.png,
doc/media/images/admin_advanced3.png,
doc/media/images/admin_notrunning.png,
doc/media/images/admin_vserver_security.png,
doc/media/images/admin_noconfig.png,
doc/media/images/admin_vserver_vserver.png,
doc/config_info_sources.txt, doc/basics_upgrade.txt,
doc/Makefile.am: Documentation requires some attention. Some
images have been updated. More commits to come.
* cherokee/main_admin.c: Added a couple of printf()s to report the
URL where cherokee-admin interface is accessible.
* cherokee/header.c, cherokee/header.h, cherokee/handler_proxy.c,
cherokee/connection.c: Adds some sort support for POST requests
with "Expect: 100-Continue" header.
2009-04-07 Antonio Perez <[email protected]>
* admin/PageVServer.py: 'Host Match' tab should not be available
for 'default' Virtual Host. Fixes bug #427:
http://bugs.cherokee-project.com/427
* admin/Rule.py: Fixes a bug with checkboxes in complex rules.
http://bugs.cherokee-project.com/405
* admin/consts.py, admin/PageVServer.py: Adds initial custom logs
support to Cherokee-Admin.
2009-04-06 Alvaro Lopez Ortega <[email protected]>
* cherokee/server.c (cherokee_server_get_log_writer): Fixes a tiny
memory leak.
* qa/222-EVHost1.py, qa/223-EVHost2.py, qa/224-EVHost3.py,
qa/Makefile.am: Three new QA tests for testing the EVHost support.
* cherokee/virtual_server.c: Fixes a wrong memory initialization
issue introduced a couple of days ago.
* cherokee/gen_evhost.c, admin/PageVServer.py,
cherokee/gen_evhost.h, admin/ModuleEvhost.py: Adds a new
'check_document_root' flag to the EVHost plug-in. If turned on, it
will check whether the dynamically generated document root
exist. If not, it will use the regular document root instead.
2009-04-05 Alvaro Lopez Ortega <[email protected]>
* contrib/0999to09910.py (convert): Fix. Do not convert host that
have no 'domain' entries (usually 'default').
* admin/ModuleWildcard.py, admin/ModuleRehost.py: Warn the user if
the list ('domain' or 'regex') is empty.
* admin/ModuleEvhost.py, admin/consts.py, admin/PageVServer.py,
admin/Makefile.am: Adds "Enhanced Virtual Hosting" support to
cherokee-admin.
2009-04-04 Alvaro Lopez Ortega <[email protected]>
* cherokee/virtual_server.c, cherokee/virtual_server.h,
cherokee/Makefile.am, cherokee/gen_evhost.c, cherokee/plugin.h,
cherokee/gen_evhost.h, cherokee/connection.c, configure.in: Adds a
new "Enhanced Virtual Hosting" plug-in. It allows to define
generic virtual servers that can handle many different hosts.
Document root directories are dynamically generated (based on the
domain name).
* cherokee/handler_server_info.c: Adds support for vrules
[matching rules for virtual servers].
* admin/ModuleWildcard.py, admin/consts.py, admin/ModuleRehost.py,
admin/Makefile.am: Adds support for the 'Rehost' vrule in
cherokee-admin.
* admin/ModuleWildcard.py, admin/consts.py, admin/PageVServer.py,
admin/Makefile.am: The new 'wildcard' virtual host match plug-in
is now supported by cherokee-admin.
* contrib/0999to09910.py: New configuration file converter.
Cherokee 0.99.9 to Cherokee 0.99.10.
2009-04-03 Alvaro Lopez Ortega <[email protected]>
* cherokee/Makefile.am, cherokee/vrule.c, cherokee/vrule.h,
cherokee/vrule_rehost.c, cherokee/vrule_rehost.h,
cherokee/vrule_wildcard.c, cherokee/template.h,
cherokee/server-protected.h, cherokee/connection.c,
cherokee/server.c, configure.in, qa/Makefile.am,
qa/221-ReHost1.py: Adds a new "Host:" matcher based on regular
expressions. It also adds a new QA test for it.
* cherokee/virtual_server.c, cherokee/virtual_server.h,
cherokee/Makefile.am, cherokee/vrule.c, cherokee/vrule.h,
cherokee/vrule_wildcard.c, cherokee/vrule_wildcard.h,
cherokee/plugin.h, cherokee/virtual_server_names.c,
cherokee/virtual_server_names.h, cherokee/server.c, configure.in,
qa/125-domain-redir1.py, qa/020-VirtualHost.py, qa/045-Home2.py,
qa/044-Home.py, qa/021-VirtualHost2.py, qa/121-NoUserDir.py,
qa/094-URL-request.py, qa/139-domain-wildcards1.py: This patch
introduces a new plug-in type 'virtual server rule'. It's similar
to the behavior rules, but they are used to match virtual servers.
This infrastructure will be used as base to build a more powerful
'Enhanced Virtual-Hosting' mechanism.
* cherokee/rule.c: Clean up.
* cherokee/header.c, cherokee/header.h, cherokee/logger.c,
cherokee/logger_w3c.c, admin/Form.py, cherokee/logger.h,
cherokee/handler_proxy.c, cherokee/logger_combined.c,
cherokee/logger_custom.c, admin/PageVServer.py,
cherokee/logger_ncsa.c: Rework the X-Real-IP. Now it's supported
globally (at logger level), so Cherokee can act as consumer of
X-Real-IP headers, and it can also generate them from the proxy.
2009-04-02 Alvaro Lopez Ortega <[email protected]>
* 0.99.9 released
* cherokee/handler_proxy.c (build_request): X-Real-IP is processed
in the proxy request. Thanks Denis Kot for pointing the mistake.
* cherokee/connection-protected.h, cherokee/handler_proxy.c,
cherokee/logger_custom.c, cherokee/logger_ncsa.c,
cherokee/connection.c: Adds X-Real-IP to the Reverse HTTP proxy,
ans the NCSA, Combined and Custom loggers.
* cherokee/util.c (cherokee_get_timezone_ref): Implements timezone
reading in FreeBSD. Patch based on bozzaj's patch (thanks!):
http://bugs.cherokee-project.com/424
* cherokee/handler_file.c (cherokee_handler_file_custom_init):
Fixes a encoder handling problem where a encoder wasn't taken into
account when it was actually going to be used.
2009-04-01 Alvaro Lopez Ortega <[email protected]>
* cherokee/logger_ncsa.c (build_log_string): The query_string was
not being included in the logger. Patch by bozzaj.
* cherokee/logger_ncsa.c (build_log_string): Negative Timezones
were incorrectly printed in the log files. Patch by bozzaj.
* cherokee/virtual_server.c, cherokee/virtual_server.h,
cherokee/logger_writer.c, cherokee/logger_writer.h,
cherokee/logger.h, cherokee/logger_w3c.c, cherokee/logger_w3c.h,