-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
14345 lines (9985 loc) · 518 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
2012-01-01 16:16 John Beranek <[email protected]>
* [r2229] web/version.inc:
* Updated version number to 1.4.8.
2012-01-01 13:00 Campbell Morrison <[email protected]>
* [r2228] web/edit_area_room.php, web/functions_ical.inc,
web/internalconfig.inc.php, web/systemdefaults.inc.php:
Limited the timezones presented in the timezone drop-down box on
the Edit Area page to those that have a corresponding VTIMEZONE
definition
2011-12-31 13:41 Campbell Morrison <[email protected]>
* [r2227] web/edit_entry_handler.php:
Eliminated undefined index messages
2011-12-31 13:35 Campbell Morrison <[email protected]>
* [r2226] web/edit_entry_handler.php:
Eliminated undefined variable message
2011-12-31 13:24 Campbell Morrison <[email protected]>
* [r2225] web/Themes/default/header.inc, web/edit_entry.php:
Preserved the disabled state of the All Day checkbox when
switching between areas
2011-12-31 11:32 Campbell Morrison <[email protected]>
* [r2224] web/edit_entry_handler.php:
Fixed two bugs: (1) Undefined index error if a mandatory field is
defined in the config file but doesn't exist in the database (2)
MRBS not picking up mandatory integer fields when JavaScript is
disabled
2011-12-31 11:06 Campbell Morrison <[email protected]>
* [r2223] web/auth_db.inc:
Fixed problem with spurious error message being triggered
2011-12-31 10:45 Campbell Morrison <[email protected]>
* [r2222] web/functions.inc:
Fixed another instance of date() being called before the timezone
had been set, resulting in PHP warning
2011-12-30 10:28 Campbell Morrison <[email protected]>
* [r2221] web/functions.inc:
Removed redundant global declaration
2011-12-30 10:22 Campbell Morrison <[email protected]>
* [r2220] web/functions.inc:
Added comment
2011-12-30 10:06 Campbell Morrison <[email protected]>
* [r2219] web/edit_entry.php, web/functions.inc:
Made MRBS more resilient to NULL values for resolution in the
area table
2011-12-29 18:25 Campbell Morrison <[email protected]>
* [r2218] web/edit_area_room.php:
Eliminated undefined index error
2011-12-29 17:14 Campbell Morrison <[email protected]>
* [r2217] web/month.php, web/mrbs.css.php,
web/systemdefaults.inc.php:
Added support for displaying the week number in the month view if
$view_week_number is set
2011-12-29 15:32 Campbell Morrison <[email protected]>
* [r2216] web/day.php, web/mincals.inc, web/month.php,
web/mrbs.css.php, web/systemdefaults.inc.php, web/week.php:
Added the ability to display the mini calendars at the bottom, if
$display_calendars_bottom is set to true. Based on a patch from
Daniel Yule.
2011-12-28 21:50 Campbell Morrison <[email protected]>
* [r2215] web/edit_entry.php:
Fixed bug in last commit: the all_day checkbox would not be
displayed if the user was an admin
2011-12-28 21:41 Campbell Morrison <[email protected]>
* [r2214] web/Themes/default/header.inc, web/edit_entry.php,
web/internalconfig.inc.php:
Ensured that the “all day” check box only appears if the maximum
booking duration allows that length of booking. Based on a patch
from Daniel Yule
2011-12-28 21:22 Campbell Morrison <[email protected]>
* [r2213] web/Themes/default/header.inc, web/functions.inc:
Fixed another instance of date() being called before the timezone
had been set, resulting in PHP warning
2011-12-28 17:12 Campbell Morrison <[email protected]>
* [r2212] web/standard_vars.inc.php:
Fixed bug where date() was being called before the timezone had
been set, resulting in PHP warning
2011-12-24 09:27 Campbell Morrison <[email protected]>
* [r2211] tables.my.pre41.sql, tables.my.sql, tables.pg.pre73.sql,
tables.pg.sql, web/config.inc.php, web/dbsys.inc,
web/edit_area_room.php, web/functions.inc,
web/functions_ical.inc, web/internalconfig.inc.php,
web/systemdefaults.inc.php, web/upgrade/29[ADD],
web/upgrade/29/mysql.sql[ADD], web/upgrade/29/pgsql.sql[ADD]:
Made $timezone a per-area setting. Based on input from Chris
Thompson.
2011-12-21 22:44 Campbell Morrison <[email protected]>
* [r2210] web/view_entry.php:
Fixed bug which prevented owner buttons appearing
2011-12-21 22:18 Campbell Morrison <[email protected]>
* [r2209] web/Themes/default/header.inc:
Fixed the Ajax checking so that it can cope with array fields
consisting of multiple inputs, which will arise when the rooms
field is disabled, eg <input type="hidden" name="rooms[]"
value="1"> <input type="hidden" name="rooms[]" value="2"> etc.
2011-12-21 17:07 Campbell Morrison <[email protected]>
* [r2208] web/edit_entry.php:
Fixed HTML error when using disabled rooms field
2011-12-21 16:53 Campbell Morrison <[email protected]>
* [r2207] web/session_cookie.inc, web/session_php.inc:
Fixed HTML validation errors
2011-12-21 16:20 Campbell Morrison <[email protected]>
* [r2206] web/edit_entry.php:
Removed explanation of how to use the All Day checkbox if it's
disabled
2011-12-21 15:39 Campbell Morrison <[email protected]>
* [r2205] web/edit_entry.php:
- Removed the $room_names variable, which as far as I can see was
introduced in MRBS 1.2.1 but has never been used for anything and
was causing undefined variable errors now that it's inside a
function (or rather the index $i was undefined) - Added an
optional $disabled parameter (defaulting to FALSE) to the
create_field_entry_*() functions to allow the field to be
disabled
2011-12-20 15:59 Campbell Morrison <[email protected]>
* [r2204] web/edit_entry.php:
Removed some HTML whitespace and replaced some tabs by spaces
2011-12-20 15:50 Campbell Morrison <[email protected]>
* [r2203] web/Themes/default/header.inc:
Replaced some tabs by spaces
2011-12-17 20:05 John Beranek <[email protected]>
* [r2202] web/auth_ldap.inc, web/systemdefaults.inc.php:
* Added option to auth_ldap to disable client referrals. Provided
by Daniel Yule.
2011-12-16 19:02 Campbell Morrison <[email protected]>
* [r2201] web/lang.fr:
Updated French translation
2011-12-16 18:06 Campbell Morrison <[email protected]>
* [r2200] web/edit_entry.php:
Escaped JavaScript strings
2011-12-16 16:24 Campbell Morrison <[email protected]>
* [r2199] web/edit_entry.php:
Ensured that if a new booking is selected and the default
duration takes the booking past the end of the booking day, then
the default end time is the end of the booking day (rather than
the start time + resolution, as at present)
2011-12-08 22:03 Campbell Morrison <[email protected]>
* [r2198] web/mrbs.css.php:
Tweaked formatting of ColVis menu
2011-12-08 20:35 Campbell Morrison <[email protected]>
* [r2197] web/Themes/default/header.inc, web/mrbs.css.php:
Fixed bug which prevented localised text strings appearing in the
Column Visibility menu in Report
2011-12-08 20:09 Campbell Morrison <[email protected]>
* [r2196] web/lang.fr:
Updated French translation
2011-12-07 16:50 Campbell Morrison <[email protected]>
* [r2195] web/Themes/default/header.inc:
Fixed some unescaped JavaScript strings
2011-11-23 20:56 tbleher
* [r2194] web/functions_view.inc:
Remove non-breaking space in display of custom fields - was
escaped later and displayed literally
2011-11-23 17:42 Campbell Morrison <[email protected]>
* [r2193] web/edit_entry.php:
Fixed JavaScript error when $max_duration_enabled is false.
Thanks to Henry Thompson.
2011-11-23 10:19 Campbell Morrison <[email protected]>
* [r2192] web/functions_mail.inc:
Fixed undefined variable notice
2011-11-23 06:40 tbleher
* [r2191] web/mrbs-print.css.php:
hide DataTable buttons in print
2011-11-23 06:38 Campbell Morrison <[email protected]>
* [r2190] web/edit_entry.php:
Reverted last change
2011-11-23 04:46 Campbell Morrison <[email protected]>
* [r2189] web/edit_entry.php:
Fixed undefined variable notice
2011-11-23 04:36 Campbell Morrison <[email protected]>
* [r2188] web/Themes/default/header.inc, web/edit_entry.php,
web/mrbs.css.php:
Took account of days in calculating the duration when maximum
duration is enabled
2011-11-22 23:14 Campbell Morrison <[email protected]>
* [r2187] web/Themes/default/header.inc, web/edit_entry.php:
Restricted the options available in the end time selector to
those permitted if a maximum duration has been specified
2011-11-22 20:49 tbleher
* [r2186] web/edit_entry.php, web/systemdefaults.inc.php:
Make it possible to reorder fields in edit_entry (useful for
custom fields)
2011-11-22 20:46 tbleher
* [r2185] web/edit_entry.php:
edit_entry: move creation of form elements into function (except
options for repeat), so they can later be reordered.
HTML output is the same (except some whitespace)
2011-11-22 19:10 tbleher
* [r2184] web/Themes/default/header.inc, web/edit_entry.php,
web/edit_entry_handler.php:
Spelling fixes
2011-11-22 19:08 tbleher
* [r2183] web/lang.de:
Corrections to German language file
2011-11-21 19:58 Campbell Morrison <[email protected]>
* [r2182] web/Themes/default/header.inc:
Simplified code
2011-11-21 05:13 Campbell Morrison <[email protected]>
* [r2181] web/Themes/default/header.inc,
web/edit_entry_handler.php:
Fixed bug which was causing the table for the wrong day to be
displayed after dragging the last day of a multi-day booking in
the week view
2011-11-21 04:47 Campbell Morrison <[email protected]>
* [r2180] web/Themes/default/header.inc:
Stopped multiday bookings being dragged by non-admins if
$auth['only_admin_can_book_multiday'] is set.
2011-11-21 03:41 Campbell Morrison <[email protected]>
* [r2179] web/Themes/default/header.inc, web/functions_table.inc:
Disabled dragging on multi-day bookings except for extending the
start and end times
2011-11-19 04:02 Campbell Morrison <[email protected]>
* [r2178] web/Themes/default/header.inc,
web/edit_entry_handler.php:
Fixed bug whereby dragging multi-day bookings in the week view
wasn't working properly.
2011-11-12 07:19 Campbell Morrison <[email protected]>
* [r2177] web/functions_table.inc:
Fixed bug with time format being incorrectly displayed in the
week view
2011-11-12 06:45 tbleher
* [r2176] web/Themes/default/header.inc:
edit_entry: make ajax calls send rep_day[] correctly, so that
weekly repeats are properly checked
Before this change, rep_day[] was not correctly set, which led to
edit_entry_handler assuming that weekly repeats all were on a
sunday (only on ajax requests, the normal booking worked
correctly)
This change affects two things: - the correct name is now checked
when deciding if the input has an array type - multiple checkbox
entries with the same name are merged. There are probably
better/more elegant ways to do this (suggestions welcome).
2011-11-03 16:36 Campbell Morrison <[email protected]>
* [r2175] web/view_entry.php:
Fixed bug causing the reminder intervals for bookings that need
to be approved to be ignored
2011-11-03 16:18 Campbell Morrison <[email protected]>
* [r2174] web/jquery/datatables/css/mrbs-table.css:
Fixed formatting of buttons on view_entry page
2011-11-03 16:10 Campbell Morrison <[email protected]>
* [r2173] web/edit_entry.php:
Eliminated undefined variable notices
2011-11-03 14:54 Campbell Morrison <[email protected]>
* [r2172] web/language.inc:
Eliminated uninitialized string offset notices
2011-11-03 14:41 Campbell Morrison <[email protected]>
* [r2171] web/functions_mail.inc:
Eliminated undefined index errors
2011-11-03 14:21 Campbell Morrison <[email protected]>
* [r2170] web/mrbs_sql.inc:
Eliminated an undefined index notice
2011-11-03 14:02 Campbell Morrison <[email protected]>
* [r2169] web/Themes/default/header.inc:
Moved the new default datatables options into the existing
default options object. Set the default display length at 25
rows.
2011-11-02 21:56 tbleher
* [r2168] web/Themes/default/header.inc:
Add default tableOptions object for datatables, so it is easier
to add options to all datatables at once.
2011-11-02 21:54 tbleher
* [r2167] web/mrbs_sql.inc:
mrbsCheckFree(): Remove space in date view, so the braces are
symmetric
2011-11-02 17:56 Campbell Morrison <[email protected]>
* [r2166] web/edit_users.php, web/functions_mail.inc,
web/functions_view.inc, web/search.php:
Removed a few undefined index errors
2011-11-02 16:01 Campbell Morrison <[email protected]>
* [r2165] web/view_entry.php:
Fixed bug - incorrect room id being used in authorisation check
(no impact on standard MRBS, but will affect sites where
$auth_book_admin() has been modified to use the room id)
2011-11-02 15:31 Campbell Morrison <[email protected]>
* [r2164] web/Themes/default/header.inc:
Fixed a bug introduced in Rev 2162 which stopped the Report
datatable displaying the first column properly.
2011-11-02 15:22 Campbell Morrison <[email protected]>
* [r2163] web/language.inc, web/report.php,
web/systemdefaults.inc.php:
Fixed a problem whereby "foreign" characters in CSV reports
opened by Microsoft Excel did not display properly. This is
actually an Excel problem, rather than an MRBS problem, but there
is now a circumvention in MRBS. CSV reports are now output by
default in UTF-16 rather than UTF-8 which means that Excel 2010
on Windows and Excel 2011 on Mac, and probably some earlier
versions as well, now open CSV reports properly. This requires
the iconv module to be installed. If this is not possible, then
CSV reports can be made to open correctly on Excel 2010 for
Windows (but not Excel 2011 for Mac) by using UTF-8 and
outputting a BOM. Two new config variables are introduced:
$csv_charset (default 'utf-16') and $csv_bom (default FALSE).
(CSV reports can always be made to open correctly in Excel by
renaming the file from a .csv to a .txt file. Then when the file
is opened an import dialogue appears which allows the user to
choose the character set).
2011-11-02 10:45 Campbell Morrison <[email protected]>
* [r2162] web/report.php:
Fixed some undefined variable errors
2011-11-02 10:26 Campbell Morrison <[email protected]>
* [r2161] web/Themes/default/header.inc:
Fixed minor bug in the generation of autocomplete options for
custom fields that have $select_options defined (extra blank
options were being generated)
2011-11-02 10:00 Campbell Morrison <[email protected]>
* [r2160] web/dbsys.inc:
Got rid of an undefined variable message
2011-11-02 09:53 Campbell Morrison <[email protected]>
* [r2159] web/edit_entry.php, web/edit_users.php:
Got rid of some undefined index notices
2011-11-02 09:34 Campbell Morrison <[email protected]>
* [r2158] web/defaultincludes.inc:
Fixed bug causing JavaScript error in day and week views, and
hence draggable bookings not to work. (The fix in Rev 2154 did
not work!)
2011-11-01 23:33 John Beranek <[email protected]>
* [r2157] web/systemdefaults.inc.php:
* Added more description into systemdefaults.inc.php for the
$booking_types array.
2011-11-01 23:27 John Beranek <[email protected]>
* [r2156] web/config.inc.php, web/defaultincludes.inc,
web/edit_entry.php, web/functions.inc, web/functions_mail.inc,
web/functions_view.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.ru,
web/lang.sl, web/lang.sv, web/lang.tr, web/lang.zh-cn,
web/lang.zh-tw, web/language.inc, web/report.php,
web/systemdefaults.inc.php:
* Removed the code that had to exist in config.inc.php in a
particular place. Booking entry types are now configured by the
simple array $booking_types, which contains elements like "E" and
"I". The entry types are now localised in the translation files
as "type.X" where X is the booking type. config.inc.php no longer
needs to include language.inc, and the $typel configuration array
has been removed.
2011-11-01 17:44 Campbell Morrison <[email protected]>
* [r2155] web/language.inc:
Fixed, or at least ameliorated, a problem that can occur on
Windows servers where the dates can randomly change language, due
to other scripts running in a different thread in the same
process calling setlocale().
2011-11-01 15:37 Campbell Morrison <[email protected]>
* [r2154] web/day.php, web/functions_table.inc, web/month.php,
web/week.php:
Fixed bug which meant that the day, week and month views were
displayed in the wrong locale (bug introduced in Revs 2150 and
2151)
2011-10-31 07:34 Campbell Morrison <[email protected]>
* [r2153] web/language.inc:
Restricted the requirement for the iconv module to those cases
when it is really needed, ie when the server is running AIX or
Windows.
2011-10-31 07:23 Campbell Morrison <[email protected]>
* [r2152] web/functions_mail.inc, web/internalconfig.inc.php,
web/systemdefaults.inc.php:
Got rid of the $mail_charset config variable. All emails now sent
as UTF-8.
2011-10-25 10:20 Campbell Morrison <[email protected]>
* [r2151] web/month.php:
Fixed bug causing JavaScript syntax error if you have to login to
see the month view
2011-10-25 10:18 Campbell Morrison <[email protected]>
* [r2150] web/day.php, web/week.php:
Fixed bug causing JavaScript syntax error if you have to login to
see the day or week views
2011-10-25 09:47 Campbell Morrison <[email protected]>
* [r2149] web/mrbs_auth.inc, web/systemdefaults.inc.php:
Made $auth['only_admin_can_book'] apply to deletions as well
2011-10-25 09:35 Campbell Morrison <[email protected]>
* [r2148] web/mrbs_auth.inc:
Fixed bug. $auth['only_admin_can_book'] does not work as required
if $auth['deny_public_access'] is set.
2011-10-24 21:17 tbleher
* [r2147] web/functions_ical.inc:
Set PARTSTAT=NEEDS-ACTION in ical output
I got some bug reports from Outlook 2010 users that bookings that
they received via mrbs mails were automatically imported into
their calender, without any user action. Apparently this change
fixes it.
Google Calender and Outlook 2003 also set this field, even though
the relevant RFC says that NEEDS-ACTION is the default value and
can be omitted.
2011-10-24 21:14 tbleher
* [r2146] web/functions_mail.inc:
Correctly encode subject in delete notification mails
2011-10-24 10:22 Campbell Morrison <[email protected]>
* [r2145] web/edit_users.php:
Removed section of commented out code
2011-10-24 08:26 Campbell Morrison <[email protected]>
* [r2144] web/report.php:
Fixed bug in CSV report output: a <span> was appearing in the
duration field.
2011-10-24 07:09 Campbell Morrison <[email protected]>
* [r2143] web/Themes/default/header.inc, web/edit_entry.php:
Slightly better version of fix in Rev 2141
2011-10-23 18:47 Campbell Morrison <[email protected]>
* [r2142] ., web/Themes/default/header.inc, web/admin.php,
web/day.php, web/edit_area_room.php, web/edit_entry.php,
web/edit_entry_handler.php, web/edit_users.php,
web/functions.inc, web/functions_table.inc[CPY],
web/internalconfig.inc.php, web/mincals.inc, web/month.php,
web/mrbs.css.php, web/pending.php, web/report.php,
web/search.php, web/session_cookie.inc, web/session_http.inc,
web/session_php.inc, web/session_remote_user.inc,
web/site_faq.html, web/site_faq_de.html, web/site_faq_es.html,
web/site_faq_fr.html, web/site_faq_it.html, web/site_faq_nl.html,
web/style.inc, web/upgrade/5/pgsql.sql, web/week.php:
Reintegrated the draggable bookings branch. MRBS now supports
(except for IE8 and below) (a) the selection of new bookings by
dragging over empty cells on the day and week views and (b) the
adjustment of existing bookings by dragging their sides or
corners.
2011-10-18 09:33 Campbell Morrison <[email protected]>
* [r2110] web/Themes/default/header.inc:
Fixed bug where the Ajax advance booking checking on the
edit_entry form wasn't picking up start and end times properly.
2011-10-12 08:34 Campbell Morrison <[email protected]>
* [r2077] web/Themes/default/header.inc:
Added an error suppression operator on the call to getimagesize()
in case the logo is a remote URL and allow_url_fopen is set to
false in php.ini. Thanks to dwpoon. See SF ID 3420435
2011-10-11 07:30 Campbell Morrison <[email protected]>
* [r2076] web/Themes/default/header.inc:
Changed alt text on logo. Thanks to dwpoon. See SF ID 3420435.
2011-10-10 14:01 Campbell Morrison <[email protected]>
* [r2075] web/edit_area_room.php:
Fixed HTML validation error
2011-10-10 13:45 Campbell Morrison <[email protected]>
* [r2073] web/lang.de:
Updated German translation. Thanks to Jörg Wiemann. See SF ID
3418914
2011-10-10 09:24 Campbell Morrison <[email protected]>
* [r2072] INSTALL:
Updated installation instructions for a PostgreSQL database to
create a database with UTF8 encoding. See SF ID: 3413080.
2011-10-07 15:34 Campbell Morrison <[email protected]>
* [r2071] web/day.php, web/functions.inc, web/week.php:
Allowed the highlight line in the day and week views to be
toggled on and off (previously once a line had been highlighted
you could not get rid of it)
2011-10-07 15:06 Campbell Morrison <[email protected]>
* [r2070] web/day.php, web/functions.inc, web/week.php:
Simplified code
2011-10-07 14:56 Campbell Morrison <[email protected]>
* [r2069] web/mrbs.css.php:
Fixed comment to reflect last change
2011-10-07 14:53 Campbell Morrison <[email protected]>
* [r2068] web/Themes/default/header.inc, web/day.php,
web/functions.inc, web/mrbs-print.css.php, web/mrbs.css.php,
web/week.php:
Simplified the markup in the day and week views
2011-10-07 12:25 Campbell Morrison <[email protected]>
* [r2067] web/Themes/default/header.inc, web/mrbs.css.php:
Restored highlighting of the cell in the month view when you
hover over it (got lost in the last revision)
2011-10-07 10:43 Campbell Morrison <[email protected]>
* [r2066] web/Themes/classic126/styling.inc,
web/Themes/default/header.inc, web/Themes/default/styling.inc,
web/day.php, web/functions.inc, web/internalconfig.inc.php,
web/month.php, web/mrbs.css.php, web/style.inc,
web/systemdefaults.inc.php, web/week.php, web/xbLib.js[DEL]:
Improved the performance of the day/week/month views, especially
the day view in IE with large tables (many rooms and many
periods/time slots). xbLib.js is now redundant and has been
removed (jQuery is the new cross browser library) and the config
variables $highlight_method and $javascript_cursor are also now
redundant. See also SF ID 3419007.
2011-10-04 10:18 Campbell Morrison <[email protected]>
* [r2065] web/lang.ru[ADD], web/language.inc:
Added Russian translation supplied by Capitan Nemo
2011-10-03 13:01 Campbell Morrison <[email protected]>
* [r2064] ., web/Themes/classic126/styling.inc,
web/Themes/default/header.inc, web/Themes/default/styling.inc,
web/admin.php, web/del_entry_ajax.php[CPY], web/edit_users.php,
web/internalconfig.inc.php, web/jquery/datatables[CPY],
web/jquery/datatables/css[CPY],
web/jquery/datatables/css/ColReorder.css[CPY],
web/jquery/datatables/css/ColVis.css[CPY],
web/jquery/datatables/css/ColVisAlt.css[CPY],
web/jquery/datatables/css/mrbs-page.css[CPY],
web/jquery/datatables/css/mrbs-table.css[CPY],
web/jquery/datatables/images[CPY],
web/jquery/datatables/images/Sorting icons.psd[CPY],
web/jquery/datatables/images/back_disabled.jpg[CPY],
web/jquery/datatables/images/back_enabled.jpg[CPY],
web/jquery/datatables/images/button.png[CPY],
web/jquery/datatables/images/favicon.ico[CPY],
web/jquery/datatables/images/forward_disabled.jpg[CPY],
web/jquery/datatables/images/forward_enabled.jpg[CPY],
web/jquery/datatables/images/insert.png[CPY],
web/jquery/datatables/images/sort_asc.png[CPY],
web/jquery/datatables/images/sort_asc_disabled.png[CPY],
web/jquery/datatables/images/sort_both.png[CPY],
web/jquery/datatables/images/sort_desc.png[CPY],
web/jquery/datatables/images/sort_desc_disabled.png[CPY],
web/jquery/datatables/js[CPY],
web/jquery/datatables/js/ColReorder.min.js[CPY],
web/jquery/datatables/js/ColVis.min.js[CPY],
web/jquery/datatables/js/ColVis.mrbs.min.js[CPY],
web/jquery/datatables/js/FixedColumns.min.js[CPY],
web/jquery/datatables/js/FixedColumns.mrbs.js[CPY],
web/jquery/datatables/js/jquery.dataTables.min.js[CPY],
web/jquery/datatables/js/plugins.js[CPY],
web/jquery/datatables/language[CPY],
web/jquery/datatables/language/ar.txt[CPY],
web/jquery/datatables/language/bg.txt[CPY],
web/jquery/datatables/language/ca.txt[CPY],
web/jquery/datatables/language/cs.txt[CPY],
web/jquery/datatables/language/da.txt[CPY],
web/jquery/datatables/language/de.txt[CPY],
web/jquery/datatables/language/el.txt[CPY],
web/jquery/datatables/language/en.txt[CPY],
web/jquery/datatables/language/es.txt[CPY],
web/jquery/datatables/language/et.txt[CPY],
web/jquery/datatables/language/fa.txt[CPY],
web/jquery/datatables/language/fi.txt[CPY],
web/jquery/datatables/language/fr.txt[CPY],
web/jquery/datatables/language/gd-ie.txt[CPY],
web/jquery/datatables/language/he.txt[CPY],
web/jquery/datatables/language/hi.txt[CPY],
web/jquery/datatables/language/hr.txt[CPY],
web/jquery/datatables/language/hu.txt[CPY],
web/jquery/datatables/language/id.txt[CPY],
web/jquery/datatables/language/it.txt[CPY],
web/jquery/datatables/language/ka.txt[CPY],
web/jquery/datatables/language/lt.txt[CPY],
web/jquery/datatables/language/lv.txt[CPY],
web/jquery/datatables/language/nl.txt[CPY],
web/jquery/datatables/language/no.txt[CPY],
web/jquery/datatables/language/pl.txt[CPY],
web/jquery/datatables/language/pt-br.txt[CPY],
web/jquery/datatables/language/pt-pt.txt[CPY],
web/jquery/datatables/language/pt.txt[CPY],
web/jquery/datatables/language/ro.txt[CPY],
web/jquery/datatables/language/ru.txt[CPY],
web/jquery/datatables/language/sk.txt[CPY],
web/jquery/datatables/language/sl.txt[CPY],
web/jquery/datatables/language/sr.txt[CPY],
web/jquery/datatables/language/sv.txt[CPY],
web/jquery/datatables/language/th.txt[CPY],
web/jquery/datatables/language/tr.txt[CPY],
web/jquery/datatables/language/uk.txt[CPY],
web/jquery/datatables/language/ur.txt[CPY],
web/jquery/datatables/language/vi.txt[CPY],
web/jquery/datatables/language/zh.txt[CPY],
web/jquery/jquery-1.5.2.min.js[DEL],
web/jquery/jquery-1.6.4.min.js[CPY], 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/mrbs-ielte6.css,
web/mrbs-ielte7.css.php, web/mrbs-js-overrides.css.php[DEL],
web/mrbs-js-overrides.js[DEL], web/mrbs.css.php,
web/mrbs_auth.inc, web/pending.php, web/report.php,
web/search.php, web/style.inc, web/systemdefaults.inc.php,
web/trailer.inc, web/upgrade/5/pgsql.sql:
Reintegrated the datatables branch back into the trunk. The
report results, search results, users list, rooms list and
pending list are now sortable, searchable tables. In addition
admins can do bulk deletes of the entries returned in a report.
2011-10-01 09:00 Campbell Morrison <[email protected]>
* [r2046] web/Themes/default/header.inc:
Fixed bug causing the Ajax booking check to be performed on form
submit
2011-09-30 16:03 Campbell Morrison <[email protected]>
* [r2044] web/edit_area_room.php:
Stopped ordinary users seeing the disabled/enabled status of a
room (there's no point - we only show them enabled rooms anyway)
2011-09-30 15:51 Campbell Morrison <[email protected]>
* [r2042] web/edit_area_room.php:
Fixed bug whereby the room disabled/enabled buttons were not
disabled for ordinary users (though as there was no Save button
they weren't able to change the status)
2011-09-29 16:27 Campbell Morrison <[email protected]>
* [r2026] web/functions.inc, web/internalconfig.inc.php:
Added a sanity check to check that 'private_override' is one of
the three valid values in case the database has somehow got
messed up
2011-09-28 13:17 Campbell Morrison <[email protected]>
* [r2022] web/Themes/default/header.inc:
Fixed bug preventing the schedule/policy details dialog from
being re-opened if it had previously been closed
2011-09-28 12:38 Campbell Morrison <[email protected]>
* [r2021] web/Themes/default/header.inc:
Made the correct tab be selected on launch of the schedule/policy
check results dialog
2011-09-28 12:17 Campbell Morrison <[email protected]>
* [r2019] web/Themes/default/header.inc, web/edit_entry.php,
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_3d3d3d_256x240.png,
web/jquery/ui/css/sunny/jquery-ui-1.8.16.custom.css,
web/jquery/ui/jquery-ui-1.8.16.custom.min.js, web/lang.en,
web/mrbs.css.php, web/style.inc:
Added a tabbed dialog that can be displayed to give more details
of schedule and policy checks on the edit_entry page. This has
the advantage that it contains clickable links to conflicting
bookings, which the tooltips cannot.
2011-09-27 11:17 Campbell Morrison <[email protected]>
* [r2017] web/day.php, web/del_entry.php, web/edit_entry.php,
web/month.php, web/week.php:
Tidied up the use of default values for form parameters, using
the optional third parameter to get_form_var()
2011-09-27 09:42 Campbell Morrison <[email protected]>
* [r2015] help_report.html[ADD], web/functions.inc,
web/grab_globals.inc.php, web/language.inc, web/report.php,
web/session_cookie.inc, web/session_http.inc,
web/session_php.inc, web/session_remote_user.inc,
web/systemdefaults.inc.php:
Added the ability to run report.php from the command line (useful
for example for setting up reports as cron jobs). Provided a
manual page at help_report.html. The ability to run from the
command line is disabled by default in systemdefaults.inc.php and
has to be deliberately enabled.
Added an optional third parameter to get_form_var() which is the
default value
2011-09-26 10:02 Campbell Morrison <[email protected]>
* [r2013] web/report.php:
Changed the report from method from "get" to "post" to make it
possible to accommodate complicated search criteria, especially
with many custom fields
2011-09-26 09:57 Campbell Morrison <[email protected]>
* [r2012] web/report.php:
Added an explicit Phase variable to the Report form, rather than
relying on the areamatch variable to determine whether one is in
Phase 1 or Phase 2. This makes it easier to adapt the Report page
to being run from the CLI (eg for producing reports from a cron
job).
2011-09-25 06:21 Campbell Morrison <[email protected]>
* [r2010] web/Themes/default/header.inc, web/edit_entry.php:
Stopped MRBS sending an Ajax request to check for booking
conflicts if the Back or Save buttons have just been pressed.
2011-09-25 06:20 Campbell Morrison <[email protected]>
* [r2009] web/edit_entry_handler.php:
Fixed bug causing Back button on the edit_entry page to go to the
wrong page
2011-09-24 10:25 Campbell Morrison <[email protected]>
* [r2008] web/Themes/default/header.inc:
Fixed bug introduced in Rev 1998 and at the same time
restructured code so that it does not need to know the names of
the form fields.
2011-09-23 16:35 Campbell Morrison <[email protected]>
* [r2005] web/tzurl/zoneinfo-outlook/Africa/Juba.ics[ADD],
web/tzurl/zoneinfo-outlook/America/Metlakatla.ics,
web/tzurl/zoneinfo-outlook/Europe/Kaliningrad.ics,
web/tzurl/zoneinfo-outlook/Pacific/Ponape.ics,