-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
10285 lines (6500 loc) · 347 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
2011-07-13 19:46 John Beranek <[email protected]>
* [r1841] web/systemdefaults.inc.php:
* A fix for use an uninitialised array in
Themes/default/header.inc, as reported (and fix provided) by
Henry Thompson on the mailing list.
2011-07-13 19:39 John Beranek <[email protected]>
* [r1840] web/File[ADD], web/File/Passwd[ADD],
web/File/Passwd.php[ADD], web/File/Passwd/Authbasic.php[ADD],
web/File/Passwd/Authdigest.php[ADD],
web/File/Passwd/Common.php[ADD], web/File/Passwd/Custom.php[ADD],
web/File/Passwd/Cvs.php[ADD], web/File/Passwd/Smb.php[ADD],
web/File/Passwd/Unix.php[ADD], web/auth_auth_basic.inc[ADD],
web/auth_crypt.inc[ADD]:
* Added two new auth methods, 'crypt' and 'auth_basic'. The
former uses PHP's crypt() function to interpret a password file.
The other uses the PEAR package File_Passwd to interpret an "auth
basic" file, like one created by Apache's htpasswd programme.
Neither are documented in AUTHENTICATION yet.
2011-06-21 18:36 Campbell Morrison <[email protected]>
* [r1839] web/functions_mail.inc:
If we're sending iCalendar notifications, then it seems that some
calendar applications use the email subject as the booking title
instead of the iCal SUMMARY field. As far as I can see this is
wrong, but as a circumvention we'll put the booking title in the
email subject line instead of the standard subject. (See also SF
Tracker id 3297799)
2011-06-21 15:01 Campbell Morrison <[email protected]>
* [r1838] web/edit_entry_handler.php, web/lang.en,
web/mrbs_sql.inc, web/systemdefaults.inc.php:
Implemented an optional limit on the maximum length of a booking
for non-admins. At the moment it is a global limit rather than
per-area. It also does not yet prevent invalid booking lengths
being shown in the edit_entry form.
2011-06-21 08:51 Campbell Morrison <[email protected]>
* [r1837] INSTALL, web/Themes/default/header.inc, web/dbsys.inc,
web/edit_users.php, web/functions.inc, web/functions_mail.inc,
web/functions_view.inc, web/report.php, web/search.php,
web/systemdefaults.inc.php:
- On the Report page, converted input fields into auto-complete
fields for custom fields that have select_options defined - For
custom fields allowed $select_options to be an associative array,
thus making it easy to change the displayed value without having
to change the database. (See SF #3315966)
2011-06-08 10:31 Campbell Morrison <[email protected]>
* [r1836] web/functions.inc:
Fixed bug that caused durations to be formatted incorrectly in
some languages (eg German). See SF tracker #3313655.
2011-05-26 11:36 Campbell Morrison <[email protected]>
* [r1831] web/auth_db.inc:
Fixed bug which meant that a user logging in with an upper case
version of his name (eg "John" instead of "john" was denied
access to some pages in MySQL when the collation of the username
field is set to binary and PostgreSQL always)
2011-05-26 09:05 Campbell Morrison <[email protected]>
* [r1830] web/dbsys.inc, web/edit_area_room.php, web/mysql.inc,
web/mysqli.inc, web/pgsql.inc:
Fixed bug preventing a room name being changed when only the case
of letters in the name was being changed.
2011-05-18 16:17 John Beranek <[email protected]>
* [r1828] web/auth_ldap.inc:
* LDAP authentication change to fix (particular) configurations
using $ldap_filter. Patch provided by rudd_j in SF tracker
#3299258.
2011-05-14 11:01 Campbell Morrison <[email protected]>
* [r1827] web/lang.de, web/lang.en, web/report.php:
Added an option to report.php to summarize by type. Thamks to a
patch submitted by Thomas Bleher.
2011-05-14 10:15 Campbell Morrison <[email protected]>
* [r1826] web/language.inc:
Added lang.en as the fall-back language, in order that something
is shown even when the $default_language_tokens file does not
have a translated token. Based on a patch by Thomas Bleher.
2011-05-14 09:37 Campbell Morrison <[email protected]>
* [r1825] INSTALL, web/areadefaults.inc.php[ADD],
web/config.inc.php, web/defaultincludes.inc, web/mrbs_auth.inc,
web/systemdefaults.inc.php:
Extracted the per-area default settings from systemdefaults and
put them into a new file, areadefaults.inc.php, to make it more
obvious that these are the default settings for new areas and
will have no effect on existing areas.
2011-05-13 10:19 Campbell Morrison <[email protected]>
* [r1824] web/functions_mail.inc, web/systemdefaults.inc.php:
Added some email debug information to help diagnose problems when
sending emails.
2011-05-05 19:47 John Beranek <[email protected]>
* [r1823] web/auth_ext.inc:
Clarified documention in auth_ext.php a little
2011-05-03 08:48 Campbell Morrison <[email protected]>
* [r1822] web/lang.de:
Added missing entries based on SF tracker #3293801
2011-05-03 08:32 Campbell Morrison <[email protected]>
* [r1821] web/trailer.inc:
Removed unnecessary class attribute
2011-05-03 08:12 Campbell Morrison <[email protected]>
* [r1820] web/trailer.inc:
Removed unnecessary <span>. Thanks to patch from Thomas Bleher.
2011-04-20 14:52 Campbell Morrison <[email protected]>
* [r1819] web/functions_mail.inc:
Changed encoding of mail messages from 7bit to 8bit
2011-04-20 14:33 Campbell Morrison <[email protected]>
* [r1818] web/functions_mail.inc:
Changed the encoding of the text calendar to base64 so that
Postfix will preserve CRLF sequences (which are mandatory
terminators according to RFC 5545). Thanks to Thomas Bleher for
the patch.
2011-04-15 17:55 Campbell Morrison <[email protected]>
* [r1817] tables.my.pre41.sql, tables.my.sql, tables.pg.pre73.sql,
tables.pg.sql, web/Themes/default/header.inc, web/dbsys.inc,
web/edit_area_room.php, web/functions.inc,
web/internalconfig.inc.php, web/mrbs.css.php,
web/systemdefaults.inc.php, web/upgrade/27[ADD],
web/upgrade/27/mysql.sql[ADD], web/upgrade/27/pgsql.sql[ADD]:
Added an option to make the default duration All Day
2011-04-15 17:40 Campbell Morrison <[email protected]>
* [r1816] web/Themes/default/header.inc:
Fixed bug introduced in Rev 1814 that caused the time selectors
on the edit_entry form not to be displayed properly
2011-04-15 07:38 Campbell Morrison <[email protected]>
* [r1815] web/Themes/default/header.inc:
Updated comments following Rev 1813
2011-04-12 13:50 Campbell Morrison <[email protected]>
* [r1814] web/Themes/default/header.inc:
- Tidied up the code - Changed the way IE6 conditional comments
are used in the last revision to avoid HTML validation errors
2011-04-12 13:38 Campbell Morrison <[email protected]>
* [r1813] web/Themes/default/header.inc,
web/jquery/ui/css/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png,
web/jquery/ui/css/sunny/images/ui-icons_d19405_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_eb990f_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_ffe180_256x240.png,
web/jquery/ui/css/sunny/jquery-ui-1.8.11.custom.css,
web/jquery/ui/jquery-ui-1.8.11.custom.min.js, web/mrbs.css.php,
web/systemdefaults.inc.php:
Made the inputs for Match Area and Match Room on the Report page
into autocomplete fields, meaning that you can either choose from
a list of areas or rooms or else enter your own text. (As well as
saving typing if you want a particular area or room it also has
the added advantage of letting you see in advance what the
results of a match would be). Not supported in IE6 and below as
the autocomplete box doesn't render properly.
2011-04-11 13:32 Campbell Morrison <[email protected]>
* [r1812] web/Themes/default/header.inc,
web/jquery/ui/jquery-ui-datepicker-no.js[DEL]:
Removed the explicit Norwegian datepicker initialisation as it
has now been incorporated by the jQuery UI team in the standard
product.
2011-04-11 13:22 Campbell Morrison <[email protected]>
* [r1811] web/Themes/default/header.inc,
web/jquery/ui/jquery-ui-datepicker-en-AU.js[DEL],
web/jquery/ui/jquery-ui-datepicker-en-NZ.js[DEL]:
Removed the explicit en-AU and en-NZ datepicker initialisations
as they have now been incorporated by the jQuery UI team in the
standard product.
2011-04-11 13:13 Campbell Morrison <[email protected]>
* [r1810] web/Themes/default/header.inc,
web/jquery/ui/css/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png,
web/jquery/ui/css/sunny/images/ui-icons_eb990f_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_fadc7a_256x240.png,
web/jquery/ui/css/sunny/jquery-ui-1.8.11.custom.css[ADD],
web/jquery/ui/css/sunny/jquery-ui-1.8.6.custom.css[DEL],
web/jquery/ui/jquery-ui-1.8.11.custom.min.js[ADD],
web/jquery/ui/jquery-ui-1.8.6.custom.min.js[DEL],
web/jquery/ui/jquery-ui-i18n.js, web/style.inc:
Upgraded to jQuery UI 1.8.11
2011-04-11 11:37 Campbell Morrison <[email protected]>
* [r1809] web/Themes/default/header.inc,
web/jquery/jquery-1.4.2.min.js[DEL],
web/jquery/jquery-1.5.2.min.js[ADD]:
Upgraded to jQuery 1.5.2
2011-03-30 07:52 Campbell Morrison <[email protected]>
* [r1808] web/edit_entry_handler.php, web/functions_mail.inc,
web/mrbs_sql.inc:
Fixed bug causing custom fields not to be reported properly in
delete email notifications
2011-03-27 22:14 Campbell Morrison <[email protected]>
* [r1807] web/edit_entry.php, web/edit_entry_handler.php:
Fixed a problem whereby the range of the time selectors was an
hour out if you tried to make a booking for a DST changeover day
(the booking was being made for the requested time, but the
selectors prevented you from choosing the first/last hour of the
booking day). [ In the process also removed a couple of instances
of the use of the deprecated is_dst parameter to mktime() ]
2011-03-26 15:04 John Beranek <[email protected]>
* [r1806] web/config.inc.php:
* Hopefully clarified config.inc.php a little more.
2011-03-16 08:03 Campbell Morrison <[email protected]>
* [r1805] web/systemdefaults.inc.php:
Removed reference to INSTALL file for further details on setting
up email notifications (as there are none!)
2011-03-15 16:42 Campbell Morrison <[email protected]>
* [r1804] web/systemdefaults.inc.php:
Removed a type which had accidentally got into the trunk during
testing
2011-03-14 14:37 Campbell Morrison <[email protected]>
* [r1803] web/functions.inc:
Fixed a bug whereby the trailer wasn't being displayed properly
in the case of a fatal error.
2011-03-14 14:23 Campbell Morrison <[email protected]>
* [r1802] web/mrbs_sql.inc:
Fixed a bug whereby the header wasn't displayed in some
circumstances (eg view an entry unlogged in, then log in and
reject the entry)
2011-03-09 17:00 John Beranek <[email protected]>
* [r1801] web/lang.es:
* Updated Spanish translation provided by Jose Luis Martin
Jimenez.
2011-03-03 10:29 Campbell Morrison <[email protected]>
* [r1800] INSTALL, web/edit_entry.php, web/systemdefaults.inc.php:
Fixed client side validation to check for mandatory custom
checkbox inputs.
2011-03-01 09:53 Campbell Morrison <[email protected]>
* [r1799] web/upgrade/17/post.inc:
Fixed bug whereby the approval status in the repeat table wasn't
being set properly.
2011-03-01 09:11 Campbell Morrison <[email protected]>
* [r1798] web/upgrade/17/post.inc:
Improved error reporting in previous change
2011-03-01 08:45 Campbell Morrison <[email protected]>
* [r1797] web/upgrade/17/post.inc:
Added some error reporting to upgrade 17
2011-02-28 20:02 Campbell Morrison <[email protected]>
* [r1796] web/functions_mail.inc:
Removed redundant global declaration
2011-02-24 09:20 Campbell Morrison <[email protected]>
* [r1795] web/auth_db.inc:
Added some error handling to the auth_db database queries
2011-02-23 09:30 Campbell Morrison <[email protected]>
* [r1794] web/Themes/default/header.inc:
Fixed incomplete php tag causing JavaScript errors on some
systems
2011-02-22 10:46 Campbell Morrison <[email protected]>
* [r1793] web/functions.inc:
Added a '/' to the list of characters escaped in JavaScript
strings to prevent HTML validation errors being generated on the
edit_entry page if there's a '/' in the room or area name.
2011-02-22 10:26 Campbell Morrison <[email protected]>
* [r1792] web/edit_entry.php, web/functions.inc,
web/systemdefaults.inc.php:
Removed the assumption that the key for the $typel array is a
single character in the range 'A'..'Z', thus paving the way for
increasing the number of meeting types allowed.
2011-02-17 15:13 Campbell Morrison <[email protected]>
* [r1791] web/report.php:
Fixed bug whereby the "You are <user>" link was not generating
reports properly.
2011-02-11 22:51 John Beranek <[email protected]>
* [r1790] web/version.inc:
* Updated version number post-release.
2011-02-11 20:49 John Beranek <[email protected]>
* [r1789] web/functions_view.inc:
* Fix from the mailing list so that custom fields are shown in
the "view entry" screen.
2011-02-09 20:45 John Beranek <[email protected]>
* [r1785] ChangeLog, NEWS:
* Updated NEWS and ChangeLog for 1.4.6 release.
2011-02-09 20:08 John Beranek <[email protected]>
* [r1784] web/version.inc:
* Updated version number for 1.4.6 release.
2011-02-03 12:42 John Beranek <[email protected]>
* [r1783] web/lang.es:
* Updated Spanish translation received from Jose Luis Martin
Jimenez.
2011-01-31 16:56 John Beranek <[email protected]>
* [r1782] web/Themes/default/header.inc:
* Reverted one of the $PHP_SELF handling changes, which was
unnecessary.
2011-01-31 11:02 Campbell Morrison <[email protected]>
* [r1781] web/Themes/default/footer.inc:
Fixed an HTML validation error
2011-01-31 10:04 Campbell Morrison <[email protected]>
* [r1780] web/Themes/default/header.inc:
Fixed bug introduced in Rev 1775, causing styling errors and lack
of JavaScript functionality
2011-01-30 10:06 Campbell Morrison <[email protected]>
* [r1779] web/add.php, web/admin.php, web/day.php, web/del.php,
web/edit_area_room.php, web/edit_entry.php,
web/edit_entry_handler.php, web/edit_users.php, web/lang.en,
web/month.php, web/mrbs_sql.inc, web/pending.php, web/report.php,
web/search.php, web/week.php:
Improved handling of SQL errors
2011-01-30 09:33 John Beranek <[email protected]>
* [r1778] web/edit_entry.php:
* Fixed a few more HTML escaping issues, and rewrapped a few long
lines.
2011-01-30 08:18 John Beranek <[email protected]>
* [r1777] web/functions.inc:
* Fixed a few more cases where things weren't correctly escaped.
2011-01-30 08:00 John Beranek <[email protected]>
* [r1776] web/admin.php, web/view_entry.php:
* Fixed two more places where $PHP_SELF was used in HTML without
being properly escaped.
2011-01-28 23:46 John Beranek <[email protected]>
* [r1775] web/Themes/default/header.inc, web/session_php.inc:
* Fixed some XSS/escaping bugs reported by 'kevan_' in SF
#3167226.
2011-01-28 22:02 John Beranek <[email protected]>
* [r1774] web/language.inc:
* Possibly corrected the new locale selection logic from r1773.
2011-01-28 21:54 John Beranek <[email protected]>
* [r1773] web/language.inc:
* Now chooses a determined locale wven if MRBS doesn't have a
translation for that locale. It's better than nothing to get
dates/times right. Reported by 'corn_kid' as SF #2934313.
2011-01-28 21:45 John Beranek <[email protected]>
* [r1772] web/edit_entry.php, web/systemdefaults.inc.php:
* Implemented the ability to configure the default booking
description with $default_description, as requested in SF
#3001740.
2011-01-28 21:33 John Beranek <[email protected]>
* [r1771] web/Themes/default/footer.inc[ADD], web/functions.inc:
* Added the ability to specify a footer in the theme. Patch
submitted by rudd_j in SF #3166889.
2011-01-28 21:15 John Beranek <[email protected]>
* [r1770] web/functions.inc:
* Added error logging into fatal_error(). Patch submitted by
'shallot' in SF #2955546.
2011-01-28 21:07 John Beranek <[email protected]>
* [r1769] web/mrbs-print.css.php:
* Coloured borders for booking types in the printing style sheet.
Submitted by tuomas_ in SF #3003248.
2011-01-28 20:44 John Beranek <[email protected]>
* [r1768] web/admin.php, web/del.php:
* Made it so that you return to the right area after deleting a
room. Based on a patch in SF #3019525.
2011-01-28 20:11 John Beranek <[email protected]>
* [r1767] web/internalconfig.inc.php:
* Removed a possible deprecation warning, SF #3165269.
2011-01-28 09:52 Campbell Morrison <[email protected]>
* [r1766] web/pending.php:
Fixed pending so that it can cope with mixed periods and times
2011-01-28 09:42 Campbell Morrison <[email protected]>
* [r1765] web/search.php:
Fixed search so that it can handle mixed periods and times
2011-01-28 09:40 Campbell Morrison <[email protected]>
* [r1764] web/functions.inc:
Fixed bug introduced in Rev 1756
2011-01-28 09:17 Campbell Morrison <[email protected]>
* [r1763] web/mrbs.css.php:
Fixed CSS error
2011-01-28 09:13 Campbell Morrison <[email protected]>
* [r1762] web/lang.en, web/mrbs.css.php, web/report.php:
Fixed summary table so that it can cope with mixed periods and
times.
2011-01-27 11:26 Campbell Morrison <[email protected]>
* [r1761] web/report.php:
Fixed bug whereby summaries were not sorted properly by name
2011-01-27 09:47 Campbell Morrison <[email protected]>
* [r1760] web/report.php:
Fixed bug whereby start and end times were incorrectly presented
in reports when using mixed periods and times.
2011-01-27 08:34 Campbell Morrison <[email protected]>
* [r1759] UPGRADE:
Updated Upgrade documentation to reflect changes in Rev 1756
2011-01-27 08:12 Campbell Morrison <[email protected]>
* [r1758] INSTALL:
Clarified documentation on custom fields.
2011-01-26 18:06 Campbell Morrison <[email protected]>
* [r1757] web/lang.fr:
Minor tweak to capitalisation
2011-01-26 17:17 Campbell Morrison <[email protected]>
* [r1756] web/day.php, web/edit_area_room.php, web/edit_entry.php,
web/functions.inc, web/functions_mail.inc,
web/functions_view.inc, web/help.php, web/internalconfig.inc.php,
web/language.inc, web/mincals.inc, web/month.php,
web/mrbs_sql.inc, web/report.php, web/systemdefaults.inc.php,
web/trailer.inc, web/week.php:
Removed hard-coded formats for strftime() and put them in
systemdefaults in order to make it easier to tweak time and date
formats to meet local expectations.
2011-01-26 16:12 John Beranek <[email protected]>
* [r1755] UPGRADE:
* Removed some stray tabs.
2011-01-26 16:08 John Beranek <[email protected]>
* [r1754] INSTALL:
* Small documentation fix.
2011-01-26 16:04 John Beranek <[email protected]>
* [r1753] INSTALL, UPGRADE, convert_db_to_utf8.php,
tables.my.pre41.sql[ADD], tables.my.sql, tables.pg.pre73.sql,
tables.pg.sql, web/dbsys.inc, web/upgrade/26[ADD],
web/upgrade/26/mysql.sql[ADD], web/upgrade/26/pgsql.sql[ADD],
web/upgrade/26/post.inc[ADD]:
* Updated the MySQL table installation SQL files to utilise MySQL
4.1 features. A version for older versions of MySQL is retained
tables.my.pre41.sql.
* Added a warning when upgrading the database, to inform
adninistrators that they may need to update their database to
UTF-8 encoding, using the convert_db_to_utf8.php script.
* Updated the INSTALL and UPGRADE documentation to match the new
Unicode-only behaviour of MRBS, and to mention the new MySQL
installation SQL files.
* Improved the convert_db_to_utf8.php quite a bit. Updated the
list of columns that need converting to UTF-8. Added support for
converting the database collation in a MySQL MRBS database.
2011-01-26 12:37 Campbell Morrison <[email protected]>
* [r1752] web/Themes/default/header.inc, web/language.inc:
Fixed problem where start and end times do not appear correctly
in the select boxes on the edit_entry form when using 12 hour
format and running on a Windows server.
2011-01-26 11:30 John Beranek <[email protected]>
* [r1751] web/lang.cs:
* Updated/fixed Czech translation from Marek Grác.
2011-01-26 11:27 John Beranek <[email protected]>
* [r1750] ., INSTALL, UPGRADE, web/edit_users.php,
web/functions_mail.inc, web/lang.ca, web/lang.cs, web/lang.da,
web/lang.de, web/lang.el, web/lang.en, web/lang.es, web/lang.eu,
web/lang.fi, web/lang.fr, web/lang.it, web/lang.ja, web/lang.ko,
web/lang.nl, web/lang.no, web/lang.pl, web/lang.pt, web/lang.sl,
web/lang.sv, web/lang.tr, web/lang.zh-cn, web/lang.zh-tw,
web/language.inc, web/mysql.inc, web/mysqli.inc,
web/systemdefaults.inc.php, web/upgrade/5/pgsql.sql:
* Merged the 'only_unicode' branch, which removes MRBS
non-Unicode mode. To come is an improved convert_db_to_utf8.php
script that I have been working on.
2011-01-25 14:01 Campbell Morrison <[email protected]>
* [r1746] web/systemdefaults.inc.php:
Added to comments for $override_locale
2011-01-20 11:38 Campbell Morrison <[email protected]>
* [r1745] web/Themes/default/header.inc, web/edit_area_room.php,
web/lang.en, web/mrbs.css.php, web/mrbs_sql.inc,
web/systemdefaults.inc.php:
- Fixed a bug whereby book ahead policies would not be applied
when using periods, depending on what settings were already in
the database. See SF Support Request #3161926 - At the same time
removed the restriction that book ahead policies cannot be set
per-area when using periods
2011-01-13 11:12 Campbell Morrison <[email protected]>
* [r1744] web/functions_ical.inc:
Added a comment.
2011-01-11 09:47 Campbell Morrison <[email protected]>
* [r1743] web/Themes/default/header.inc,
web/jquery/ui/jquery-ui-datepicker-en-AU.js[ADD],
web/jquery/ui/jquery-ui-datepicker-en-NZ.js[ADD],
web/jquery/ui/jquery-ui-datepicker-no.js[ADD]:
- added explicit en-AU and en-NZ initialisations for jQuery UI
datepicker. (Meanwhile a ticket, #6828, has been raised
requesting their inclusion in the standard package) - added a
correction for the Norwegian initialisation for datepicker
(pending discussions with the author of the original
initialisation with a view to incorporating the changes in the
standard package)
2011-01-07 17:00 Campbell Morrison <[email protected]>
* [r1742] ., tables.my.sql, tables.pg.pre73.sql, tables.pg.sql,
web/Mail/mime.php[CPY], web/Mail/mimePart.php[CPY],
web/approve_entry_handler.php, web/dbsys.inc, web/del_entry.php,
web/edit_entry.php, web/edit_entry_handler.php,
web/functions.inc, web/functions_ical.inc[CPY],
web/functions_mail.inc, web/functions_view.inc[CPY],
web/internalconfig.inc.php, web/lang.en, web/language.inc,
web/mrbs-mail.css[CPY], web/mrbs.css.php, web/mrbs_sql.inc,
web/report.php, web/systemdefaults.inc.php, web/upgrade/23[CPY],
web/upgrade/23/mysql.sql[CPY], web/upgrade/23/pgsql.sql[CPY],
web/upgrade/24[CPY], web/upgrade/24/mysql.sql[CPY],
web/upgrade/24/pgsql.sql[CPY], web/upgrade/24/post.inc[CPY],
web/upgrade/25[CPY], web/upgrade/25/mysql.sql[CPY],
web/upgrade/25/pgsql.sql[CPY], web/upgrade/5/pgsql.sql,
web/view_entry.php:
Merged the ics_attachments branch back into the trunk. MRBS now
supports: - HTML emails - emails containing iCalendar details
that can be imported automatically into calendar apps (eg
Outlook, iCal, Thunderbird/Lightning, Google Calendar) - export
of bookings as iCalendar files (.ics) from view_entry.php and
report.php
2011-01-06 13:51 Campbell Morrison <[email protected]>
* [r1739] web/edit_area_room.php:
Added missing HTML escaping
2011-01-06 13:46 Campbell Morrison <[email protected]>
* [r1738] web/edit_entry.php, web/functions.inc:
Added escaping of JavaScript strings (see SF Bug ID 3152394)
2010-12-19 17:11 Campbell Morrison <[email protected]>
* [r1715] web/lang.fr:
Updated French translation provided by Philippe Levi.
2010-12-17 16:24 Campbell Morrison <[email protected]>
* [r1713] web/lang.pt:
Updated Portuguese translation
2010-12-17 12:38 Campbell Morrison <[email protected]>
* [r1711] web/edit_entry_handler.php:
Simplified code
2010-12-17 11:30 Campbell Morrison <[email protected]>
* [r1710] web/edit_entry_handler.php:
Fixed bug which caused repeat, all-day bookings not to book the
last day of a series.
2010-12-10 11:01 Campbell Morrison <[email protected]>
* [r1691] web/view_entry.php:
Allowed entries for disabled rooms to be copied (but still not
deleted or edited).
2010-12-10 08:53 Campbell Morrison <[email protected]>
* [r1688] web/functions.inc:
Fixed bug that caused the room and area links in the day, week
and month views to operate incorrectly when using "list" format.
See SF Tracker ID: 3134046.
2010-12-08 15:24 Campbell Morrison <[email protected]>
* [r1675] web/functions_mail.inc:
Fixed bug whereby mail was not being sent to those on the cc and
bcc lists.
2010-12-08 14:59 Campbell Morrison <[email protected]>
* [r1674] web/Mail.php, web/Mail/RFC822.php, web/Mail/mail.php,
web/Mail/null.php, web/Mail/sendmail.php, web/Mail/smtp.php,
web/Net/SMTP.php:
Updated PEAR Mail package to Release 1.2.0 and Net_SMTP to
Release 1.4.4
2010-11-26 12:24 John Beranek <[email protected]>
* [r1651] web/systemdefaults.inc.php:
- Tidied example email address discussion.
2010-11-26 11:52 Campbell Morrison <[email protected]>
* [r1650] web/systemdefaults.inc.php:
Added a comment on email address formats
2010-11-25 17:23 Campbell Morrison <[email protected]>
* [r1649] web/internalconfig.inc.php, web/upgrade/21/post.inc:
- Removed the warning about the use of $provisional_enabled -
Added $provisional_enabled to the list of deprecated config
variables that are now replaced by something else, but still
supported for the moment in order to make upgrading easier -
Changed the way that the $mail_settings deprecated variables are
treated and stopped trying to do anything too smart
2010-11-25 10:40 Campbell Morrison <[email protected]>
* [r1648] web/edit_entry.php, web/edit_entry_handler.php,
web/lang.en:
Changed the privacy and confirmation status fields to be radio
buttons rather than checkboxes to make it slightly clearer what
they do.
2010-11-25 09:18 Campbell Morrison <[email protected]>
* [r1647] web/mrbs_sql.inc:
Better fix (again!) for Rev 1642 (bug causing approval of entries
not to work when using PostgreSQL)
2010-11-25 07:39 Campbell Morrison <[email protected]>
* [r1646] web/dbsys.inc, web/mrbs_sql.inc, web/mysql.inc,
web/mysqli.inc, web/pgsql.inc:
Better fix for Rev 1642 (bug causing approval of entries not to
work when using PostgreSQL)
2010-11-25 04:49 Campbell Morrison <[email protected]>
* [r1645] web/lang.en:
Fixed minor typo
2010-11-25 04:47 Campbell Morrison <[email protected]>
* [r1644] web/lang.fr:
Corrected French translation for rejected bookings.
2010-11-25 04:35 Campbell Morrison <[email protected]>
* [r1643] web/approve_entry_handler.php:
Fixed error handling if there's an SQL error when approving an
entry
2010-11-25 04:17 Campbell Morrison <[email protected]>
* [r1642] web/mrbs_sql.inc:
Fixed bug causing approval of entries not to work when using
PostgreSQL
2010-11-24 19:07 Campbell Morrison <[email protected]>
* [r1641] UPGRADE, web/del_entry.php, web/edit_entry_handler.php,
web/internalconfig.inc.php, web/systemdefaults.inc.php:
Following the suggestion of Céline Grousson, added a new config
variable to enable email notifications for new bookings to be
turned off. At the same time took the opportunity to rationalise
the naming of some of the mail settings, so the variables that
control when an email should be sent are now called
$mail_settings['on_new'], $mail_settings['on_change'] and
$mail_settings['on_delete']. The old variables,
$mail_settings['admin_all'] and
$mail_settings['admin_on_delete'], are still supported for
compatibility but their use is deprecated.
2010-11-24 17:50 John Beranek <[email protected]>
* [r1640] auth_ldap.pl, auth_ldapsearch.pl, auth_pam.pl, badpw.pl,
checklang.php, convert_db_to_utf8.php, crypt_passwd.pl,
testdata.php, web/Mail.php, web/PEAR.php,
web/Themes/classic126/styling.inc, web/Themes/default/header.inc,
web/Themes/default/styling.inc, web/add.php, web/admin.php,
web/approve_entry_handler.php, web/auth_config.inc,
web/auth_db.inc, web/auth_db_ext.inc, web/auth_ext.inc,
web/auth_imap.inc, web/auth_imap_php.inc, web/auth_ldap.inc,
web/auth_nis.inc, web/auth_none.inc, web/auth_nw.inc,
web/auth_pop3.inc, web/auth_smtp.inc, web/config.inc.php,
web/dbsys.inc, web/defaultincludes.inc, web/del.php,
web/del_entry.php, web/edit_area_room.php, web/edit_entry.php,
web/edit_entry_handler.php, web/edit_users.php,
web/escapeshellarg.inc, web/functions.inc,
web/functions_mail.inc, web/grab_globals.inc.php, web/help.php,
web/index.php, web/lang.ca, web/lang.cs, web/lang.da,
web/lang.de, web/lang.el, web/lang.en, web/lang.es, web/lang.eu,
web/lang.fi, web/lang.fr, web/lang.it, web/lang.ja, web/lang.ko,
web/lang.nl, web/lang.no, web/lang.pl, web/lang.pt, web/lang.sl,
web/lang.sv, web/lang.tr, web/lang.zh-cn, web/lang.zh-tw,
web/language.inc, web/mincals.inc, web/month.php,
web/mrbs_auth.inc, web/mrbs_sql.inc, web/mysql.inc,
web/mysqli.inc, web/pending.php, web/pgsql.inc, web/report.php,
web/search.php, web/session_cookie.inc, web/session_host.inc,
web/session_http.inc, web/session_ip.inc, web/session_nt.inc,
web/session_omni.inc, web/session_php.inc,
web/session_remote_user.inc, web/style.inc, web/theme.inc,
web/trailer.inc, web/upgrade.inc, web/upgrade/13/post.inc,
web/upgrade/15/post.inc, web/upgrade/16/post.inc,
web/upgrade/17/post.inc, web/upgrade/2/post.inc,
web/upgrade/21/post.inc, web/upgrade/4/post.inc,
web/upgrade/5/post.inc, web/upgrade/6/post.inc,
web/upgrade/7/post.inc, web/upgrade/8/post.inc,
web/view_entry.php, web/week.php:
- svn:mime-type tidying.
2010-11-24 16:09 John Beranek <[email protected]>
* [r1639] web/version.inc:
- One further test of svn:mime-type behaviour.
2010-11-24 16:07 John Beranek <[email protected]>
* [r1638] web/day.php:
- Testing the effects of svn:mime-type on ViewVC behaviour.
2010-11-24 13:08 John Beranek <[email protected]>
* [r1637] web/jquery/ui/css/sunny/jquery-ui-1.8.6.custom.css,
web/jquery/ui/jquery-ui-1.8.6.custom.min.js:
- Set svn:eol-style for new files.
2010-11-24 10:22 Campbell Morrison <[email protected]>
* [r1636] web/Themes/default/header.inc,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png,
web/jquery/ui/css/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png,
web/jquery/ui/css/sunny/images/ui-icons_ed9f26_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_fadc7a_256x240.png,
web/jquery/ui/css/sunny/images/ui-icons_ffe180_256x240.png,
web/jquery/ui/css/sunny/jquery-ui-1.8.4.custom.css[DEL],
web/jquery/ui/css/sunny/jquery-ui-1.8.6.custom.css[ADD],
web/jquery/ui/jquery-ui-1.8.4.custom.min.js[DEL],
web/jquery/ui/jquery-ui-1.8.6.custom.min.js[ADD],
web/jquery/ui/jquery-ui-datepicker-pt.js[DEL],
web/jquery/ui/jquery-ui-i18n.js, web/style.inc:
- Updated jQuery UI from 1.8.4 to 1.8.6 - Removed the separate
Portuguese regional setting for datepicker as it is now included
as standard in 1.8.6
2010-11-24 09:50 Campbell Morrison <[email protected]>
* [r1635] ., tables.my.sql, tables.pg.pre73.sql, tables.pg.sql,
web/Themes/default/header.inc, web/admin.php, web/day.php,
web/dbsys.inc, web/edit_area_room.php, web/edit_entry.php,
web/functions.inc, web/internalconfig.inc.php, web/lang.en,
web/month.php, web/mrbs.css.php, web/mrbs_sql.inc,
web/pending.php, web/upgrade/22[CPY],
web/upgrade/22/mysql.sql[CPY], web/upgrade/22/pgsql.sql[CPY],
web/upgrade/5/pgsql.sql, web/view_entry.php, web/week.php:
Merged the disabled_rooms branch back into the trunk. Rooms and
areas can now be disabled, meaning that they will not appear in
the day/week/month views and bookings cannot be made for them.
Any existing bookings will be preserved in the system, will be
returned in Search and Report results and can be viewed in
view_entry.php - but they will be read only.
2010-11-22 21:21 John Beranek <[email protected]>
* [r1629] ChangeLog, NEWS:
* Updated NEWS and ChangeLog for 1.4.5 release.
2010-11-22 14:39 Campbell Morrison <[email protected]>
* [r1628] web/Themes/default/header.inc:
Expanded comments on datepicker
2010-11-22 14:39 Campbell Morrison <[email protected]>