ChangeLog.txt
163 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
Version 2.0.0rc4 (2005/01/17)
Bug Fixes
=========
* Fix Discussions by being consistent with parameter names
* Can now use Next/Previous with Advanced Search
* Fix Template/Dependent Document browsing
* Fix various problems with rootUrl not being empty
* Avoid print_r, as it doesn't return values prior to PHP 4.3.0
Detailed ChangeLog
==================
2005-01-17 05:55 nbm
* presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php:
fNewComment is no longer used.
2005-01-17 05:54 nbm
* presentation/lookAndFeel/knowledgeTree/discussions/:
addCommentUI.inc, viewDiscussionUI.inc:
Use fNewThread rather than the misnamed (and unworking) fNewComment
2005-01-17 05:15 nbm
* lib/database/dbcompat.inc:
On compat queries, log query errors.
2005-01-17 05:09 nbm
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php:
No longer handle the removed "simple" "advanced" search.
2005-01-17 05:08 nbm
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc:
Remove old-style advanced search user interface.
2005-01-17 05:07 nbm
* presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc:
Consistently use variables prefixed with 'f' for passing values between
requests.
2005-01-17 04:58 nbm
* presentation/lookAndFeel/knowledgeTree/discussions/:
addCommentUI.inc, viewCommentBL.php:
Consistently use form variables prefixed with 'f' for passing values.
2005-01-17 04:57 nbm
* presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php:
Consistently use fDocumentID for passing the document ID between pages.
2005-01-17 04:55 nbm
* lib/discussions/DiscussionComment.inc:
Fix untested changes to discussion
Submitted by: alepage
2005-01-17 04:26 nbm
* i18n/it_IT/LC_MESSAGES/: knowledgeTree.mo, knowledgeTree.po:
Translation update from Andrea Toneguzzi at btz.it.
2005-01-17 04:12 nbm
* i18n/knowledgeTree.po:
Update po file with translateable phrases.
2005-01-17 03:26 nbm
* presentation/Html.inc:
Add getPreviousButton()
2005-01-17 02:34 nbm
* lib/visualpatterns/PatternBrowsableSearchResults.inc:
Make it easy to pass on search parameters from the request environment.
Make the 'previous' button work properly (may not have affected all
browsers)
2005-01-17 02:24 nbm
* graphics/widgets/previous.png:
Add "Previous" button.
2005-01-17 02:23 nbm
* bin/generate-buttons.php:
Add "Previous" button
2005-01-17 02:21 nbm
* lib/database/dbutil.inc:
Default db parameter to lastQuery method to null, like the rest.
2005-01-17 01:23 nbm
* presentation/lookAndFeel/knowledgeTree/search/standardSearchUI.inc:
Use (int) casting instead of non-existent int() function.
2005-01-17 01:13 nbm
* presentation/login.php:
Grab the 'redirect' request parameter into a local variable.
2005-01-17 01:10 nbm
* lib/documentmanagement/PhysicalDocumentManager.inc:
Use both Pragma: no-cache and Cache-Control: no-cache to aid Internet
Explorer in not caching content.
2005-01-14 04:55 nbm
* lib/foldermanagement/Folder.inc:
Deal with the Root Folder having a (non-existent) parent id of 0
2005-01-14 04:46 nbm
* presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc:
Deal with rootUrl already being in the given URLs.
2005-01-14 02:16 nbm
* lib/browse/Browser.inc:
foreach returns copies of objects, not the objects themselves, so work
around this.
2005-01-14 02:03 nbm
* sql/mysql/install/tables.sql:
Remove insert into non-existent zseq_document_text
2005-01-14 01:53 nbm
* lib/util/ktutil.inc:
Add arrayGet and requestValue
2005-01-11 03:12 nbm
* sql/mysql/install/tables.sql:
Remove id and sequence from document_text.
2005-01-11 03:02 nbm
* sql/mysql/upgrade/: 1.2.4-to-1.2.5.sql, 1.2.4-to-2.0.0.sql:
Rename 1.2.4-to-1.2.5.sql to 1.2.4-to-2.0.0.sql
2005-01-11 02:57 nbm
* sql/mysql/upgrade/1.2.4-to-1.2.5.sql:
Drop the id and sequence from the document_text table.
2005-01-10 11:42 nbm
* lib/i18n/accept-to-gettext.inc:
Remove use of print_r that will fail on PHP < 4.3.0
Version 2.0.0rc2 (2005/01/10)
Bug Fixes
=========
* Fix misnamed variable in uncommonly used database utility function
* Remove a debug messsage that snuck in
Detailed ChangeLog
==================
2005-01-10 02:45 nbm
* presentation/lookAndFeel/knowledgeTree/administration/browsemanagement/editBrowserUI.inc:
Change over fully to the new Criteria implementation.
2005-01-10 02:08 nbm
* lib/database/dbutil.inc:
Correct misnamed return variable.
2005-01-10 02:06 nbm
* lib/browse/Criteria.inc:
Add a criteria for a document's last modified date.
2005-01-10 02:05 nbm
* config/dmsDefaults.php:
Load up legacy and utility functions as early as possible
2005-01-10 01:09 nbm
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php:
Remove debug message
Version 2.0.0rc1 (2005/01/10)
Bug Fixes
=========
* Fixed bug in install SQL script
Detailed ChangeLog
==================
2005-01-08 00:53 nbm
* sql/mysql/install/tables.sql:
Fix up hastily added changes
Version 2.0.0rc1 (2005/01/07)
Features
========
* Advanced search has more powerful search capabilities
* The fields shown in the file browser are configurable
* Development Log Window shows PHP errors in a separate browser window if
enabled.
* Search Permissions no longer relies on fileIndexer.
* Inherited folder permissions are now visible and copyable
* Simplify group removal (no longer need to remove members, units)
* Ability to set multiple document types when creating folder
* Inherit default document types from parent folder
* No longer need to configure fileSystemUrl or serverName
* KnowledgeTree is now database-portable in the code (but not the queries)
* Bulk upload support
* Improved user->group interface for multiple membership changes
* Complete translation hooks
* Translated button support
* Improve character set handling
* Beginning of Italian translation
* Separate icon for Unit Folders
* Support for OpenLDAP2 if it doesn't offer anonymous bind or LDAPv2 bindings
Bug Fixes
=========
* Display startup errors better
* Remove most SQL injection opportunities
* Remove other opportunities to construct queries via the browser
* Place session and permission management around pages that were missing them
* Remove use of register_globals
* Remove use of magic_quotes_gpc
* Recognise English if it's the most prefered locale - previously would use
the most-preferred non-English language if one existed.
* Make the layout less dependent on CSS hacks.
* Fix off-by-one in search results on whether to display the 'Next' button.
* Fix display problems when contentPaneScrolling is not used.
Other Changes
=============
* Disabled database-based configuration by default
* Disabled the contentPaneScrolling scrollbars by default
* Default to useAcceptLanguageHeader
Detailed ChangeLog
==================
2005-01-07 05:16 nbm
* presentation/lookAndFeel/knowledgeTree/dashboardUI.inc:
Assign strings on first use (not using concatenation which might break
later)
2005-01-07 03:54 nbm
* config/dmsDefaults.php:
Rename the legacy log class for the legacy log.
Introduce a PEAR Log instance to log all PHP errors.
Log all PHP errors to the PEAR Log instance.
Optionally, if default->developmentLogWindow is set, log all PHP errors
to a Javascript window.
2005-01-07 03:53 nbm
* lib/Log.inc:
Rename the legacy Log class to KTLegacyLog
2005-01-07 03:52 nbm
* pear/: Log.php, Log/composite.php, Log/console.php,
Log/daemon.php, Log/display.php, Log/error_log.php, Log/file.php,
Log/mail.php, Log/mcal.php, Log/null.php, Log/observer.php,
Log/sql.php, Log/sqlite.php, Log/syslog.php, Log/win.php:
Add the PEAR Log class, version 1.8.7.
2005-01-07 02:49 nbm
* lib/browse/Criteria.inc:
Take out debugging stuff for where neither start nor end date is given.
2005-01-07 02:44 nbm
* docs/faq.txt:
Improve the full-text index minimum word length question.
2005-01-07 02:19 nbm
* lib/browse/Criteria.inc:
If the document field is a lookup, provide a drop-down box with the
lookup values.
2005-01-07 02:18 nbm
*
presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php:
Fix criteriaNumber for base widget names too.
2005-01-07 02:18 nbm
* lib/documentmanagement/MetaData.inc:
Add a getList static method.
2005-01-07 02:17 nbm
* lib/documentmanagement/DocumentField.inc:
Convert database values properly back to boolean.
2005-01-07 01:37 nbm
* lib/browse/Criteria.inc:
Render negative numbers with underscore instead of dash to allow easier
manipulation in javascript.
Implement searching for date created, offering between A and B, after A,
and before B syntax.
2005-01-07 01:35 nbm
*
presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php:
Negative numbers are now rendered as _1 for the form widgets - handle
that.
Deal with suffixes after the base form widget name.
Use LEFT JOIN instead of INNER JOIN onto the document_fields_link table
as the INNER form will lose documents without document fields.
2005-01-07 01:32 nbm
* presentation/lookAndFeel/knowledgeTree/js/datePicker.js:
Make it easy to get a calendar that allows you to choose dates in the
past.
2005-01-07 01:30 nbm
* lib/documentmanagement/Document.inc,
sql/mysql/install/tables.sql,
sql/mysql/upgrade/1.2.4-to-1.2.5.sql:
Moved created time into the document table.
2005-01-06 08:47 nbm
* lib/security/Permission.inc:
In userHasFolder(Read|Write)Access, use the Permission Folder ID instead
of incorrectly using all parents to determine access.
2005-01-06 08:43 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailBL.php:
Put the option transfers into the global scope.
Submitted by: Nicolas Quienot
2005-01-06 08:34 nbm
* lib/foldermanagement/Folder.inc:
Grab the Permission Folder for Folders created from the database.
2005-01-06 06:07 nbm
* docs/SearchPermissions.txt:
Finished search permissions functionality as expressed in this file.
2005-01-06 06:07 nbm
* lib/documentmanagement/Document.inc:
When the document is moved, update its search permissions.
2005-01-06 05:56 nbm
* docs/SearchPermissions.txt:
Update with progress updating search permissions on group events.
2005-01-06 05:56 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsBL.php:
Don't worry about permissions - the GroupUserLink will take care of that
itself.
2005-01-06 05:55 nbm
* lib/groups/GroupUserLink.inc:
Use Permission::updateSearchPermissionsForUser to redo permissions
instead of local attempt. Automatically redo permissions when a link
has been successfully created or deleted.
2005-01-06 05:52 nbm
* lib/security/Permission.inc:
Replace mis-copied iDocumentID to iUserID so that user permissions are
deleted.
2005-01-06 05:35 nbm
* docs/SearchPermissions.txt:
Some documentation on how the Search Permissions system in KnowledgeTree
works, and the current information on how they are determined, and when
they need to be updated.
2005-01-06 05:16 nbm
* bin/: rebuildSearchPermissions.php,
rebuildSearchPermissionsbyUser.php:
Rebuild search permissions for all documents - either by doing it for
each document in turn (rebuildSearchPermissions.php) or for each user in
turn (rebuildSearchPermissionsbyUser.php). Should produce the same
results.
2005-01-06 05:11 nbm
* lib/visualpatterns/PatternTableSqlQuery.inc:
Lessen unnecessary verbosity since this stuff seems to be solid.
2005-01-06 05:04 nbm
* lib/foldermanagement/Folder.inc:
updatePermissions now not only updates the folder and its children's
permission folder, but the permissions on each of the documents in those
folders.
2005-01-06 05:02 nbm
* lib/documentmanagement/Document.inc:
Use the permission-handling in the Permission utility class instead of
doing so locally.
2005-01-06 05:01 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/addGroupFolderLinkBL.php:
Import the Group class
2005-01-06 05:01 nbm
* lib/security/Permission.inc:
Move permission-management of documents here in
updateSearchPermissionsForDocument.
updateSearchPermissionsForUser does the same, recalculating the
permission a user has on all documents.
2005-01-06 02:38 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteGroupFolderLinkBL.php:
Get the folder to update its permission folder if a permission is
removed.
2005-01-05 13:51 nbm
* bin/setPermissionFolder.php:
setPermissionFolder.php will calculate permission_folder_id for folders
that don't have it set already - usually because they've just been added
via the upgrade SQL script.
2005-01-05 13:49 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/copyInheritedPermissionsBL.php:
Call updatePermissions on the folder we've just copied the new
permissions to.
2005-01-05 13:48 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/addGroupFolderLinkBL.php:
Use the Folder addPermissions method instead of a local copy.
2005-01-05 13:47 nbm
* lib/foldermanagement/Folder.inc:
Implement support for the permission_folder_id - how to calculate it,
and how to update it on all a folder's children when it needs to be
changed.
2005-01-05 13:44 nbm
* sql/mysql/: install/tables.sql, upgrade/1.2.4-to-1.2.5.sql:
Add permission_folder_id to the folder table, which provides us with a
link to the folder from which this folder gets its permissions - either
itself if it has permissions, or the folder from which it inherits its
permissions.
2005-01-05 13:16 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteGroupFolderLinkBL.php:
Flatten nested ifs to improve understandability.
2005-01-05 09:14 nbm
* lib/visualpatterns/PatternCreate.inc:
Include global variable $default for the rootUrl of the KnowledgeTree.
2005-01-05 04:58 nbm
* lib/groups/Group.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupBL.php:
Allow the admin to remove a group despite it having members, since
all they're going to do is remove the users from that group, and remove
a group despite it being a member of the unit, since all they're going
to do is remove it from the unit. So do it for them. They still have
to confirm that they want to delete that group.
2005-01-05 03:50 nbm
* presentation/lookAndFeel/knowledgeTree/foldermanagement/:
addFolderBL.php, addFolderUI.inc:
Allow the user to choose multiple document types when creating a folder.
Default the document types to that of the parent folder.
2005-01-05 03:10 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php:
Flatten nested ifs into more readable code.
2005-01-05 02:51 nbm
* lib/database/dbutil.inc:
Use the query log for queries (but not errors containing queries).
2005-01-05 02:16 nbm
* lib/: dashboard/DashboardNews.inc,
documentmanagement/Document.inc,
documentmanagement/DocumentField.inc,
documentmanagement/DocumentTypeFieldLink.inc,
foldermanagement/Folder.inc, foldermanagement/FolderUserRole.inc,
groups/Group.inc, roles/Role.inc, subscriptions/Subscription.inc:
Use KTUtil::anyToBool for any boolean values being passed to the
database.
2005-01-05 01:18 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsBL.php:
Pick up the changes from the select boxes.
2005-01-05 00:58 nbm
* config/dmsDefaults.php:
Oops, wasn't supposed to commit that version before. Actually check we
have an error before trying to handle one.
2005-01-05 00:56 nbm
* config/dmsDefaults.php, lib/Log.inc:
Handle startup errors slightly better - at least show them and stop
trying to continue on regardless.
2005-01-04 03:35 nbm
* lib/users/User.inc:
Use KTUtil::anyToBool to fix any null/broken boolean.
2005-01-04 03:20 nbm
* lib/foldermanagement/FolderDocTypeLink.inc:
Add an _table() (semi-static) method to get the table name.
2005-01-04 03:19 nbm
* lib/database/dbutil.inc:
Lower queries and other flow logging to DEBUG level.
2005-01-04 03:14 nbm
* lib/security/Permission.inc:
Replace erroneous array addition with array_merge. Update sections to
use DBUtil.
2005-01-03 04:56 nbm
* presentation/lookAndFeel/knowledgeTree/create.php:
Get object name and path from the session correctly.
2005-01-03 04:55 nbm
* lib/subscriptions/Subscription.inc:
Use iId, since all the other classes use it.
(Even though all the non-class code uses iID...)
2005-01-03 04:53 nbm
* lib/documentmanagement/DocumentTransaction.inc:
Modernise to use _table() for table name
2005-01-03 04:11 nbm
* presentation/lookAndFeel/knowledgeTree/: dashboardUI.inc,
administration/doccheckoutmanagement/listDocumentsBL.php,
administration/doctypemanagement/editDocTypeFieldsUI.inc,
administration/documentmanagement/listDeletedDocumentsBL.php,
administration/documentmanagement/manageArchivedDocumentsBL.php,
administration/groupmanagement/editGroupUnitUI.inc,
administration/groupmanagement/editGroupUsersUI.inc,
administration/unitmanagement/addUnitUI.inc,
administration/unitmanagement/editUnitOrgUI.inc,
administration/unitmanagement/removeUnitFromOrgBL.php,
administration/usermanagement/editUserGroupsUI.inc,
discussions/viewDiscussionBL.php,
discussions/viewDiscussionUI.inc,
documentmanagement/deleteDocumentBL.php,
documentmanagement/emailUI.inc, documentmanagement/viewBL.php,
foldermanagement/deleteFolderBL.php,
foldermanagement/deleteFolderDocTypeBL.php:
Change getList users to using parameterised WhereClauses (if necessary)
2005-01-03 04:06 nbm
* lib/: archiving/DocumentArchiveSettingsFactory.inc,
browse/Criteria.inc, browse/FolderBrowser.inc,
dashboard/Dashboard.inc, unitmanagement/Unit.inc, users/User.inc:
Change getList users to using parameterised WhereClauses (if necessary)
2005-01-03 03:44 nbm
* lib/ktentity.inc:
Support having and not having the WHERE in the sWhereClause of getList,
since it was not standardised.
2005-01-03 03:36 nbm
* lib/: archiving/ArchiveRestorationRequest.inc,
archiving/ArchivingSettings.inc, archiving/ArchivingType.inc,
archiving/DocumentArchiving.inc, archiving/TimePeriod.inc,
archiving/TimeUnit.inc, dashboard/DashboardNews.inc,
discussions/DiscussionComment.inc,
discussions/DiscussionThread.inc,
documentmanagement/DependantDocumentTemplate.inc,
documentmanagement/Document.inc,
documentmanagement/DocumentField.inc,
documentmanagement/DocumentTransaction.inc,
documentmanagement/DocumentType.inc, foldermanagement/Folder.inc,
foldermanagement/FolderCollaboration.inc,
foldermanagement/FolderDocTypeLink.inc,
foldermanagement/FolderUserRole.inc, groups/Group.inc,
groups/GroupFolderApprovalLink.inc, groups/GroupFolderLink.inc,
groups/GroupUnitLink.inc, groups/GroupUserLink.inc,
links/Link.inc, orgmanagement/Organisation.inc, roles/Role.inc,
roles/RoleFolderLink.inc, unitmanagement/Unit.inc,
unitmanagement/UnitOrganisationLink.inc, users/User.inc,
web/WebDocument.inc, web/WebSite.inc:
Use KTEntityUtil::getList instead of disparate getList implementations.
2005-01-03 03:34 nbm
* lib/ktentity.inc:
Note that KTEntityUtil::getList's SQL query is safe
2005-01-03 03:13 nbm
* lib/ktentity.inc:
KTEntityUtil::getList simplifies the disparate getList implementations,
and provides for parameterised where clauses.
2005-01-03 02:36 nbm
* sql/mysql/: install/tables.sql, upgrade/1.2.4-to-1.2.5.sql:
search_document_user_link doesn't need an ID field.
2005-01-03 02:29 nbm
* presentation/lookAndFeel/knowledgeTree/:
preferences/editUserPrefsBL.php,
administration/groupmanagement/editGroupBL.php,
administration/rolemanagement/editRoleBL.php,
administration/usermanagement/editUserBL.php,
documentmanagement/modifyGenericMetaDataBL.php,
documentmanagement/modifySpecificMetaDataBL.php,
foldermanagement/editBL.php,
foldermanagement/modifyFolderDataBL.php:
Set up session page access to store.php if we're using it.
2005-01-03 02:27 nbm
* presentation/lookAndFeel/knowledgeTree/store.inc:
Use DBUtil's autoInsert or autoUpdate for improved security and
simplified code, as well as correct sequence ids for inserts.
2005-01-03 01:42 nbm
* presentation/lookAndFeel/knowledgeTree/store.inc:
Whitespace cleanup.
2005-01-03 01:34 nbm
* lib/session/Session.inc:
autoInsert returns the ID of the inserted row, not success. Use
PEAR::isError to determine failure.
2004-12-23 13:59 nbm
* presentation/lookAndFeel/knowledgeTree/: js/divSwitch.js,
search/advancedSearchBL.php, search/advancedSearchUI.inc:
Extra-advanced search functionality - choose your search terms for each
of filename, description, id, creator, document type, and each of your
document fields.
2004-12-23 13:56 nbm
* lib/session/Session.inc:
Use DBUtil::autoInsert to manipulate active_sessions, as it now uses
sequences and not autoincrements.
2004-12-23 13:55 nbm
* lib/database/dbcompat.inc:
Use DBUtil::runQuery to do our query, so we can get query logging.
2004-12-23 13:47 nbm
* lib/browse/Criteria.inc:
Criteria now know how to generate the WHERE part of statements when
they're being searched on in HTML form submissions.
2004-12-23 09:33 nbm
* lib/browse/Criteria.inc:
Each Criterion now knows what its ID is, fixing the search widgets.
2004-12-23 09:05 nbm
* lib/browse/Criteria.inc:
Allow criteria to render their own search widgets.
Make it easy to get all the base metadata and all the generic document
fields.
2004-12-23 06:48 nbm
* lib/browse/: Browser.inc, Criteria.inc, FolderBrowser.inc:
Untie Criteria from Browser, so it can be used by others easily.
2004-12-23 05:39 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc:
Use the browser columns method to determine table width for table-wide
announcements.
2004-12-23 05:38 nbm
* lib/browse/Browser.inc:
Build the default criteria list from the browser_criteria table.
Add a columns helper method to make building the table easier.
2004-12-23 05:36 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php:
Sort by "more" correct filename rather than name by default.
2004-12-23 05:36 nbm
* lib/browse/FolderBrowser.inc:
Sort by "more" correct filename instead of name by default.
2004-12-23 05:32 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/browsemanagement/editBrowserBL.php,
presentation/lookAndFeel/knowledgeTree/administration/browsemanagement/editBrowserUI.inc,
sql/mysql/install/tables.sql,
sql/mysql/upgrade/1.2.4-to-1.2.5.sql, config/siteMap.inc:
Allow an administrator to determine which fields they want to display
and in what order in the collection browser.
2004-12-23 02:57 nbm
* presentation/webpageTemplate.inc:
Allow more administration links.
2004-12-23 02:35 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUsersBL.php:
Extract more request variables to global scope so this works.
2004-12-22 06:41 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/editOrgUI.inc:
Fix broken HTML tag.
Submitted by: Jorrit Jorritsma
2004-12-22 06:35 nbm
* lib/browse/Browser.inc, lib/browse/BrowserFactory.inc,
lib/browse/FolderBrowser.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc:
Centralise browser logic into per-criterion objects, making the
interface respond to which criteria are set up in the browser.
Also support generic metadata in the browser - as evidenced by the
Category criterion added to the browser now.
2004-12-22 02:32 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc:
Fix some broken HTML in tables, and move checkboxes into their own column.
2004-12-22 02:15 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc:
Whitespace cleanup.
2004-12-22 02:10 nbm
* lib/browse/FolderBrowser.inc:
Whitespace cleanup.
2004-12-22 00:26 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php:
Flatten the code to make it more understandable.
2004-12-22 00:25 nbm
* lib/browse/Browser.inc:
Pretty up and make more understandable the sort criteria
2004-12-22 00:24 nbm
* lib/database/dbutil.inc:
Add compactQuery, which turns multi-line queries into single-line ones,
in case that's ever a problem (and to make the logs more log-like).
2004-12-21 03:53 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/copyInheritedPermissionsBL.php,
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc,
config/siteMap.inc:
Make it possible to copy inherited permissions directly onto folder
2004-12-21 01:12 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php:
Untangle nested ifs to simplify understanding of code.
2004-12-21 00:22 nbm
* lib/visualpatterns/NavBar.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/modifyFolderDataUI.inc,
tests/documentmanagement/viewUI.inc:
Convert incorrect image tags to img
SF Tracker: 1081772
Submitted by: Adam Monsen (meonkeys)
2004-12-21 00:03 nbm
* sql/mysql/install/tables.sql:
Add missing comma from table definitions.
SF Tracker: 1085242
Submitted by: joe1-1
2004-12-20 13:25 nbm
* lib/: documentmanagement/DocumentField.inc,
documentmanagement/DocumentFieldLink.inc,
documentmanagement/DocumentLink.inc,
documentmanagement/DocumentTransaction.inc,
documentmanagement/DocumentType.inc,
documentmanagement/DocumentTypeFieldLink.inc,
documentmanagement/MetaData.inc,
documentmanagement/PhysicalDocumentManager.inc,
foldermanagement/Folder.inc,
foldermanagement/FolderCollaboration.inc,
foldermanagement/FolderDocTypeLink.inc,
foldermanagement/FolderUserRole.inc, groups/Group.inc,
groups/GroupFolderApprovalLink.inc, groups/GroupFolderLink.inc,
groups/GroupUnitLink.inc, groups/GroupUserLink.inc,
links/Link.inc, orgmanagement/Organisation.inc, roles/Role.inc,
roles/RoleFolderLink.inc, security/Permission.inc,
session/Session.inc, session/SiteMap.inc,
subscriptions/Subscription.inc,
subscriptions/SubscriptionEngine.inc,
visualpatterns/PatternListBox.inc,
visualpatterns/PatternMetaData.inc:
Parameterise (or vette/mark) remaining SQL statements.
2004-12-20 05:52 nbm
* lib/: archiving/ArchiveRestorationRequest.inc,
archiving/ArchivingSettings.inc, archiving/ArchivingType.inc,
archiving/DocumentArchiving.inc, archiving/TimePeriod.inc,
archiving/TimeUnit.inc, authentication/DBAuthenticator.inc,
browse/DocumentTypeBrowser.inc, browse/FolderBrowser.inc,
dashboard/Dashboard.inc, dashboard/DashboardNews.inc,
discussions/DiscussionComment.inc,
discussions/DiscussionThread.inc,
documentmanagement/DependantDocumentInstance.inc,
documentmanagement/DependantDocumentTemplate.inc,
documentmanagement/Document.inc,
documentmanagement/DocumentCollaboration.inc,
subscriptions/SubscriptionManager.inc, unitmanagement/Unit.inc,
unitmanagement/UnitOrganisationLink.inc, users/User.inc,
web/WebDocument.inc:
Parameterise (or vette/mark) more SQL queries
2004-12-20 03:03 nbm
* lib/: DefaultLookup.inc, System.inc,
archiving/ArchiveRestorationRequest.inc,
archiving/ArchivingSettings.inc, archiving/ArchivingType.inc,
archiving/DocumentArchiving.inc, archiving/TimePeriod.inc,
archiving/TimeUnit.inc, authentication/Authenticator.inc,
authentication/DBAuthenticator.inc, browse/CategoryBrowser.inc,
browse/DocumentTypeBrowser.inc, browse/FolderBrowser.inc,
groups/GroupFolderLink.inc,
visualpatterns/PatternBrowsableSearchResults.inc,
visualpatterns/PatternMetaData.inc, web/WebDocument.inc,
web/WebSite.inc:
Parameterise (or vette) some SQL statements
2004-12-20 03:02 nbm
* lib/visualpatterns/PatternEditableTableSqlQuery.inc:
Use the safer store/create session variables.
2004-12-20 03:01 nbm
* lib/visualpatterns/: PatternCreate.inc,
PatternEditableListFromQuery.inc:
Use the safer create/store session variables.
2004-12-20 02:56 nbm
* presentation/lookAndFeel/knowledgeTree/: help.php,
administration/docfieldmanagement/listDocFieldsUI.inc,
administration/doctypemanagement/listDocTypesUI.inc,
administration/documentmanagement/manageArchivedDocumentsBL.php,
administration/groupmanagement/editGroupUI.inc,
administration/groupmanagement/editGroupUnitUI.inc,
administration/groupmanagement/editGroupUsersUI.inc,
administration/groupmanagement/listGroupsUI.inc,
administration/linkmanagement/listLinksUI.inc,
administration/news/newsUI.inc,
administration/orgmanagement/listOrgUI.inc,
administration/rolemanagement/editRoleUI.inc,
administration/rolemanagement/listRolesUI.inc,
administration/unitmanagement/listUnitsUI.inc,
administration/usermanagement/editUserGroupsUI.inc,
administration/usermanagement/editUserUI.inc,
administration/usermanagement/listUsersBL.php,
administration/usermanagement/listUsersUI.inc,
administration/websitemanagement/listWebsitesUI.inc,
documentmanagement/addDocumentUI.inc,
documentmanagement/bulkUploadUI.inc,
documentmanagement/collaborationBL.php,
documentmanagement/modifyGenericMetaDataUI.inc,
documentmanagement/modifySpecificMetaDataUI.inc,
documentmanagement/viewHistoryUI.inc,
documentmanagement/viewUI.inc,
foldermanagement/addFolderDocTypeUI.inc,
foldermanagement/editUI.inc, foldermanagement/folderUI.inc,
foldermanagement/modifyFolderDataUI.inc,
foldermanagement/viewDependantDocumentsUI.inc,
preferences/editUserPrefsUI.inc, search/advancedSearchUI.inc,
search/standardSearchUI.inc:
Parameterise SQL statements under presentation/
2004-12-20 02:55 nbm
*
presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionBL.php:
Remove commented-out code.
2004-12-20 02:53 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php:
Make code easier to understand by flattening nested if statements.
2004-12-20 02:52 nbm
* presentation/lookAndFeel/knowledgeTree/: create.php, store.inc,
store.php:
Make create and store safer:
Require a built-up session.
Store static data in a session instead of using a hidden form variable,
out of the reach of attackers.
2004-12-20 02:45 nbm
* lib/foldermanagement/Folder.inc:
Return false in getFolderPathAsArray if given folder doesn't exist.
2004-12-20 02:44 nbm
* lib/database/dbcompat.inc:
Support parameterised queries in old database compatibility.
2004-12-20 02:39 nbm
* lib/util/ktutil.inc:
Try harder to convert strings to bools.
2004-12-20 01:06 nbm
* lib/database/dbutil.inc:
paramArray is useful when we have a variable-list sized IN (...) SQL
statement.
escapeSimple allows legacy code to use the loaded database's
escapeSimple until we can clean it up properly.
2004-12-20 01:04 nbm
* config/dmsDefaults.php, lib/util/legacy.inc:
Include PHP-based versions of functions that KnowledgeTree uses that
aren't in earlier versions of PHP 4.
2004-12-17 01:46 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc:
Rename TestFolder to more useful InheritedFolder, and try to match the
colour scheme a bit.
2004-12-15 03:24 nbm
*
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc:
Show inherited permissions if there are no direct permissions on the folder.
2004-12-15 03:23 nbm
* lib/visualpatterns/PatternTableSqlQuery.inc:
Extend from PatternTableGeneric, passing in an adaptered version of the
PEAR DB result set.
2004-12-15 03:22 nbm
* lib/visualpatterns/PatternTableGeneric.inc:
PatternTableGeneric is a generic form of PatternTableSqlQuery, and takes
a ResultSet from which it expects Results that handle 'get' method
queries, so that we can also pass in standard arrays with dictionaries
inside (suitably adapterised).
2004-12-15 03:20 nbm
* lib/database/dbutil.inc:
Work for non-parameterised queries too!
2004-12-15 03:20 nbm
* lib/database/dbcompat.inc:
Turn off copious logging
2004-12-03 04:53 nbm
* lib/: documentmanagement/DocumentCollaboration.inc,
session/Session.inc:
Replace manual UPDATEs to whereUpdate
2004-12-03 04:52 nbm
* lib/System.inc:
Convert manual queries to autoInsert and whereUpdate.
2004-12-03 04:48 nbm
* lib/database/dbutil.inc:
Add DBUtill::whereUpdate, acts like autoUpdate except you can pass your
own where clause as dictionary (joined by AND)
2004-12-03 04:47 nbm
* lib/documentmanagement/DocumentLink.inc:
Switch to using KTEntity
2004-12-03 04:46 nbm
* lib/database/dbcompat.inc:
Check for an error as last result in fetchRow.
2004-12-02 02:51 nbm
* lib/: DefaultLookup.inc, archiving/ArchiveRestorationRequest.inc,
archiving/ArchivingSettings.inc, archiving/ArchivingType.inc,
archiving/DocumentArchiving.inc, archiving/TimePeriod.inc,
archiving/TimeUnit.inc, dashboard/DashboardNews.inc,
discussions/DiscussionComment.inc,
discussions/DiscussionThread.inc,
documentmanagement/DependantDocumentInstance.inc,
documentmanagement/DependantDocumentTemplate.inc,
documentmanagement/Document.inc,
documentmanagement/DocumentField.inc,
documentmanagement/DocumentFieldLink.inc,
documentmanagement/DocumentType.inc,
documentmanagement/DocumentTypeFieldLink.inc,
documentmanagement/MetaData.inc, foldermanagement/Folder.inc,
foldermanagement/FolderCollaboration.inc,
foldermanagement/FolderDocTypeLink.inc,
foldermanagement/FolderUserRole.inc, groups/Group.inc,
groups/GroupFolderApprovalLink.inc, groups/GroupFolderLink.inc,
groups/GroupUnitLink.inc, groups/GroupUserLink.inc,
links/Link.inc, orgmanagement/Organisation.inc, roles/Role.inc,
roles/RoleFolderLink.inc, subscriptions/Subscription.inc,
unitmanagement/Unit.inc, unitmanagement/UnitOrganisationLink.inc,
users/User.inc, web/WebDocument.inc, web/WebSite.inc:
Move database-backed objects over to KTEntity
2004-12-02 02:48 nbm
* sql/mysql/: install/tables.sql, upgrade/1.2.4-to-1.2.5.sql:
Add another unique name field.
2004-12-01 13:32 nbm
* config/dmsDefaults.php:
Seed the randomiser, and make KTUtil and KTEntity available to all
pages.
2004-12-01 13:30 nbm
* lib/session/control.inc:
By default, if page access has not been allowed, print an access
restricted message and exit.
(Solves the problem of empty pages.)
2004-12-01 13:28 nbm
* lib/util/ktutil.inc:
Try harder in anyToBool to find what people meant.
2004-12-01 13:23 nbm
* lib/ktentity.inc:
Common base class for standard database-backed objects in KnowledgeTree.
2004-12-01 13:22 nbm
* lib/database/dbutil.inc:
Add autoUpdate and autoDelete as per autoInsert.
2004-12-01 10:09 nbm
* lib/database/dbcompat.inc:
Stop using deprecated call_user_method_array and use
call_user_func_array instead.
2004-12-01 07:17 nbm
*
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserUI.inc:
Fix minor HTML tag error.
SF tracker: 1061175
Submitted by: Paul Gier (gier21)
2004-12-01 05:57 nbm
* lib/documentmanagement/Document.inc:
anyToBool is in KTUtil...
2004-12-01 05:56 nbm
* lib/: groups/GroupUnitLink.inc, links/Link.inc, roles/Role.inc:
Cover up errors that didn't get picked up by my testing.
2004-12-01 05:46 nbm
* lib/DefaultLookup.inc, lib/dms.inc,
lib/archiving/ArchiveRestorationRequest.inc,
lib/archiving/ArchivingSettings.inc,
lib/archiving/ArchivingType.inc,
lib/archiving/DocumentArchiving.inc,
lib/archiving/TimePeriod.inc, lib/archiving/TimeUnit.inc,
lib/dashboard/DashboardNews.inc,
lib/discussions/DiscussionComment.inc,
lib/discussions/DiscussionThread.inc,
lib/documentmanagement/DependantDocumentInstance.inc,
lib/documentmanagement/DependantDocumentTemplate.inc,
lib/documentmanagement/Document.inc,
lib/documentmanagement/DocumentField.inc,
lib/documentmanagement/DocumentFieldLink.inc,
lib/documentmanagement/DocumentLink.inc,
lib/documentmanagement/DocumentTransaction.inc,
lib/documentmanagement/DocumentType.inc,
lib/documentmanagement/DocumentTypeFieldLink.inc,
lib/documentmanagement/MetaData.inc,
lib/foldermanagement/Folder.inc,
lib/foldermanagement/FolderCollaboration.inc,
lib/foldermanagement/FolderDocTypeLink.inc,
lib/foldermanagement/FolderUserRole.inc, lib/groups/Group.inc,
lib/groups/GroupFolderApprovalLink.inc,
lib/groups/GroupFolderLink.inc, lib/groups/GroupUnitLink.inc,
lib/groups/GroupUserLink.inc, lib/links/Link.inc,
lib/orgmanagement/Organisation.inc, lib/roles/Role.inc,
lib/roles/RoleFolderLink.inc, lib/session/SiteMap.inc,
lib/subscriptions/Subscription.inc, lib/unitmanagement/Unit.inc,
lib/unitmanagement/UnitOrganisationLink.inc, lib/users/User.inc,
lib/util/ktutil.inc, lib/web/WebDocument.inc,
lib/web/WebSite.inc, sql/mysql/install/tables.sql,
sql/mysql/upgrade/1.2.4-to-1.2.5.sql:
Move over to PEAR::DB's autoExecute via DBUtil::autoInsert, which gets
rid of all non-portable insert_id calls and introduces portable
sequences.
You must run the commands in sql/mysql/upgrade/1.2.4-to-1.2.5.sql for
KnowledgeTree to function on your data.
2004-12-01 04:31 nbm
* lib/Log.inc:
If we can't write the log, then we just don't, silently.
2004-12-01 04:31 nbm
* config/dmsDefaults.php:
Make the DBUtil class available to all pages.
2004-12-01 04:29 nbm
* lib/database/dbcompat.inc:
Set autofree on the compat database's results, as they're not explicitly
freed in legacy code.
2004-12-01 04:28 nbm
* lib/database/dbutil.inc:
Database access utility class to reduce code repetition and complexity
and make it easier to make wide-spread changes in the database area.
2004-11-30 01:15 nbm
* config/dmsDefaults.php:
Switch to using PEAR::DB for our database connectivity layer. Use
DBCompat to remove our use of phplib's DB classes, but allow existing
use of phplib's DB API to work until we remove them.
2004-11-30 00:57 nbm
* lib/database/dbcompat.inc:
DBCompat provides a phplib DB API using a PEAR::DB database object.
2004-11-29 12:21 nbm
* presentation/lookAndFeel/knowledgeTree/: stylesheet.php,
documentmanagement/viewUI.inc:
Make CSS-based buttons work better in IE.
SF tracker: 1069404
Submitted by: Stefano Ciancio (sciancio)
2004-11-27 09:14 nbm
* lib/System.inc:
Use the global database handle instead of creating our own.
2004-11-27 09:13 nbm
* lib/System.inc:
Don't include db.inc directly - dmsDefaults.inc has done it for us
already.
2004-11-27 08:57 nbm
* config/: dmsDefaults.php, environment.php:
Remove non-config stuff from environment.php and place them in
dmsDefaults.php.
Also disable database-based configuration by default.
2004-11-27 08:19 nbm
* lib/database/db.inc:
Remove spurious haltmsg method.
2004-11-27 08:17 nbm
* lib/database/db.inc:
Remove unused getLastQueryResultCount and getQueryString
2004-11-27 08:13 nbm
* lib/database/db.inc:
Remove unused createSQLQuery and createSQLQueryWithOffset
2004-11-27 08:12 nbm
* lib/visualpatterns/PatternDatabaseTable.inc:
Remove unused PatternDatabaseTable
2004-11-27 02:26 nbm
* config/dmsDefaults.php, config/siteMap.inc,
lib/documentmanagement/BulkUploadManager.inc,
lib/documentmanagement/File.inc,
lib/documentmanagement/PhysicalDocumentManager.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/bulkUploadBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/bulkUploadUI.inc:
Bulk upload support for KnowledgeTree
SF tracker: 1072882
Submitted by: Adam Monsen (meonkeys)
2004-11-26 22:44 nbm
* pear/: DB.php, DB/common.php, DB/dbase.php, DB/fbsql.php,
DB/ibase.php, DB/ifx.php, DB/msql.php, DB/mssql.php,
DB/mysql.php, DB/mysqli.php, DB/oci8.php, DB/odbc.php,
DB/pgsql.php, DB/sqlite.php, DB/storage.php, DB/sybase.php:
PEAR DB from DB-1.6.8
2004-11-26 22:42 nbm
* pear/PEAR.php:
PEAR.php from PEAR-1.3.3.1
2004-11-26 22:29 nbm
* control.php:
Don't rely on register_globals.
2004-11-26 13:15 nbm
* config/dmsDefaults.php:
Recover somewhat gracefully if people insist on turning on
register_globals and magic_quotes_gpc. Remove request parameters from
global scope, and if they're quoted by magic_quotes_gpc, dequote them.
2004-11-26 13:10 nbm
* presentation/: login.php, webpageTemplate.inc,
lookAndFeel/knowledgeTree/create.php,
lookAndFeel/knowledgeTree/help.php,
lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutBL.php,
lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldSuccess.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/listDocFieldsBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldUI.inc,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/addMetaDataBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/editMetaDataBL.php,
lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/removeMetaDataBL.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkBL.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeBL.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesBL.php,
lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeBL.php,
lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsBL.php,
lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsBL.php,
lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php,
lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/addGroupBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitUI.inc,
lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUsersBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFromUnitBL.php,
lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFromUnitUI.inc,
lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkSuccess.php,
lookAndFeel/knowledgeTree/administration/linkmanagement/editLinkBL.php,
lookAndFeel/knowledgeTree/administration/linkmanagement/listLinksBL.php,
lookAndFeel/knowledgeTree/administration/linkmanagement/removeLinkBL.php,
lookAndFeel/knowledgeTree/administration/news/addNewsBL.php,
lookAndFeel/knowledgeTree/administration/news/editNewsBL.php,
lookAndFeel/knowledgeTree/administration/news/listNewsBL.php,
lookAndFeel/knowledgeTree/administration/news/previewNewsBL.php,
lookAndFeel/knowledgeTree/administration/news/removeNewsBL.php,
lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php,
lookAndFeel/knowledgeTree/administration/orgmanagement/editOrgBL.php,
lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgBL.php,
lookAndFeel/knowledgeTree/administration/orgmanagement/removeOrgBL.php,
lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleBL.php,
lookAndFeel/knowledgeTree/administration/rolemanagement/listRolesBL.php,
lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleBL.php,
lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgUI.inc,
lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsUI.inc,
lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitBL.php,
lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitFromOrgBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/addUserBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/editUserBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/listUsersBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc,
lookAndFeel/knowledgeTree/administration/usermanagement/passwordManagementBL.php,
lookAndFeel/knowledgeTree/administration/usermanagement/removeUserBL.php,
lookAndFeel/knowledgeTree/administration/websitemanagement/addWebsiteSuccess.php,
lookAndFeel/knowledgeTree/administration/websitemanagement/editWebsiteBL.php,
lookAndFeel/knowledgeTree/administration/websitemanagement/listWebsitesBL.php,
lookAndFeel/knowledgeTree/administration/websitemanagement/removeWebsiteBL.php,
lookAndFeel/knowledgeTree/dashboard/news/displayNewsImage.php,
lookAndFeel/knowledgeTree/dashboard/news/displayNewsItem.php,
lookAndFeel/knowledgeTree/discussions/addCommentBL.php,
lookAndFeel/knowledgeTree/discussions/addCommentUI.inc,
lookAndFeel/knowledgeTree/discussions/viewDiscussionBL.php,
lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/addDocumentLinkBL.php,
lookAndFeel/knowledgeTree/documentmanagement/browseBL.php,
lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/checkInDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/collaborationBL.php,
lookAndFeel/knowledgeTree/documentmanagement/collaborationRollbackBL.php,
lookAndFeel/knowledgeTree/documentmanagement/collaborationUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/deleteDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/deleteDocumentUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/downloadBL.php,
lookAndFeel/knowledgeTree/documentmanagement/emailBL.php,
lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/modifyBL.php,
lookAndFeel/knowledgeTree/documentmanagement/modifyGenericMetaDataBL.php,
lookAndFeel/knowledgeTree/documentmanagement/modifyGenericMetaDataUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/modifySpecificMetaDataBL.php,
lookAndFeel/knowledgeTree/documentmanagement/modifyUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/moveDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/removeDocumentLinkBL.php,
lookAndFeel/knowledgeTree/documentmanagement/templateDocumentBrowseBL.php,
lookAndFeel/knowledgeTree/documentmanagement/templateDocumentBrowseUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/viewBL.php,
lookAndFeel/knowledgeTree/documentmanagement/viewHistoryBL.php,
lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/webDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/archiving/addArchiveSettingsBL.php,
lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveDocumentBL.php,
lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveSettingsUI.inc,
lookAndFeel/knowledgeTree/documentmanagement/archiving/modifyArchiveSettingsBL.php,
lookAndFeel/knowledgeTree/documentmanagement/archiving/requestDocumentRestoreBL.php,
lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php,
lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationBL.php,
lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeBL.php,
lookAndFeel/knowledgeTree/foldermanagement/addFolderUI.inc,
lookAndFeel/knowledgeTree/foldermanagement/addGroupFolderLinkBL.php,
lookAndFeel/knowledgeTree/foldermanagement/collaborationBL.php,
lookAndFeel/knowledgeTree/foldermanagement/deleteDependantDocumentBL.php,
lookAndFeel/knowledgeTree/foldermanagement/deleteFolderBL.php,
lookAndFeel/knowledgeTree/foldermanagement/deleteFolderCollaborationBL.php,
lookAndFeel/knowledgeTree/foldermanagement/deleteFolderDocTypeBL.php,
lookAndFeel/knowledgeTree/foldermanagement/deleteGroupFolderLinkBL.php,
lookAndFeel/knowledgeTree/foldermanagement/editBL.php,
lookAndFeel/knowledgeTree/foldermanagement/editGroupFolderLinkBL.php,
lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc,
lookAndFeel/knowledgeTree/foldermanagement/groupFolderLinkUI.inc,
lookAndFeel/knowledgeTree/foldermanagement/modifyFolderDataBL.php,
lookAndFeel/knowledgeTree/foldermanagement/viewDependantDocumentsBL.php,
lookAndFeel/knowledgeTree/preferences/editUserPrefsBL.php,
lookAndFeel/knowledgeTree/preferences/passwordManagementBL.php,
lookAndFeel/knowledgeTree/search/advancedSearchBL.php,
lookAndFeel/knowledgeTree/search/standardSearchBL.php,
lookAndFeel/knowledgeTree/subscriptions/addSubscriptionBL.php,
lookAndFeel/knowledgeTree/subscriptions/manageSubscriptionsBL.php,
lookAndFeel/knowledgeTree/subscriptions/removeSubscriptionBL.php,
lookAndFeel/knowledgeTree/subscriptions/viewAlertBL.php:
Don't rely on register_globals or similar mechanisms to access request
parameters. Either use KTUtil::extractGPC to bring specific parameters
to global scope or access them via the $_REQUEST array.
2004-11-26 12:51 nbm
* lib/documentmanagement/PhysicalDocumentManager.inc:
Remove outdated comments
2004-11-26 12:48 nbm
* lib/: session/SiteMap.inc, browse/CategoryBrowser.inc,
browse/DocumentTypeBrowser.inc, browse/FolderBrowser.inc:
Don't rely on register_globals for access to request variables.
2004-11-26 09:27 nbm
* lib/util/ktutil.inc:
extractGPC moves specified request parameters to the global scope.
2004-11-26 08:01 nbm
* graphics/widgets/: checkall.png, clearall.png:
Add checkall and clearall buttons
2004-11-26 07:51 nbm
* config/dmsDefaults.php:
Autodetect paths and server name, and componentise and modernise the
initialisation process.
2004-11-26 07:09 nbm
* control.php:
Fix up indentation and copious whitespace
2004-11-23 00:13 michaeljoseph
* lib/System.inc:
Corrected folderHidingFlag typo
SF Patch: 1071308
Submitted by: Adam Monsen (meonkeys)
2004-11-22 05:25 nbm
* sql/mysql/install/tables.sql:
Update version information for new installs.
2004-11-19 06:48 michaeljoseph
* sql/mysql/upgrade/: 1.2.3-to-1.2.4.sql, 1.2.4-to-1.2.5.sql:
Adding intermediate db upgrade scripts (just setting the version number)
2004-11-18 06:43 nbm
*
presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc:
Use getClearAllButton and getCheckAllButton instead of using directly.
2004-11-18 06:42 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc:
Translate the buttons properly.
2004-11-18 06:40 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc:
Hook up some words that slipped through.
2004-11-18 06:36 nbm
* presentation/Html.inc:
Add getClearAllButton and getCheckAllButton
2004-11-18 06:25 nbm
* lib/i18n/languageFunctions.inc:
Add English to the list of available locales. Otherwise we'd skip past
an English preference to a lower-priority language.
2004-11-18 06:24 nbm
* i18n/knowledgeTree.po:
Updated with new localisation hooks.
2004-11-18 06:21 nbm
* bin/generate-buttons.php:
Generate Clear All and Check All buttons too.
2004-11-18 05:16 nbm
* lib/visualpatterns/NavBar.inc:
Move the heading/logo to the left, and stylise a bit.
2004-11-17 05:37 nbm
* presentation/webpageTemplate.inc:
Stop using absolute positioning for the contact images.
2004-11-17 05:31 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc:
Make the view layout less dependent on specific pixel sizes, and use
divs in place of merely table rows for some cases.
2004-11-16 04:53 nbm
* lib/visualpatterns/PatternBrowsableSearchResults.inc:
Fix off-by-one in whether to display the 'Next' button.
SF Tracker: 1058334
Submitted by: David Linsin (dlinsin) (bug report)
2004-11-16 04:17 nbm
* lib/visualpatterns/PatternBrowsableSearchResults.inc:
Fix display problems when contentPaneScrolling is not used.
SF Tracker: 1064616
Submitted by: Stefano Ciancio (sciancio)
2004-11-16 03:52 nbm
* config/siteMap.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUsersBL.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUsersUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsUI.inc:
Interface to quickly add/remove users from a chosen group.
SF tracker: 1064590
Submitted by: Stefano Ciancio (sciancio)
2004-11-16 03:35 nbm
* lib/security/Permission.inc:
Don't reference old iDocumentId or null document objects
SF tracker: 1066258
Submitted by: Adam Monsen (meonkeys)
2004-11-15 06:12 nbm
* graphics/icons/login.png, presentation/Html.inc:
Move from login.jpg to login.png
2004-11-10 01:15 nbm
* config/siteMap.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupBL.php,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserFromGroupBL.php,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserFromGroupUI.inc:
Improve the User -> Group editing capability greatly.
SF Tracker: 1060116
Submitted by: Stefano Ciancio (sciancio)
2004-11-10 01:07 nbm
* presentation/lookAndFeel/knowledgeTree/js/OptionTransfer.js:
Add "Match" capability to the OptionTransfer code.
SF Tracker: 1060116
Submitted by: Stefano Ciancio (sciancio)
2004-11-10 00:37 nbm
* bin/generate-buttons.php:
Add login.png to the list of buttons to generate.
2004-11-10 00:29 nbm
* lib/security/Permission.inc:
Replace left-over iFolderId references with oFolderId where iFolderId no
longer exists.
SF tracker: 1062969
Submitted by: Stefano Ciancio (sciancio)
2004-11-04 04:43 nbm
* config/environment.php:
Default to useAcceptLanguageHeader and not displaying the javascript
scrollbars.
2004-11-04 04:28 nbm
* presentation/lookAndFeel/knowledgeTree/administration/:
docfieldmanagement/addDocFieldUI.inc,
groupmanagement/addGroupBL.php, usermanagement/removeUserUI.inc:
Standardise some translated text.
2004-11-04 03:28 nbm
* presentation/login.php:
Remove Content-Type meta tag - already set in headers.
2004-11-04 02:06 nbm
* lib/visualpatterns/PatternMainPage.inc:
Remove Content-Type meta tag - already set in header.
Also don't default value for bScroll, since it's overridden in the
constructor.
2004-11-04 01:55 nbm
* lib/i18n/accept-to-gettext.inc:
Be wildly unfair, and if the character set hasn't been detected
properly, assume iso-8859-1.
2004-11-03 10:18 nbm
* i18n/it_IT/graphics/widgets/: add.png, archive.png, assign.png,
browse.png, cancel.png, checkin.png, checkout.png, delete.png,
done.png, edit.png, email.png, expunge.png, move.png, new.png,
remove.png, restore.png, search.png, select.png, update.png:
Italian version of form buttons.
2004-11-03 08:34 nbm
* i18n/it_IT/LC_MESSAGES/: knowledgeTree.mo, knowledgeTree.po:
Add Italian translations performed by Andrea Toneguzzi and Emil Martini
at btz.it.
Manually added some extra words for buttons to be able to show off -
hopefully I didn't get it too wrong.
Thanks guys!
2004-11-03 08:31 nbm
* i18n/knowledgeTree.po:
Update to reflect current state.
2004-11-03 06:34 nbm
* graphics/widgets/add.gif, graphics/widgets/add.png,
graphics/widgets/addcomment.gif, graphics/widgets/addcomment.png,
graphics/widgets/approve.gif, graphics/widgets/approve.png,
graphics/widgets/archive.gif, graphics/widgets/archive.png,
graphics/widgets/assign.gif, graphics/widgets/assign.png,
graphics/widgets/back.gif, graphics/widgets/back.png,
graphics/widgets/begin.gif, graphics/widgets/begin.png,
graphics/widgets/browse.gif, graphics/widgets/browse.png,
graphics/widgets/cancel.gif, graphics/widgets/cancel.png,
graphics/widgets/checkin.gif, graphics/widgets/checkin.png,
graphics/widgets/checkout.gif, graphics/widgets/checkout.png,
graphics/widgets/delete.gif, graphics/widgets/delete.png,
graphics/widgets/done.gif, graphics/widgets/done.png,
graphics/widgets/download.gif, graphics/widgets/download.png,
graphics/widgets/edit.gif, graphics/widgets/edit.png,
graphics/widgets/email.gif, graphics/widgets/email.png,
graphics/widgets/expunge.gif, graphics/widgets/expunge.png,
graphics/widgets/move.gif, graphics/widgets/move.png,
graphics/widgets/movehere.gif, graphics/widgets/movehere.png,
graphics/widgets/new.gif, graphics/widgets/new.png,
graphics/widgets/next.gif, graphics/widgets/next.png,
graphics/widgets/publish.gif, graphics/widgets/publish.png,
graphics/widgets/reject.gif, graphics/widgets/reject.png,
graphics/widgets/remove.gif, graphics/widgets/remove.png,
graphics/widgets/reply.gif, graphics/widgets/reply.png,
graphics/widgets/reset.gif, graphics/widgets/reset.png,
graphics/widgets/restore.gif, graphics/widgets/restore.png,
graphics/widgets/restorehere.gif,
graphics/widgets/restorehere.png, graphics/widgets/search.gif,
graphics/widgets/search.png, graphics/widgets/select.gif,
graphics/widgets/select.png, graphics/widgets/submit.gif,
graphics/widgets/submit.png, graphics/widgets/subscribe.gif,
graphics/widgets/subscribe.png, graphics/widgets/unsubscribe.gif,
graphics/widgets/unsubscribe.png, graphics/widgets/update.gif,
graphics/widgets/update.png, graphics/widgets/updatePassword.gif,
graphics/widgets/updatePassword.png, presentation/Html.inc:
Move to auto-generated PNG files from generate-button.php
2004-11-03 06:10 nbm
* bin/generate-buttons.php:
A script that generates the Add/Back/Cancel/Next form buttons. Can take
a locale, which will be used to get the correct wording in the buttons.
2004-11-03 00:12 nbm
* docs/i18n.txt,
lib/visualpatterns/PatternBrowsableSearchResults.inc,
presentation/Html.inc, presentation/login.php,
presentation/lookAndFeel/knowledgeTree/administration/adminUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/addMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/editMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/removeMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/addGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupFail.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFail.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFromUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/editLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/removeLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/news/newsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/editOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/removeOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/addRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitFromOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/passwordManagementUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserFromGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/addWebsiteSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/addWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/editWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/removeWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/discussions/addCommentUI.inc,
presentation/lookAndFeel/knowledgeTree/discussions/viewCommentUI.inc,
presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkInDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/collaborationRollbackUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/collaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/deleteDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/downloadBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyGenericMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifySpecificMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/removeDocumentLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewHistoryUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/webDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveSettingsUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/restoreArchivedDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/collaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderCollaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php,
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/groupFolderLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/modifyFolderDataUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/viewDependantDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc,
presentation/lookAndFeel/knowledgeTree/preferences/passwordManagementUI.inc,
presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc,
presentation/lookAndFeel/knowledgeTree/subscriptions/subscriptionUI.inc:
Replace direct image paths by getAddButton-style functions.
2004-10-28 08:25 nbm
* presentation/lookAndFeel/knowledgeTree/: dashboardUI.inc,
noAccess.php,
administration/doccheckoutmanagement/editDocCheckoutBL.php,
administration/docfieldmanagement/addDocFieldUI.inc,
administration/docfieldmanagement/metadatamanagement/addMetaDataUI.inc,
administration/documentmanagement/manageArchivedDocumentsBL.php,
administration/groupmanagement/addGroupBL.php,
administration/groupmanagement/removeGroupUI.inc,
administration/linkmanagement/removeLinkUI.inc,
administration/news/addNewsBL.php,
administration/rolemanagement/removeRoleUI.inc,
administration/unitmanagement/editUnitOrgUI.inc,
administration/usermanagement/passwordManagementBL.php,
administration/usermanagement/removeUserFromGroupUI.inc,
administration/usermanagement/removeUserUI.inc,
administration/websitemanagement/addWebsiteSuccess.php,
administration/websitemanagement/addWebsiteUI.inc,
administration/websitemanagement/editWebsiteBL.php,
administration/websitemanagement/editWebsiteUI.inc,
administration/websitemanagement/listWebsitesUI.inc,
administration/websitemanagement/removeWebsiteBL.php,
administration/websitemanagement/removeWebsiteUI.inc,
discussions/addCommentBL.php, discussions/addCommentUI.inc,
discussions/viewCommentBL.php, discussions/viewCommentUI.inc,
discussions/viewDiscussionBL.php,
discussions/viewDiscussionUI.inc,
documentmanagement/addDocumentBL.php,
documentmanagement/addDocumentLinkBL.php,
documentmanagement/addDocumentLinkUI.inc,
documentmanagement/addDocumentUI.inc,
documentmanagement/browseUI.inc,
documentmanagement/checkInDocumentBL.php,
documentmanagement/checkInDocumentUI.inc,
documentmanagement/checkOutDocumentBL.php,
documentmanagement/checkOutDocumentUI.inc,
documentmanagement/collaborationBL.php,
documentmanagement/collaborationRollbackBL.php,
documentmanagement/collaborationRollbackUI.inc,
documentmanagement/collaborationUI.inc,
documentmanagement/createDependantDocumentBL.php,
documentmanagement/createDependantDocumentUI.inc,
documentmanagement/deleteDocumentBL.php,
documentmanagement/deleteDocumentUI.inc,
documentmanagement/downloadBL.php,
documentmanagement/emailBL.php, documentmanagement/emailUI.inc,
documentmanagement/escalateDependantDocumentBL.php,
documentmanagement/escalateDependantDocumentUI.inc,
documentmanagement/modifyBL.php,
documentmanagement/modifyGenericMetaDataUI.inc,
documentmanagement/modifySpecificMetaDataUI.inc,
documentmanagement/moveDocumentBL.php,
documentmanagement/moveDocumentUI.inc,
documentmanagement/removeDocumentLinkBL.php,
documentmanagement/removeDocumentLinkUI.inc,
documentmanagement/templateDocumentBrowseUI.inc,
documentmanagement/viewBL.php,
documentmanagement/viewHistoryBL.php,
documentmanagement/viewHistoryUI.inc,
documentmanagement/viewUI.inc,
documentmanagement/webDocumentBL.php,
documentmanagement/archiving/addArchiveSettingsBL.php,
documentmanagement/archiving/archiveDocumentBL.php,
documentmanagement/archiving/archiveSettingsUI.inc,
documentmanagement/archiving/modifyArchiveSettingsBL.php,
documentmanagement/archiving/restoreArchivedDocumentUI.inc,
foldermanagement/addFolderBL.php,
foldermanagement/addFolderCollaborationBL.php,
foldermanagement/addFolderCollaborationUI.inc,
foldermanagement/addFolderDocTypeBL.php,
foldermanagement/addFolderDocTypeUI.inc,
foldermanagement/addFolderUI.inc,
foldermanagement/addGroupFolderLinkBL.php,
foldermanagement/collaborationUI.inc,
foldermanagement/deleteDependantDocumentBL.php,
foldermanagement/deleteDependantDocumentUI.inc,
foldermanagement/deleteFolderBL.php,
foldermanagement/deleteFolderCollaborationBL.php,
foldermanagement/deleteFolderCollaborationUI.inc,
foldermanagement/deleteFolderDocTypeBL.php,
foldermanagement/deleteFolderUI.inc,
foldermanagement/deleteGroupFolderLinkBL.php,
foldermanagement/editBL.php,
foldermanagement/editGroupFolderLinkBL.php,
foldermanagement/editUI.inc, foldermanagement/folderUI.inc,
foldermanagement/groupFolderLinkUI.inc,
foldermanagement/modifyFolderDataBL.php,
foldermanagement/viewDependantDocumentsBL.php,
foldermanagement/viewDependantDocumentsUI.inc,
preferences/passwordManagementBL.php,
search/advancedSearchBL.php, search/advancedSearchUI.inc,
search/standardSearchUI.inc, subscriptions/addSubscriptionBL.php,
subscriptions/manageSubscriptionsBL.php,
subscriptions/removeSubscriptionBL.php,
subscriptions/subscriptionUI.inc, subscriptions/viewAlertBL.php:
Another pass adding translation hooks.
2004-10-28 02:03 michaeljoseph
* sql/mysql/install/user.sql:
Added SELECT privilege on document_text table for FileIndexer db user
Submitted by: Alain Matsas
2004-10-27 04:14 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc:
Mark up new text for translation
2004-10-26 05:52 nbm
* lib/visualpatterns/NavBar.inc:
Move navbar graphics under the navbar/ directory
2004-10-26 05:52 nbm
* graphics/navbar/logout/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move logout to navbar/
2004-10-26 05:47 nbm
* graphics/navbar/help/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move help to navbar/
2004-10-26 05:41 nbm
* graphics/navbar/prefs/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move prefs to navbar/
2004-10-26 05:38 nbm
* graphics/navbar/asearch/: colour.gif, def.gif, norm.gif,
over.gif, rest.gif, stretch.gif:
Move asearch to navbar/
2004-10-26 05:33 nbm
* graphics/navbar/subscriptions/: colour.gif, def.gif, norm.gif,
over.gif:
Move subscriptions to navbar/
2004-10-26 05:30 nbm
* graphics/navbar/home/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move home to navbar/
2004-10-26 05:23 nbm
* graphics/navbar/admin/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move admin to navbar/
2004-10-26 05:13 nbm
* graphics/navbar/mdocs/: colour.gif, def.gif, norm.gif, over.gif,
rest.gif, stretch.gif:
Move mdocs under navbar/
2004-10-26 05:01 nbm
* lib/visualpatterns/PatternMainPage.inc:
Use UTF-8, not UTF8.
2004-10-26 04:01 nbm
* lib/visualpatterns/NavBar.inc,
presentation/lookAndFeel/knowledgeTree/stylesheet.php:
Default to using text menus rather than images, to ease translation.
2004-10-12 13:23 nbm
* presentation/lookAndFeel/knowledgeTree/dashboardUI.inc:
Change capitalisation of ScrollingNews to scrollingNews to match
configuration.
SF tracker: 1045195
Submitted by: Stefano Ciancio (sciancio)
2004-10-11 07:45 nbm
*
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc:
Display docaction buttons using CSS and HTML by default. Can still ask
for image buttons, if you so wish.
2004-10-11 03:17 nbm
* graphics/widgets/dfolder_unit.gif,
presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc:
Add a Unit Folder icon to distinguish unit root folders.
SF tracker: 1044466
Submitted by: Stefano Ciancio (sciancio)
2004-10-11 03:05 nbm
* lib/authentication/class.AuthLdap.php:
Add support for OpenLDAP2 servers that don't offer anonymous bind or
LDAPv2 bings.
SF tracker: 1025349
Submitted by: daniel patrick
2004-10-11 02:32 nbm
* presentation/lookAndFeel/knowledgeTree/:
documentmanagement/browseBL.php, documentmanagement/browseUI.inc,
documentmanagement/deleteDocumentBL.php,
documentmanagement/deleteDocumentUI.inc,
documentmanagement/moveDocumentBL.php,
documentmanagement/moveDocumentUI.inc,
documentmanagement/viewUI.inc, foldermanagement/folderUI.inc:
Allow the user to select multiple documents for deletion or moving.
Submitted by: Stefano Ciancio <s.ciancio@pisa.iol.it>
2004-10-08 02:55 nbm
* docs/RELEASE.txt:
Steps to perform for a KnowledgeTree release.
2004-10-07 05:44 nbm
* presentation/lookAndFeel/knowledgeTree/stylesheet.php:
CSS necessary for text-based buttons
Version 1.2.4 (2004/10/04)
Features
========
* Significant increase in translation support
Bug Fixes
=========
* Properly deal with the rootUrl in some less-travelled cases.
Detailed ChangeLog
==================
2004-10-04 04:39 nbm
* lib/session/control.inc:
In the !bReturnLink case, prepend the rootUrl to the quickly-generated
URL. This fixes the document move and related problems.
2004-09-28 05:12 nbm
* tests/documentmanagement/viewUI.inc:
Might as well mark up this test too.
2004-09-28 04:57 nbm
* i18n/knowledgeTree.po,
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/listDocumentsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/listDocFieldsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/addMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/editMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/removeMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/addGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitBL.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFromUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/editLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/listLinksUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/removeLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/news/newsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/editOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/removeOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/addRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/listRolesUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitFromOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/passwordManagementUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserFromGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/removeUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/addWebsiteSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/addWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/editWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/listWebsitesUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/removeWebsiteUI.inc,
presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionBL.php,
presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkInDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/collaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/deleteDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyGenericMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifySpecificMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/removeDocumentLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/templateDocumentBrowseUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewHistoryUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/webDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveSettingsUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/restoreArchivedDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/collaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderCollaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/groupFolderLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/modifyFolderDataUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/viewDependantDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/preferences/passwordManagementUI.inc,
presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc,
presentation/lookAndFeel/knowledgeTree/search/standardSearchUI.inc,
presentation/lookAndFeel/knowledgeTree/subscriptions/subscriptionUI.inc:
More hooks for translations.
2004-09-28 04:56 nbm
* tests/authentication/ldap.php:
Make this at least compile...
2004-09-28 04:24 nbm
* docs/i18n.txt:
Add more 'text inside images' information.
2004-09-28 04:24 nbm
* sql/mysql/install/user.sql:
Don't hardcode that we're using the 'dms' database. Use whatever
database the installer sets on the command line.
2004-09-21 05:22 nbm
* docs/i18n.txt:
Add a list of images that contain English strings, and those strings, to
aid translation of KnowledgeTree.
2004-09-21 05:21 nbm
*
presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc,
i18n/knowledgeTree.po:
Add some more translateable strings.
2004-09-21 05:19 nbm
* lib/visualpatterns/PatternMainPage.inc, presentation/login.php:
Change our character set to UTF8 (for the time being).
2004-09-20 02:57 nbm
* lib/security/Permission.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/viewDependantDocumentsUI.inc:
Remove hardcoded users_groups_link and groups_folders_link table names.
Submitted by: Marcel Berteler
SF Bug: 1021345
2004-09-16 07:45 nbm
* docs/INSTALL.txt:
Provide the required versions of the dependent software.
2004-09-16 06:49 nbm
* config/dmsDefaults.php, config/siteMap.inc, docs/i18n.txt,
i18n/knowledgeTree.po, presentation/login.php,
presentation/lookAndFeel/knowledgeTree/administration/admin.php,
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/listDocumentsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/addDocFieldSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/listDocFieldsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldBL.php,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/removeDocFieldUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/addMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/editMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/metadatamanagement/removeMetaDataUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeFieldsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/editDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/removeDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/expungeDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/listDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/addGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupFail.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupBL.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFail.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupFromUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/addLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/editLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/listLinksUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/removeLinkUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/news/addNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/news/editNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/news/newsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/news/removeNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/editOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/removeOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/listRolesUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitToOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitFromOrgBL.php,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitFromOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/removeUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc:
Mark up the rest of KnowledgeTree for translation.
Thanks to Andrea Toneguzzi for assistance in identifying many phrases to
mark up!
Version 1.2.3 (2004/09/09)
Features
========
* Users can now reset their own password via the Preferences section (William Hawkins)
* Improved database by:
- adding indexes on all important foreign key fields
- changing CHAR fields to VARCHAR to save space
* Added support for multiple unit administration (Group and User Management)
* TODO:Installation improved- removed all spurious E_NOTICES caused by inconsistent variable initialisation and usage (#989328)
* TODO:Added additional LDAP configuration to add support for Novell NDIS 6.0 as an auth server (Hendrik Lachmann via #996172)
Bug Fixes
=========
#987152: i18n- Incorrect usage of LC_MESSAGES as the locale, changed to LC_ALL.
#986627: Email Link- Overzealous input sanitisation broke the ability to email a document link.
#986726: Problems when changing unit name: the rename operation was renaming the folder to the old folder name (Paul Gier)
Detailed ChangeLog
==================
2004-09-03 06:37 nbm
* lib/Log.inc:
Log into files with non-ambiguous (and more common) date format:
year-month-day.
Suggested by: Marcel Berteler
2004-09-03 01:34 michaeljoseph
* docs/ChangeLog.txt:
Minor typo and spacing correction.
2004-09-01 00:10 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/addGroupUI.inc:
Corrected HTML syntax error.
2004-08-26 06:31 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/foldermanagement/groupFolderLinkUI.inc:
Updated to include all units.
2004-08-25 04:51 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/:
addGroupBL.php, addGroupUI.inc:
Added the ability to specify the unit when creating a group.
2004-08-23 02:35 michaeljoseph
* lib/database/escape.inc:
Added check for the appropriate mysql escape function name
2004-08-20 00:56 michaeljoseph
* phplib/db_mysql.inc:
Added DEBUG SQL query logging.
2004-08-19 06:16 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/:
listGroupsBL.php, listGroupsUI.inc:
Corrected multiple unit administration bug for system administrator.
2004-08-18 02:37 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/documentmanagement/:
moveDocumentBL.php, moveDocumentUI.inc:
Corrected display error when moving a document. Also implemented more efficient object instead of id passing.
2004-08-18 02:36 michaeljoseph
* lib/util/sanitize.inc, presentation/login.php:
Moved sanitize function to the util directory.
2004-08-18 02:34 michaeljoseph
* lib/: documentmanagement/DocumentCollaboration.inc,
foldermanagement/Folder.inc:
Corrected some object reference passing semantics.
2004-08-18 02:33 michaeljoseph
* lib/documentmanagement/Document.inc:
[999478] Added quoting for all db values.
2004-08-18 02:27 michaeljoseph
* lib/database/: db.inc, escape.inc:
Added reference to database type.
Added db quoting library functions.
2004-08-18 02:25 michaeljoseph
* config/environment.php:
Added dbType config entry
2004-08-12 09:02 michaeljoseph
* docs/ChangeLog.txt:
Updated.
2004-08-12 09:00 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/stylesheet.php:
Added explicit background colour and formatted.
2004-08-12 08:57 michaeljoseph
* sql/mysql/: install/tables.sql, upgrade/1.2.2-to-1.2.3.sql:
SQL changes in preparation for the next release.
2004-08-12 08:35 michaeljoseph
* lib/browse/CategoryBrowser.inc:
Added FIXME
2004-08-12 07:39 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc:
Corrected SQL keyword case.
2004-08-12 07:37 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/:
listGroupsBL.php, listGroupsUI.inc:
Added support for multiple units in group adminstration.
2004-08-12 07:37 michaeljoseph
* lib/users/User.inc:
Added function to return an array of unit IDs
2004-08-12 07:26 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc:
Added support for multiple units in user adminstration.
2004-07-29 04:01 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentUI.inc:
Changed to standard usage of controller link helper function.
2004-07-29 03:47 michaeljoseph
* lib/browse/FolderBrowser.inc:
Added FIXME for folder permission check bug.
2004-07-29 03:35 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc:
Removed rootUrl appending code, callers should now use controller link construction helper function.
2004-07-29 03:33 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/foldermanagement/:
addFolderDocTypeUI.inc, addFolderUI.inc,
deleteFolderDocTypeUI.inc, modifyFolderDataUI.inc:
Changed to standard usage of controller link helper function.
2004-07-29 03:33 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php:
Added FIXME for folder permission check bug.
2004-07-29 03:27 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupBL.php:
Corrected style convention violations.
2004-07-29 03:26 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentsUI.inc:
Changed to standard usage of controller link helper function.
2004-07-29 03:24 michaeljoseph
* presentation/webpageTemplate.inc:
Corrected Mozilla unclickable link CSS bug (Peter S. Griffin)
2004-07-29 03:20 michaeljoseph
* lib/session/SiteMap.inc:
Corrected style convention violations.
Added some variable initialisation and instantiation checking (to remove spurious E_NOTICEs)
2004-07-29 03:19 michaeljoseph
* lib/session/control.inc:
Added check for a leading slash on the target page.
2004-07-29 03:15 michaeljoseph
* control.php:
Added some variable initialisation and instantiation checking (to remove spurious E_NOTICEs)
2004-07-29 03:01 michaeljoseph
* lib/session/Session.inc:
Changed logging level to INFO.
2004-07-26 09:05 michaeljoseph
* lib/security/Permission.inc:
Corrected style convention violations.
2004-07-26 09:01 michaeljoseph
* lib/browse/: DocumentTypeBrowser.inc, CategoryBrowser.inc:
Check if a document is live _before_ checking its permission.
2004-07-26 09:01 michaeljoseph
* lib/browse/FolderBrowser.inc:
Corrected style convention violations.
Check if a document is live _before_ checking its permission.
2004-07-26 08:58 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/addDocTypeFieldsLinkUI.inc:
Corrected all naming convention violations and fixed 'Back' button link construction for 'no Non-generic fields' case.
2004-07-26 07:41 michaeljoseph
* lib/security/Permission.inc:
Corrected usage error- we're dealing with an object now instead of a passed in folderID
2004-07-19 06:38 michaeljoseph
* lib/unitmanagement/Unit.inc:
#986726- the rename operation was renaming the folder to the old folder name (Paul Gier)
2004-07-15 02:09 michaeljoseph
* config/environment.php:
Reverted to neutral configuration defaults.
2004-07-15 01:57 michaeljoseph
* presentation/lookAndFeel/knowledgeTree/:
documentmanagement/modifyGenericMetaDataBL.php,
documentmanagement/modifySpecificMetaDataBL.php,
foldermanagement/editBL.php,
foldermanagement/modifyFolderDataBL.php:
Changed all references to store.php from relative to absolute.
2004-07-14 01:37 jacquiz
* lib/security/Permission.inc:
Type: Bug fix
Description: Added the userHasFolderReadPermission to the
userHasDocumentReadPermission check
2004-07-13 03:49 jacquiz
* presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationBL.php:
Type: functionality change
Description: Passing through folder object instead of folder id to permissions
checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-13 02:34 jacquiz
* presentation/lookAndFeel/knowledgeTree/:
documentmanagement/addDocumentBL.php,
documentmanagement/addDocumentUI.inc,
foldermanagement/addFolderCollaborationBL.php,
foldermanagement/addGroupFolderLinkBL.php,
foldermanagement/deleteDependantDocumentBL.php,
foldermanagement/deleteFolderBL.php,
foldermanagement/deleteFolderDocTypeBL.php,
foldermanagement/deleteGroupFolderLinkBL.php,
foldermanagement/editGroupFolderLinkBL.php,
foldermanagement/viewDependantDocumentsBL.php,
foldermanagement/addFolderDocTypeBL.php,
foldermanagement/deleteFolderCollaborationBL.php:
Type: functionality change
Description: Passing through folder object instead of folder id to permissions
checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-13 02:21 jacquiz
* presentation/lookAndFeel/knowledgeTree/subscriptions/addSubscriptionBL.php,
lib/browse/CategoryBrowser.inc,
lib/browse/DocumentTypeBrowser.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/downloadBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/emailBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewHistoryBL.php:
Type: functionality change
Description: Passing through document object instead of document id to permissions checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-13 02:13 jacquiz
* presentation/lookAndFeel/knowledgeTree/documentmanagement/checkInDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/checkOutDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/collaborationBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/deleteDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/moveDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/removeDocumentLinkBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentLinkBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyGenericMetaDataBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/modifySpecificMetaDataBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php,
tests/documentmanagement/viewBL.php:
Type: functionality change
Description: Passing through document object instead of document id to permissions
checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-12 08:17 jacquiz
* presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php:
Type: functionality change
Description: Passing through folder object instead of folder id to permissions
checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-12 05:16 jacquiz
* presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php:
Type: functionality change
Description: Passing through folder object instead of folder id to permissions
checks to avoid redundant DB accesses to intsantiate db model objects
2004-07-12 04:52 jacquiz
* presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php:
Type: functionality change
Description: Pass the document object around to the permission checks instead of the
documentID to avoid redundant db checks
2004-07-12 03:10 jacquiz
* lib/browse/FolderBrowser.inc:
Type: functionality change
Description: Now checks folder permissions before displaying folders
2004-07-12 03:09 jacquiz
* presentation/lookAndFeel/knowledgeTree/discussions/:
addCommentBL.php, addCommentUI.inc, viewCommentBL.php,
viewCommentUI.inc, viewDiscussionUI.inc:
Type: Bug fix
Description: Pass through the TreadID so that the comments for the correct
thread is displayed
2004-07-12 03:07 jacquiz
* lib/System.inc:
Type: functionality change
Description: Added the folderHiding configuration parameter
2004-07-12 03:06 jacquiz
* lib/session/SiteMap.inc:
Type: functionality change
Description: Rationalised some fot he permissions checks, eg sysadmin and unit admin checks
to avoid redundant db accesses
2004-07-12 03:04 jacquiz
* lib/security/Permission.inc:
Type: functionality change
Description: Ensured folder and document objects were being passed around
instead of the IDs. This avoids redundant object initialisation from the Database. Removed from
redundant calls to permission checks in more complicated checking methods.
2004-07-12 03:00 jacquiz
* config/environment.php:
Type: functionality change
Description: Added a global variable $default->folderHidingFlag that determines whether or not
to enable folder hiding of folders to which users do not have permission.
Behaviour before fix: All navigation was viewable to the user
Behaviour after fix: Now the user is only have to see folders to which they have access
2004-07-09 06:44 michaeljoseph
* tests/authentication/ldap.php:
Updating old test with a less believable test password.
2004-07-08 02:52 michaeljoseph
* config/dmsDefaults.php:
#987152- changed locale category to LC_ALL.
2004-07-08 02:45 michaeljoseph
* presentation/login.php:
#986627- removed redirect variable sanitisation- the redirect variable is used to lookup a page in the SiteMap, so this prevents a malicious redirect from being used.
2004-07-08 02:35 michaeljoseph
* config/siteMap.inc,
presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc,
presentation/lookAndFeel/knowledgeTree/preferences/passwordManagementBL.php,
presentation/lookAndFeel/knowledgeTree/preferences/passwordManagementUI.inc:
William Hawkins' patch to allow users to change their own passwords.
2004-06-24 06:09 michael
* presentation/login.php:
Type: Cosmetic
Description: Changed the login error message to be more accurate/informative.
2004-06-15 03:22 michael
* lib/Log.inc:
Added the ability to specify logging filename prefix.
2004-06-15 03:21 michael
* config/dmsDefaults.php:
Added timer logging instance
Added dummy gettext function when its not installed.
2004-05-27 01:50 michael
* config/environment.php:
Change default ssl status to false.
Version 1.2.2
* Tue May 26 2004 Michael Joseph <michael@jamwarehouse.com>
Features
========
* Internationalisation framework added.
- The first step in producing a multi-lingual KnowledgeTree(tm) is released
in this version. See docs/i18n.txt for more information.
* Added the ability to email document links to groups.
- A link to a document in the KnowledgeTree(tm) can now be emailed to
groups as well as users.
* Discussion threads are now indented.
- The display of the discussion forums has been improved by graphically
representing groups of threads
* Updated password feature
- Administrators can now reset user's passwords.
Bug Fixes
=========
Added XSS attack protection.
#2988- Removed redundant routing role active attribute.
#2963- Add silent deletion when expunging folders and documents that don't exists on the fs.
#3512- Linked Documents browse popup didn't return the selected document.
#3426- Browse Collections- display # of documents and folders in a folder.
#2978- Administration Security- Unit administrators should not be able administer system admin user accounts, or create groups with sysadmin privileges or add users to system admin groups.
#3265- Document Details -> Archiving Settings- Utilisation setting don't display
#3543- Assigning units to groups, input not validated (stefano.ciancio@mail.wind.it).
#2944- Adding a unit causes duplicate root folders if a folder with the name of the unit exists already.
#3425- Browse Collections - title => filename; description => title
#3545- IE -> Add Document -> JScript syntax error
#3519- Unit Admin can administer groups in all units, not just the unit she is admin for.
#3481- Don't allow published documents to be checked out.
#2985- Don't allow checked out documents or documents in collaboration to be archived.
Many community-contributed patches (see Detailed ChangeLog)
Detailed ChangeLog
==================
2004-05-10 18:11 michael
* knowledgeTree/sql/mysql/install/tables.sql:
Type: Release preparation.
Description: Bump version number in db.
2004-05-10 18:03 michael
* knowledgeTree/lib/: authentication/Authenticator.inc,
authentication/DBAuthenticator.inc,
discussions/DiscussionComment.inc,
discussions/DiscussionThread.inc:
Type: Non-functional change.
Description: Removed unused error message reference.
2004-05-10 18:00 michael
* knowledgeTree/: presentation/login.php,
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseU
I.inc, lib/browse/Browser.inc:
Type: i18n implementation.
Description: Added gettext modifier to UI text.
2004-05-10 17:59 michael
* knowledgeTree/presentation/Html.inc:
Type: i18n Framework.
Description: Removed unused functions.
Added image localisation function.
2004-05-10 17:57 michael
* knowledgeTree/locale/:
Type: i18n Framework.
Description: Removed old locale implementation.
2004-05-10 17:55 michael
* knowledgeTree/i18n/: LanguageFunctions.inc, afr/Language.inc,
en/Language.inc:
Type: i18n Framework.
Description: Added i18n locale directory.
2004-05-10 17:55 michael
* knowledgeTree/docs/i18n.txt: Type:
Documentation. Description: First draft i18n doc.
2004-05-10 17:54 michael
* knowledgeTree/docs/CREDITS.txt:
Type: Documentation.
Description: Added credits for 3rd party modules.
2004-05-10 17:54 michael
* knowledgeTree/docs/ChangeLog.txt:
Type: Documentation.
Description: Added change log entries for v1.2.2
2004-05-10 17:54 michael
* knowledgeTree/docs/TODO.txt:
Type: Documentation.
Description: Updated logging task.
2004-05-10 17:53 michael
* knowledgeTree/config/environment.php:
Type: i18n Framework.
Description: Added i18n configuration.
2004-05-10 17:51 michael
* knowledgeTree/config/dmsDefaults.php:
Type: i18n Framework.
Description: Load and setup gettext locales.
2004-04-30 17:12 michael
* knowledgeTree/docs/INSTALL.txt:
Type: Documentation
Description: Added upgrade instructions and corrected path to SQL directory
2004-04-26 17:49 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/documentmanagement/DocumentTransaction.inc:
Type: Functionality change
Description: Document transaction logging stores the path on the
filesystem.
Behaviour before fix: The path to the document on the filesystem is stored for each document transaction.
Behaviour after fix: Only the path relative to the document
root is relevant.
Credit: Stefano Ciancio.
2004-04-26 16:46 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeUI.inc:
Type: Functionality change
Description: Added ordering to document type drop down list by document type name.
Behaviour before fix: Document type were ordered "randomly"
Behaviour after fix: Document types are now ordered by document type name.
Credit: Patch contributed by Stefano Ciancio.
2004-04-26 16:31 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeBL.php:
Type: Bugfix
Description: Corrected form action relative paths.
Behaviour before fix: Add folder broken for sites with the dms not at site root.
Behaviour after fix: Expected functionality for all installations.
2004-04-26 16:31 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php:
Type: Bugfix
Description: Corrected form action relative paths.
Behaviour before fix: Add folder broken for sites with the dms not at site root.
Behaviour after fix: Expected functionality for all installations.
2004-04-26 13:34 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php:
Type: Bugfix
Description: Corrected form action relative paths.
Behaviour before fix: Add folder broken for sites with the dms not at site root.
Behaviour after fix: Expected functionality for all installations.
Credit: Thanks for Roman Pavlov for this bug report and patch.
2004-03-23 12:27 andrew <andrew@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/: listUsersBL.php, listUsersUI.inc:
Type: Functionality change.
Description: Added user filtering in the user admin section.
Credit: This patch was supplied by Stefano Ciancio.
2004-03-03 16:41 andrew <andrew@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/: create.php, store.php:
Removed some more potential XSS problems.
2004-03-03 10:28 andrew <andrew@jamwarehouse.com>
* knowledgeTree/lib/sanitize.inc:
Type: Bug fix
Description: Modification on the XSS bugfix for the logon page.
Behaviour before fix: Not allowing certain punctuation.
Behaviour after fix: Allows limited punctuation.
2004-02-27 15:45 andrew <andrew@jamwarehouse.com>
* knowledgeTree/presentation/login.php:
Type: Functionality change
Description: Includes XSS attack prevention.
Behaviour before fix: XSS attack could be performed on login.php.
Behaviour after fix: XSS attacks seem unsuccessful after patch.
Credit: Thanks to Jonathan E. Hawkins for pointing out this bug.
2004-02-27 15:45 andrew <andrew@jamwarehouse.com>
* knowledgeTree/lib/sanitize.inc:
Type: Functionality change
Description: Includes XSS attack prevention.
Behaviour before fix: XSS attack could be performed on login.php.
Behaviour after fix: XSS attacks seem unsuccessful after patch.
Credit: Thanks to Jonathan E. Hawkins for pointing out this bug.
2004-02-18 10:20 michael <michael@jamwarehouse.com>
* knowledgeTree/docs/TODO.txt:
added multi-document select task
2004-02-11 13:38 andrew <andrew@jamwarehouse.com>
* knowledgeTree/docs/INSTALL.txt:
Type: Documentation
Description: Added steps needed to save the System Settings after install.
2004-02-09 16:49 andrew <andrew@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc:
Type: Feature/functionality.
Description: The docuement and the parent folder are returned in the search results.
Credit: Stefano Ciancio
2004-02-05 14:48 andrew <andrew@jamwarehouse.com>
* knowledgeTree/docs/faq.txt:
Type: Documentation update.
Description: Minor update regarding searches.
2004-02-05 14:41 andrew <andrew@jamwarehouse.com>
* knowledgeTree/: lib/dashboard/DashboardNews.inc,
presentation/lookAndFeel/knowledgeTree/dashboardUI.inc:
Type: Functionality change.
Description: Added a configurable MARQUEE'd scrolling news to dashboard.
Credit: This patch was supplied by Stefano Ciancio.
2004-02-05 14:41 andrew <andrew@jamwarehouse.com>
* knowledgeTree/config/environment.php:
Type: Functionality change.
Description: Added a configurable MARQUEE'd scrolling news to dashboard.
Credit: This patch was supplied by Stefano Ciancio.
2004-01-28 13:04 michael <michael@jamwarehouse.com>
* knowledgeTree/: lib/session/Session.inc, lib/session/control.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/downloadBL.php:
Added workaround code for the IE SSL bug.
2004-01-27 11:14 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc:
changed to sort by username
2004-01-23 15:28 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/documentmanagement/PhysicalDocumentManager.inc:
added quotes around filename in http header bug report by
christian janssen [proftp_cj@kdd.de]
2004-01-08 15:07 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc: now includes users that aren't in any groups in default listing (s.ciancio@pisa.iol.it)
2003-12-18 15:59 michael <michael@jamwarehouse.com>
* knowledgeTreeIntegration/src/java/com/jamwarehouse/knowledgeTree/service/ListDocuments.java: #3569 return an array of zero size rather than null.
2003-12-17 13:28 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/: documentmanagement/emailBL.php, documentmanagement/emailUI.inc, js/OptionTransfer.js: #3500 added ability to send to groups and users.
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/js/misc.js: trim values before checking if its blank
2003-12-17 13:26 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/visualpatterns/PatternMainPage.inc: #3500 added optionTransfer js and ability to set javascript in <head>
2003-12-17 13:25 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/email/Email.inc: #3500 added error logging
2003-12-15 17:15 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/groups/Group.inc: #3500 added utility getUsers method
2003-12-15 17:14 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/email/Email.inc: #3500 refactored email code to use either a single email address or an array of them
2003-12-15 16:53 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc: #3497 used button routine- fixes back button
2003-12-15 15:56 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php: #3497 fixed refactor bug, removed fAddComment parameter
2003-12-15 15:45 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/discussions/: addCommentBL.php, addCommentUI.inc, viewDiscussionBL.php, viewDiscussionUI.inc: #3497 changes to support listing comments by thread and indenting appropriately
2003-12-15 15:44 michael <michael@jamwarehouse.com>
* knowledgeTree/: config/siteMap.inc, presentation/lookAndFeel/knowledgeTree/discussions/viewCommentBL.php, presentation/lookAndFeel/knowledgeTree/discussions/viewCommentUI.inc: #3497 refactored viewComment functionality into separate pages
2003-12-15 15:43 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/discussions/DiscussionThread.inc: #3497 changed some method names to more accurately reflect function, and added getList method
* knowledgeTree/lib/discussions/DiscussionComment.inc: #3497 added in_reply_to field to object
2003-12-15 15:42 michael <michael@jamwarehouse.com>
* knowledgeTree/sql/mysql/: install/tables.sql, upgrade/1.2.2/1.2.2.sql: #3497 added in_reply_to field to comments table
2003-12-03 16:58 michael <michael@jamwarehouse.com>
* knowledgeTree/sync/migrateLDAP.php: first cut ldap migration script
2003-11-27 13:24 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc: #3548 removed default document type
2003-11-26 10:20 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc: #3545 removed javascript that attempted to copy the filename to the title field
2003-11-24 15:42 michael <michael@jamwarehouse.com>
* knowledgeTree/sql/mysql/upgrade/mrc/mrc_phase2_upgrade.sql: changed dependant documents created flag to false
2003-11-24 15:15 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersBL.php: removed debug logging
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc: #3519 don't allow default value ie. no filter
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersBL.php: #3519 select a group in your unit if you're a unit administrator and none has been selected
2003-11-24 12:35 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/: listGroupsBL.php, listGroupsUI.inc: #3519 system administrators can filter by unit, unit administrators only see their unit
2003-11-24 12:12 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/: addUnitBL.php, addUnitUI.inc: #2944 added check for existing folder and appropriate error message.
2003-11-24 12:04 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentBL.php: #3537 redirect to the right section
2003-11-24 12:01 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/unitmanagement/Unit.inc: #3518 added slashes for non GPC data.
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/editUnitBL.php: removed debug output
2003-11-24 11:18 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc: #3543 patched by stefano.ciancio@mail.wind.it
2003-11-17 18:32 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc: #3515 added distinct
2003-11-17 18:19 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionBL.php: #3513 changed to list by thread instead of date
2003-11-17 18:01 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/templateDocumentBrowseBL.php: #3512 added missing boolean flag
2003-11-12 18:14 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/login.php: changed to explicit script location
2003-11-12 15:51 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: #3481 if the document is published don't allow checkout
2003-11-12 12:21 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: fixed introduced bug- inline view on document filename reinstated
2003-11-10 17:59 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: corrected layout
2003-11-10 17:29 michael <michael@jamwarehouse.com>
* knowledgeTree/sql/mysql/upgrade/mrc/1.2.1.sql: added 1.2.1 mrc specific db upgrade script
2003-11-10 17:04 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/: viewHistoryBL.php, viewHistoryUI.inc: #3425 display document.fileName in document browse paths for consistency
2003-11-10 14:55 michael <michael@jamwarehouse.com>
* knowledgeTree/sync/dbSync.php: changed formatting
2003-11-10 12:28 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentman gement/browseUI.inc: corrected grammar for no documents|folders
2003-11-10 12:05 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/foldermanag ment/deleteFolderDocTypeUI.inc: corrected layout and controller link
2003-11-10 12:03 michael <michael@jamwarehouse.com>
* knowledgeTree/: lib/documentmanagement/Document.inc, presentation/lookAndFeel/knowledgeTree/documentmanagement/documentUI.inc, presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: #3425 display document.fileName in document browse paths for consistency
2003-11-10 11:51 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/discussions/: addCommentBL.php, addCommentUI.inc, viewDiscussionBL.php, viewDiscussionUI.inc: #3425 changed to use common function in documentUI.inc
2003-11-10 11:48 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyUI.inc: #3425 removed unused function
2003-11-10 11:29 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/: browseUI.inc, documentUI.inc: #3425 the filename is the document title- primary reference, and the soft title is the description
2003-11-10 11:09 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc: #3426 provisionally added folder and document counts
2003-11-07 17:24 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: catered for the case where there are no archiving settings
2003-11-07 17:16 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/templateDocumentBrowseBL.php: use browse functionality with template switch instead of duplicating code.
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc: added optional template browsing support
2003-11-07 17:08 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc: added check for no checked out user details
2003-11-07 17:07 michael <michael@jamwarehouse.com>
* knowledgeTree/lib/documentmanagement/PhysicalDocumentManager.inc: validate upload by checkin if the file exists in the right place after the upload
2003-11-07 17:05 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/: viewBL.php, viewUI.inc: #3265 added code to display the archiving settings on the document details screen.
2003-11-07 17:04 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveSettingsUI.inc: corrected function usage
2003-11-06 17:49 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUI.inc: #2978 only allow the creation/editing of a sys admin group if you are a system administrator
2003-11-06 17:48 michael <michael@jamwarehouse.com>
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc: #2978 only display system administrator groups if you are a system administrator
* knowledgeTree/presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc: #2978 only display system administrator user accounts if you are a system administrator
2003-11-06 13:06 rob <rob@jamwarehouse.com>
* knowledgeTree/i18n/: afr/Language.inc, en/Language.inc: updated to include more i18n strings
* knowledgeTree/: presentation/lookAndFeel/knowledgeTree/documentmanagement/browseBL.php, presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc, lib/browse/Browser.inc: Added i18n
2003-11-06 12:04 rob <rob@jamwarehouse.com>
* knowledgeTree/config/: environment.php: Updated internationalization included directory
2003-11-03 14:29 michael <michael@jamwarehouse.com>
* knowledgeTree/sql/mysql/upgrade/1.2.1/1.2.1.sql: added knowledgeTreeVersion update to upgrade script.
2003-11-03 14:25 michael <michael@jamwarehouse.com>
* knowledgeTree/sql/mysql/upgrade/1.2.1/1.2.1.sql: changed from binary to ascii
2003-11-03 11:44 rob <rob@jamwarehouse.com>
* knowledgeTree/i18n/: afr/Language.inc, en/Language.inc, LanguageFunctions.inc: Internationalization functionality
2003-11-03 11:41 rob <rob@jamwarehouse.com>
* knowledgeTree/: presentation/lookAndFeel/knowledgeTree/dashboardUI.inc, config/environment.php: Added internationalization
2003-10-15 11:56 rob <rob@jamwarehouse.com>
* knowledgeTree/sql/mysql/install/tables.sql: Added missing inherit_parent_folder_permission column to folders table
Version 1.2.1
* Tue October 14 2003 Michael Joseph <michael@jamwarehouse.com>
Specific bug fixes:
===================
- Fixed double use of apostrophe for database encoding automatically by php and in code
- Document types names that consist of alpha-numerics can be now be used
- Error in SQL when assigning Groups to units fixed
- Document addition displays error if not document types are availabe
Alterations/additions
=====================
- Javascript scrolling can now be turned on/off in environment.php
- Default document type added and mapped to default unit folder to allow immediate document addition after installation
- Backend functionality for breaking folder permissions added - folders will be able to either inherit permissions or set their own
- Changing of user passwords - administrators can now change user passwords through the user management section if KT is in DBAuthentication mode
Full changelog
===============
2003-10-13 17:23 rob <rob@jamwarehouse.com>
* docs/ChangeLog.txt: Add changes for 1.2.0 to 1.2.1
* sql/mysql/upgrade/1.2.1/1.2.1.sql: SQL update to convert from 1.2.0 to 1.2.1
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/editUserUI.inc: Changed password hyperlink to button
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/: editUserUI.inc, passwordManagementBL.php,
passwordManagementUI.inc: Update functionality so that admin can change user passwords when db authentication mode is used.
* config/siteMap.inc: Added mapping to password update functionality in the admin section
* lib/users/User.inc: Fixed bug in user update function. No users could be updated.
2003-10-09 11:06 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: changed alt to title (standards compliant)
2003-10-08 10:18 rob <rob@jamwarehouse.com>
* lib/security/Permission.inc: Added new column to folders table that will allow user to break folder permission. Permissions now check whether to use parent permissions or not and generate the SQL query accordingly
* sql/mysql/upgrade/1.2.0/1.2.0.sql,lib/foldermanagement/Folder.inc: Added new column to folders table that will allow user to break folder permission
2003-09-23 11:29 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc: (#2966) set empty error message
* lib/visualpatterns/PatternListBox.inc: (#2966) only display the default value if there is no error message
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc: (#3032) added missing slash
* lib/session/Session.inc: check if we have a user id before using it to destroy a session
* presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentUI.inc: (#3002) fixed unitID checking condition.
* presentation/lookAndFeel/knowledgeTree/subscriptions/subscriptionUI.inc: fixed candy striping
2003-09-10 17:06 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserToGroupBL.php: (#2959) inserted additional search permissions on successful user group link addition
* lib/groups/GroupUserLink.inc: (#2959) tidied and added function to update group search permission entries for a new user in a group
* presentation/lookAndFeel/knowledgeTree/dashboardUI.inc: (#2997)
clicking dashboard link goes to the relevant document details section now
* presentation/lookAndFeel/knowledgeTree/documentmanagement/modifyBL.php: (#2975) redirect to type specific edit page when document type changes
* presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsUI.inc: (#2950) removed edit organisation
* presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitUI.inc: (#2950) changed organisation listbox to display
* presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/addUnitBL.php: (#2950) added reference to Organisation
* lib/web/WebSite.inc: (#2990) added method to check if the website is in use.
* presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/removeWebsiteBL.php: (#2990) added check and error message if the website is in use.
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc: (#2945) only supply a value for the checkbox if one has been passed.
2003-09-09 19:12 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserBL.php: (#2945) redirect to list page on successful addition
* presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/: addRoleUI.inc, editRoleBL.php: (#2989) added all parameters to add page and redirect to list page on success
* presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/: removeRoleBL.php, removeRoleUI.inc: removed active field and redirect to list on success
* presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/: editRoleUI.inc, listRolesUI.inc: (#2988) removed active field from UI.
2003-09-09 18:48 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleBL.php: (#2988) changed to redirect to list page on success
* lib/foldermanagement/Folder.inc: (#2987) updated folderIsUnitRootFolder method
* presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderBL.php: (#2987) added checks for unit in use
* lib/groups/GroupUnitLink.inc, presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/editGroupUnitUI.inc, tests/groups/group.php: fixed getList method to automatically insert WHERE
* lib/unitmanagement/Unit.inc: (#2944) set unitID also
* lib/unitmanagement/Unit.inc: (#2944) when adding a unit, if a unit root folder is found it is used as a unit root folder by setting its description and unitid
* lib/foldermanagement/Folder.inc: (#2944) only check name and parent when checking for existence
* sync/unDecodeComments.php: added script to urldecode discussion comments
* presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc: (#2994) removed urldecoding and split on nl rather than <br>
* presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php: (#2994) removed urlencoding
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/restoreDeletedDocumentBL.php: (#2986) check the document types of the destination folder before allow restoration of a deleted document.
* presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc: (#2994) reinstated bad wrapping code
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/: addUserBL.php, addUserUI.inc: (#2946) removed sms notification from form
* lib/visualpatterns/PatternTableSqlQuery.inc: fixed dire link breaking introduced bug
2003-09-08 17:53 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php: (#2977) corrected session checking and redirect to list page instead of bogus success page
* presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc: (#2977) use wordwrap and don't display comment text as html
* presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionBL.php: (#2977) changed to use correct pattern
* lib/visualpatterns/PatternTableSqlQuery.inc: (#2977) corrected link querystring generation
* presentation/lookAndFeel/knowledgeTree/dashboardBL.php: corrected ui directory include
2003-09-07 20:48 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchUtil.inc: corrected util method to use passed in array
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php: correct syntax snafu
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php: corrected method name
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php: reinstated submit action setting
* presentation/lookAndFeel/knowledgeTree/: administration/documentmanagement/manageArchivedDocumentsBL.php, search/advancedSearchBL.php, search/advancedSearchUtil.inc: changed getChosenMetaDataTags to use passed array and modified callers appropriately
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/manageArchivedDocumentsBL.php: changed form submission method to get
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc: correct syntax snafu
* presentation/lookAndFeel/knowledgeTree/administration/documentmanagement/archivedDocumentsUI.inc: changed cancell button to go back one screen instead of back to the search page
* presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/editDocCheckoutUI.inc: corrected grammar.
2003-09-05 16:30 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/listDocumentsBL.php: corrected empty grid message
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php: improved logging for metadata queries
* presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: corrected link dependent documents button
* presentation/lookAndFeel/knowledgeTree/documentmanagement/createDependantDocumentUI.inc: cancel button redirects to the right linked documents section
2003-09-04 18:40 michael <michael@jamwarehouse.com>
* config/siteMap.inc: corrected manage document types link
* presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/archiveSettingsUI.inc: (#2976) changed the text to reflect that archiving happens from document creation date.
* presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/addArchiveSettingsBL.php: changed submit method to get
2003-09-02 18:08 michael <michael@jamwarehouse.com>
* lib/foldermanagement/PhysicalFolderManagement.inc: (#2963) return deletion status based on existence of folder
* lib/documentmanagement/PhysicalDocumentManager.inc: (#2963) added checks for file existence after attempted deletion and returning status appropriately
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php: (#2972) added missing documentTypeID assignment!
* sql/mysql/install/tables.sql: (#2964) added a default document type and mapped it to the default unit folder
* presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsUI.inc: (#2962) refactored and tidied; using System attributes for variable names and labels
* presentation/lookAndFeel/knowledgeTree/administration/systemsettings/systemSettingsBL.php: (#2962) tidied, using arrays from System object, redirect to list on update
* lib/visualpatterns/PatternMainPage.inc: (#2962) set scrolling action from configuration
* lib/System.inc: (#2962) added settings and labels, tidied, added support for storing arrays in the db
2003-09-02 13:12 michael <michael@jamwarehouse.com>
* config/environment.php: (#2962) tidied up, using settings inside System object, added contentPaneScrolling setting
* lib/dashboard/DashboardNews.inc: corrected imageLink method
2003-09-01 15:35 michael <michael@jamwarehouse.com>
* lib/dashboard/DashboardNews.inc: corrected update method
* lib/dashboard/DashboardNews.inc: fixed news creation (addslashes on binary image data) and stopped constraining dashboard image to 80x40
* graphics/subscriptions/: colour.gif, norm.gif: made intra-heading spacing consistent
2003-08-29 16:39 michael <michael@jamwarehouse.com>
* bin/fix_perms.sh: removed log.txt creation
* docs/TODO.txt: updated todo list from kt-users list
* .project, config/siteMap.inc, config/tableMappings.inc,
docs/ChangeLog.txt, docs/INSTALL.txt, docs/TODO.txt,
graphics/logo.jpg, lib/DefaultLookup.inc,
lib/archiving/ArchivingType.inc, lib/archiving/TimeUnit.inc,
lib/authentication/Authenticator.inc,
lib/dashboard/DashboardNews.inc, lib/database/lookup.inc,
lib/documentmanagement/DependantDocumentInstance.inc,
lib/documentmanagement/DependantDocumentTemplate.inc,
lib/documentmanagement/Document.inc,
lib/documentmanagement/DocumentField.inc,
lib/documentmanagement/DocumentFieldLink.inc,
lib/documentmanagement/DocumentLink.inc,
lib/documentmanagement/DocumentTransaction.inc,
lib/documentmanagement/DocumentType.inc,
lib/documentmanagement/MetaData.inc,
lib/documentmanagement/PhysicalDocumentManager.inc,
lib/email/Email.inc, lib/foldermanagement/Folder.inc,
lib/foldermanagement/PhysicalFolderManagement.inc,
lib/groups/Group.inc, lib/groups/GroupFolderApprovalLink.inc,
lib/links/Link.inc, lib/orgmanagement/Organisation.inc,
lib/roles/Role.inc, lib/session/control.inc,
lib/unitmanagement/Unit.inc, lib/users/User.inc,
lib/visualpatterns/PatternBrowsableSearchResults.inc,
lib/visualpatterns/PatternEditableListFromQuery.inc,
lib/visualpatterns/PatternEditableTableSqlQuery.inc,
lib/visualpatterns/PatternListBox.inc,
lib/visualpatterns/PatternListFromQuery.inc,
lib/visualpatterns/PatternMetaData.inc,
lib/visualpatterns/PatternTableSqlQuery.inc,
lib/web/WebDocument.inc, lib/web/WebSite.inc,
presentation/login.php,
presentation/lookAndFeel/knowledgeTree/dashboardBL.php,
presentation/lookAndFeel/knowledgeTree/store.inc,
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitBL.php,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupBL.php,
presentation/lookAndFeel/knowledgeTree/administration/news/addNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/news/editNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/news/removeNewsBL.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgUI.inc,
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleSuccess.php,
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentBL.php,
presentation/lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentUI.inc,
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeUI.inc,
presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc, presentation/lookAndFeel/knowledgeTree/js/misc.js,
presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php,
presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc,
presentation/lookAndFeel/knowledgeTree/search/standardSearchBL.php,
presentation/lookAndFeel/knowledgeTree/search/standardSearchUI.inc, sql/mysql/upgrade/1.2.0/1.2.0.sql,
sql/mysql/upgrade/1.2.0/sanitise-default-data.sql,sync/sanitiseEscapedData.php:
merged from branch BRANCH_1_2_0_12082003
2003-08-28 17:12 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitBL.php: corrected assignment error
* presentation/lookAndFeel/knowledgeTree/administration/usermanagement/addUserUI.inc: corrected text- initial group label.
* presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderCollaborationUI.inc: (#2942) don't display groups with no users
2003-08-27 12:59 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc: fixed breadcrumb path url for status page
* lib/visualpatterns/PatternMetaData.inc: adding slashes to non EPGCS originated field
* lib/: documentmanagement/Document.inc,foldermanagement/Folder.inc: (#2882) moved substring and
addslashes into intermediate method that calls the recursive path
and folder id building strings
2003-08-27 12:06 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentBL.php: (#2882) changed to use getDisplayPath in failure email
* lib/documentmanagement/DocumentTransaction.inc: (#2882) escaped document filename
* presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/editRoleSuccess.php: corrected controller action
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/assignGroupToUnitUI.inc: corrected permission check and headings
* presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/listGroupsUI.inc: corrected 'edit unit' wording
2003-08-26 17:54 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgUI.inc: (#2940) removed add and delete organisation functionality until it has been correctly addressed
* presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/addOrgSuccess.php: (#2939) corrected heading
* lib/email/Email.inc: (#2930) reinstated stripslashes for email content
* sql/mysql/upgrade/1.2.0/: 1.2.0.sql, sanitise-default-data.sql: changed from binary to ascii
2003-08-20 15:21 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderBL.php: (#2882) strip slashes before checking folder name
* sync/sanitiseEscapedData.php: added escape cleaning script
* graphics/logo.jpg: updated jam logo
2003-08-19 18:35 michael <michael@jamwarehouse.com>
* lib/visualpatterns/PatternMetaData.inc, presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/editDocFieldLookupsUI.inc: changed to use correct table alias
* presentation/lookAndFeel/knowledgeTree/dashboardBL.php: changed format of dashboardUI require
* config/tableMappings.inc: removed duplicate mapping
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc, presentation/lookAndFeel/knowledgeTree/store.inc,lib/archiving/ArchivingType.inc, lib/archiving/TimeUnit.inc: (#2833) removed addslashes / stripslashes
* lib/: users/User.inc,
visualpatterns/PatternEditableListFromQuery.inc,
visualpatterns/PatternEditableTableSqlQuery.inc,
visualpatterns/PatternListBox.inc,
visualpatterns/PatternListFromQuery.inc,
visualpatterns/PatternMetaData.inc,
visualpatterns/PatternTableSqlQuery.inc, web/WebSite.inc,
DefaultLookup.inc: (#2833) removed addslashes / stripslashes
* lib/groups/GroupFolderApprovalLink.inc: removed unused error message
* lib/: groups/Group.inc, links/Link.inc, orgmanagement/Organisation.inc, roles/Role.inc, unitmanagement/Unit.inc: (#2833) removed addslashes / stripslashes
* lib/: documentmanagement/PhysicalDocumentManager.inc, email/Email.inc, foldermanagement/Folder.inc: (#2833) removed addslashes / stripslashes
* lib/documentmanagement/: DocumentTransaction.inc, DocumentType.inc, MetaData.inc: (#2833) removed addslashes / stripslashes
* lib/documentmanagement/DocumentLink.inc: fixed spaces in object dereferencer and table alias
* lib/documentmanagement/: Document.inc, DocumentField.inc,DocumentFieldLink.inc: (#2833) removed addslashes / stripslashes
* lib/documentmanagement/: DependantDocumentInstance.inc,DependantDocumentTemplate.inc: (#2833) removed addslashes /stripslashes fixed spaces in object dereferencer
* presentation/lookAndFeel/knowledgeTree/administration/news/: addNewsBL.php, editNewsBL.php, removeNewsBL.php: added missing require for refactored getCancelButton functionality
* docs/INSTALL.txt: added magic quotes php.ini settings
* lib/: dashboard/DashboardNews.inc, database/lookup.inc: (#2833) removed addslashes / stripslashes
* presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc: (#2821) added text when routing is in progress and outer joined on groups
* config/siteMap.inc: changed to allow users to modify folder permissions
* lib/groups/Group.inc, presentation/lookAndFeel/knowledgeTree/administration/groupmanagement/removeGroupBL.php: (#2821) add RI check for groups referenced in routing steps.
* presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: (#2883) changed document level routing display
* presentation/lookAndFeel/knowledgeTree/documentmanagement/addDocumentUI.inc: (#2884) replaced post on change with next button and validation
2003-08-18 17:15 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/foldermanagement/editUI.inc: corrected status message display
2003-08-15 17:24 michael <michael@jamwarehouse.com>
* presentation/lookAndFeel/knowledgeTree/documentmanagement/escalateDependantDocumentBL.php: added display for email sending failure
* presentation/lookAndFeel/knowledgeTree/documentmanagement/:escalateDependantDocumentBL.php, escalateDependantDocumentUI.inc:(#2649) added dependent document reminder pages
* presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc: changed all table references to aliases (#2649) integrated current dependent document requests
* config/siteMap.inc: (#2649) added entry for dependent document escalation message page
* lib/web/WebDocument.inc: the published status is duplicated in Document- added check before redefinition (luckily the ids are the same, but this is bad and must change)
* lib/session/control.inc: fixed non-fatal errors (undefined variable and mis-typed PHP_SELF reference
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc: corrected order by query
* lib/visualpatterns/PatternBrowsableSearchResults.inc:(#2879,#2878) fixed bugs and updated formatting
* docs/TODO.txt: added custom search todo
2003-08-14 17:08 michael <michael@jamwarehouse.com>
* docs/TODO.txt: additions
* lib/foldermanagement/PhysicalFolderManagement.inc: trim trailing whitespace from folder names
* lib/visualpatterns/PatternBrowsableSearchResults.inc: removed query from output
* lib/visualpatterns/PatternBrowsableSearchResults.inc: corrected result counting and swapped positioning of next and previous buttons
* presentation/lookAndFeel/knowledgeTree/search/:advancedSearchBL.php, standardSearchBL.php: corrected start index
* presentation/lookAndFeel/knowledgeTree/js/misc.js: corrected javascript validation for "select-one"
2003-08-13 14:24 michael <michael@jamwarehouse.com>
* lib/visualpatterns/PatternBrowsableSearchResults.inc: (#2658) reformatted search status text
* presentation/lookAndFeel/knowledgeTree/search/standardSearchUI.inc: added search text for other standard search flavours
* presentation/lookAndFeel/knowledgeTree/search/standardSearchBL.php: reformatted- removed eol spaces
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchUI.inc: (#2658) added search string and document status to hidden variables
* presentation/lookAndFeel/knowledgeTree/search/advancedSearchBL.php: (#2658) added search string for display
* lib/visualpatterns/PatternBrowsableSearchResults.inc: (#2658) reformatted search status
* lib/visualpatterns/PatternBrowsableSearchResults.inc: (#2658) added additional query to retrieve number of results
* lib/visualpatterns/PatternBrowsableSearchResults.inc,presentation/lookAndFeel/knowledgeTree/search/standardSearchUI.inc: (#2658) added status bar with search terms and number of results. * .project: eclipse project file
* docs/INSTALL.txt: updated installation documentation
2003-08-12 16:53 michael <michael@jamwarehouse.com>
* docs/TODO.txt: added thumbnail task
* docs/ChangeLog.txt: updated date and re-ordered
* presentation/lookAndFeel/knowledgeTree/foldermanagement/addFolderDocTypeUI.inc: fixed folder path display
* bin/releaseKT.sh: changed from export to checkout to get Documents folder in archives
* presentation/login.php: replaced language error messages
* lib/authentication/Authenticator.inc: removed language references
* sql/mysql/upgrade/: 1.2.0/1.2.0.sql,
1.2.0/sanitise-default-data.sql, 1.1.2/release-1.1.2.sql,
1.1.2/sanitise-default-data.sql, 1.1.2/sanitise_default-data.sql:
updated directory and upgrade file names
* sql/mysql/upgrade/1.1.2/sanitise-default-data.sql: renamed cleanup sql
* sync/pathSync.php, tests/documentmanagement/viewBL.php, tests/documentmanagement/viewUI.inc: removed owl prefix from
table aliases
* presentation/: Html.inc, login.php, logout.php, webpageTemplate.inc: added copyright and gpl notice removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/: create.php, dashboardBL.php, dashboardUI.inc, help.php, noAccess.php,
store.inc, store.php: removed @package
* presentation/lookAndFeel/knowledgeTree/: create.php,dashboardBL.php, dashboardUI.inc, help.php, noAccess.php,store.inc, store.php: added copyright and gpl notice removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/subscriptions/: addSubscriptionBL.php, manageSubscriptionsBL.php,
removeSubscriptionBL.php, subscriptionUI.inc, viewAlertBL.php: added copyright and gpl notice removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/:
foldermanagement/addFolderBL.php,
foldermanagement/addFolderCollaborationBL.php,
foldermanagement/addFolderCollaborationUI.inc,
foldermanagement/addFolderDocTypeBL.php,
foldermanagement/addFolderDocTypeUI.inc,
foldermanagement/addFolderUI.inc,
foldermanagement/addGroupFolderLinkBL.php,
foldermanagement/collaborationBL.php,
foldermanagement/collaborationUI.inc,
foldermanagement/deleteDependantDocumentBL.php,
foldermanagement/deleteDependantDocumentUI.inc,
foldermanagement/deleteFolderBL.php,
foldermanagement/deleteFolderCollaborationBL.php,
foldermanagement/deleteFolderCollaborationUI.inc,
foldermanagement/deleteFolderDocTypeBL.php,
foldermanagement/deleteFolderDocTypeUI.inc,
foldermanagement/deleteFolderUI.inc,
foldermanagement/deleteGroupFolderLinkBL.php,
foldermanagement/editBL.php,
foldermanagement/editGroupFolderLinkBL.php,
foldermanagement/editUI.inc, foldermanagement/folderUI.inc,
foldermanagement/groupFolderLinkUI.inc,
foldermanagement/modifyFolderDataBL.php,
foldermanagement/modifyFolderDataUI.inc,
foldermanagement/viewDependantDocumentsBL.php,
foldermanagement/viewDependantDocumentsUI.inc,
preferences/editPrefsSuccess.php,
preferences/editUserPrefsBL.php, preferences/editUserPrefsUI.inc,
search/advancedSearchBL.php, search/advancedSearchUI.inc,
search/advancedSearchUtil.inc, search/standardSearchBL.php,
search/standardSearchUI.inc: added copyright and gpl notice
removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/documentmanagement/:
addDocumentBL.php, addDocumentLinkBL.php, addDocumentLinkUI.inc,
addDocumentUI.inc, browseBL.php, browseUI.inc,
checkInDocumentBL.php, checkInDocumentUI.inc,
checkOutDocumentBL.php, checkOutDocumentUI.inc,
collaborationBL.php, collaborationRollbackBL.php,
collaborationRollbackUI.inc, collaborationUI.inc,
createDependantDocumentBL.php, createDependantDocumentUI.inc,
deleteDocumentBL.php, deleteDocumentUI.inc, documentUI.inc,
downloadBL.php, emailBL.php, emailUI.inc, modifyBL.php,
modifyGenericMetaDataBL.php, modifyGenericMetaDataUI.inc,
modifySpecificMetaDataBL.php, modifySpecificMetaDataUI.inc,
modifyUI.inc, moveDocumentBL.php, moveDocumentUI.inc,
removeDocumentLinkBL.php, removeDocumentLinkUI.inc,
templateDocumentBrowseBL.php, templateDocumentBrowseUI.inc,
viewBL.php, viewHistoryBL.php, viewHistoryUI.inc, viewUI.inc,
webDocumentBL.php, webDocumentUI.inc: added copyright and gpl
notice removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/documentmanagement/archiving/: addArchiveSettingsBL.php, archiveDocumentBL.php,
archiveSettingsUI.inc, modifyArchiveSettingsBL.php,
requestDocumentRestoreBL.php, restoreArchivedDocumentUI.inc:
added copyright and gpl notice removed owl prefix from table
aliases
* presentation/lookAndFeel/knowledgeTree/administration/doctypefieldmanagement/: assignDocTypeToFieldBL.php,
assignDocTypeToFieldUI.inc, removeDocTypeFromFieldBL.php,
removeDocTypeFromFieldUI.inc: removed old administration pages
* presentation/lookAndFeel/knowledgeTree/:
administration/admin.php, administration/adminUI.inc,
dashboard/news/displayNewsImage.php,
dashboard/news/displayNewsItem.php, discussions/addCommentBL.php,
discussions/addCommentUI.inc, discussions/viewDiscussionBL.php,
discussions/viewDiscussionUI.inc: added copyright and gpl notice
removed owl prefix from table aliases
* presentation/lookAndFeel/knowledgeTree/administration/:
usermanagement/addUserBL.php,
usermanagement/addUserToGroupBL.php,
usermanagement/addUserToGroupUI.inc,
usermanagement/addUserUI.inc, usermanagement/editUserBL.php,
usermanagement/editUserGroupsBL.php,
usermanagement/editUserGroupsUI.inc,
usermanagement/editUserUI.inc, usermanagement/listUsersBL.php,
usermanagement/listUsersUI.inc, usermanagement/removeUserBL.php,
usermanagement/removeUserFromGroupBL.php,
usermanagement/removeUserFromGroupUI.inc,
usermanagement/removeUserUI.inc,
websitemanagement/addWebsiteBL.php,
websitemanagement/addWebsiteSuccess.php,
websitemanagement/addWebsiteUI.inc,
websitemanagement/editWebsiteBL.php,
websitemanagement/editWebsiteUI.inc,
websitemanagement/listWebsitesBL.php,
websitemanagement/listWebsitesUI.inc,
websitemanagement/removeWebsiteBL.php,
websitemanagement/removeWebsiteUI.inc: added copyright and gpl
notice removed owl prefix from table aliases
Version 1.2.0
* Tue Aug 12 2003 Michael Joseph <michael@jamwarehouse.com>
- Document Details and Folder Properties- updated display- javascript content swapping.
- Improved display of Document actions- disabled buttons when action not available.
- Add Document- streamlined process by placing all details on one page.
- Archiving- add the ability to search for archived documents and request their restoration.
- Deletion of documents is now soft, additional Administration option to expunge/restore deleted documents.
- Administration menu simplification and consistency.
- Administration - Cancel document checkout status functionality added.
- Segmented configuration files for ease of maintenance.
- Updated install documentation.
- Additional online help files.
Version 1.1.2
* Mon Jul 28 2003 Michael Joseph <michael@jamwarehouse.com>
- Minor bugfixes in administration section- group management.
- Fixed add user for DB authentication.
- Updated documentation (FAQ, INSTALL, README).
- Updated FileIndexer (1.1.2) and released DocumentArchiver (1.0.0)
Version 1.1.1
* Fri Jul 18 2003 Michael Joseph <michael@jamwarehouse.com>
- Updated documentation.
- Updated Project version bump
Version 1.1.0
* Fri Jul 04 2003 Michael Joseph <michael@jamwarehouse.com>
- External release.
- Patched database scripts and tidied for distribution.
Version 1.0.0
* Tue May 13 2003 Michael Joseph <michael@jamwarehouse.com>
- Initial release.