File: elementindex.html

package info (click to toggle)
awl 0.53-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,604 kB
  • sloc: php: 5,868; sql: 107; sh: 79; makefile: 72
file content (4741 lines) | stat: -rw-r--r-- 252,714 bytes parent folder | download | duplicates (2)
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
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741

Warning: strftime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /usr/share/php/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/Smarty_Compiler.class.php on line 370
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
		<head>
			<!-- template designed by Marco Von Ballmoos  -->
			<title></title>
			<link rel="stylesheet" href="media/stylesheet.css" />
											</head>
		<body>
						<a name="top"></a>
<h2>Full index</h2>
<h3>Package indexes</h3>
<ul>
	<li><a href="elementindex_awl.html">awl</a></li>
</ul>
<br />

Warning: strftime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /usr/share/php/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/Smarty_Compiler.class.php on line 370
<div class="index-letter-menu">
	<a class="index-letter" href="elementindex.html#a">a</a>
	<a class="index-letter" href="elementindex.html#b">b</a>
	<a class="index-letter" href="elementindex.html#c">c</a>
	<a class="index-letter" href="elementindex.html#d">d</a>
	<a class="index-letter" href="elementindex.html#e">e</a>
	<a class="index-letter" href="elementindex.html#f">f</a>
	<a class="index-letter" href="elementindex.html#g">g</a>
	<a class="index-letter" href="elementindex.html#h">h</a>
	<a class="index-letter" href="elementindex.html#i">i</a>
	<a class="index-letter" href="elementindex.html#j">j</a>
	<a class="index-letter" href="elementindex.html#l">l</a>
	<a class="index-letter" href="elementindex.html#m">m</a>
	<a class="index-letter" href="elementindex.html#n">n</a>
	<a class="index-letter" href="elementindex.html#o">o</a>
	<a class="index-letter" href="elementindex.html#p">p</a>
	<a class="index-letter" href="elementindex.html#q">q</a>
	<a class="index-letter" href="elementindex.html#r">r</a>
	<a class="index-letter" href="elementindex.html#s">s</a>
	<a class="index-letter" href="elementindex.html#t">t</a>
	<a class="index-letter" href="elementindex.html#u">u</a>
	<a class="index-letter" href="elementindex.html#v">v</a>
	<a class="index-letter" href="elementindex.html#w">w</a>
	<a class="index-letter" href="elementindex.html#x">x</a>
	<a class="index-letter" href="elementindex.html#_">_</a>
</div>

	<a name="a"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">a</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Action</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Action">Editor::$Action</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Align</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Align">BrowserColumn::$Align</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Attributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$Attributes">EditorField::$Attributes</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$attributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#var$attributes">EntryField::$attributes</a> in DataEntry.php</div>
							<div class="index-item-description">An array of key value pairs</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$attributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#var$attributes">XMLElement::$attributes</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">acquireLock</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodacquireLock">AwlCache::acquireLock()</a> in AwlCache.php</div>
							<div class="index-item-description">Acquire a lock on something</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Active</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodActive">MenuOption::Active()</a> in MenuSet.php</div>
							<div class="index-item-description">Mark it as active, with a fancy style to distinguish that</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Add</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodAdd">iCalendar::Add()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddAttribute</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodAddAttribute">EditorField::AddAttribute()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddAttribute</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodAddAttribute">Editor::AddAttribute()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddBcc</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodAddBcc">EMail::AddBcc()</a> in EMail.php</div>
							<div class="index-item-description">Add another Bcc recipient to the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddCc</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodAddCc">EMail::AddCc()</a> in EMail.php</div>
							<div class="index-item-description">Add another Cc recipient to the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddColumn</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddColumn">Browser::AddColumn()</a> in classBrowser.php</div>
							<div class="index-item-description">Add a column to the Browser.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodAddComponent">iCalendar::AddComponent()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodAddComponent">iCalComponent::AddComponent()</a> in iCalendar.php</div>
							<div class="index-item-description">Adds a new subcomponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodAddComponent">vComponent::AddComponent()</a> in vComponent.php</div>
							<div class="index-item-description">Adds a new subcomponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddErrorsTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodAddErrorsTo">EMail::AddErrorsTo()</a> in EMail.php</div>
							<div class="index-item-description">Add another Error recipient to the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddField</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodAddField">Editor::AddField()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddGrouping</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddGrouping">Browser::AddGrouping()</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddHidden</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddHidden">Browser::AddHidden()</a> in classBrowser.php</div>
							<div class="index-item-description">Add a hidden column - one that is present in the SQL result, but for  which there is no column displayed.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddOption</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodAddOption">MenuSet::AddOption()</a> in MenuSet.php</div>
							<div class="index-item-description">Add an option, which is a link.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddOrder</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddOrder">Browser::AddOrder()</a> in classBrowser.php</div>
							<div class="index-item-description">Add an ordering to the browser widget.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">addPart</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Multipart.html#methodaddPart">Multipart::addPart()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddProperty</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodAddProperty">vComponent::AddProperty()</a> in vComponent.php</div>
							<div class="index-item-description">Adds a new property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddProperty</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodAddProperty">iCalComponent::AddProperty()</a> in iCalendar.php</div>
							<div class="index-item-description">Adds a new property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddReplyTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodAddReplyTo">EMail::AddReplyTo()</a> in EMail.php</div>
							<div class="index-item-description">Add another Reply-to address to the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddRow</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddRow">Browser::AddRow()</a> in classBrowser.php</div>
							<div class="index-item-description">Add an extra arbitrary row onto the end of the browser.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddRule</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodAddRule">Validation::AddRule()</a> in Validation.php</div>
							<div class="index-item-description">Adds a validation rule for a specific field upon submission of the form.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddSubmenu</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodAddSubmenu">MenuOption::AddSubmenu()</a> in MenuSet.php</div>
							<div class="index-item-description">This menu option is now promoted to the head of a tree</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddSubMenu</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodAddSubMenu">MenuSet::AddSubMenu()</a> in MenuSet.php</div>
							<div class="index-item-description">Add an option, which is a submenu</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddSubTag</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodAddSubTag">XMLElement::AddSubTag()</a> in XMLElement.php</div>
							<div class="index-item-description">Add a sub-element</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddTable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodAddTable">DBRecord::AddTable()</a> in DataUpdate.php</div>
							<div class="index-item-description">This will join an additional table to the maintained set</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddTimeZone</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodAddTimeZone">vCalendar::AddTimeZone()</a> in vCalendar.php</div>
							<div class="index-item-description">Add a timezone component to this vCalendar.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodAddTo">EMail::AddTo()</a> in EMail.php</div>
							<div class="index-item-description">Add another recipient to the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AddTotal</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAddTotal">Browser::AddTotal()</a> in classBrowser.php</div>
							<div class="index-item-description">Mark a column as something to be totalled.  You can also specify the name of  a function which may modify the value before the actual totalling.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AllowedTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodAllowedTo">Session::AllowedTo()</a> in Session.php</div>
							<div class="index-item-description">Checks whether a user is allowed to do something.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AllowedTo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodAllowedTo">User::AllowedTo()</a> in User.php</div>
							<div class="index-item-description">Can the user do this?</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AndWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodAndWhere">Editor::AndWhere()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AndWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodAndWhere">Browser::AndWhere()</a> in classBrowser.php</div>
							<div class="index-item-description">Add an OR ...  to the SQL Where clause</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ApplyFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodApplyFilter">iCalendar::ApplyFilter()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Assign</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodAssign">Editor::Assign()</a> in classEditor.php</div>
							<div class="index-item-description">Assigns the value of a field in the record currently associated with this editor.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">AssignSessionDetails</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodAssignSessionDetails">Session::AssignSessionDetails()</a> in Session.php</div>
							<div class="index-item-description">Internal function used to assign the session details to a user's new session.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Authenticate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/AuthPlugin.html#methodAuthenticate">AuthPlugin::Authenticate()</a> in AuthPlugin.php</div>
							<div class="index-item-description">Authenticate.  Do whatever we need to authenticate a username / password.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AuthPlugin
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/AuthPlugin.html">AuthPlugin</a> in AuthPlugin.php</div>
							<div class="index-item-description">A class for authenticating and retrieving user information</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">AuthPlugin</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/AuthPlugin.html#methodAuthPlugin">AuthPlugin::AuthPlugin()</a> in AuthPlugin.php</div>
							<div class="index-item-description">Create a new AuthPlugin object.  This is as lightweight as possible.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AuthPlugin.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/_AuthPlugin.php.html">AuthPlugin.php</a> in AuthPlugin.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AuthPlugins.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/_AuthPlugins.php.html">AuthPlugins.php</a> in AuthPlugins.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">auth_external</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/_AuthPlugins.php.html#functionauth_external">auth_external()</a> in AuthPlugins.php</div>
							<div class="index-item-description">Authentication has already happened.  We know the username, we just need  to do the authorisation / access control.  The password is ignored.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">auth_other_awl</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AuthPlugin/_AuthPlugins.php.html#functionauth_other_awl">auth_other_awl()</a> in AuthPlugins.php</div>
							<div class="index-item-description">Authenticate against a different PostgreSQL database which contains a usr table in  the AWL format.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Available</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodAvailable">Editor::Available()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AwlCache
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html">AwlCache</a> in AwlCache.php</div>
							<div class="index-item-description">A simple Memcached wrapper supporting namespacing of stored values.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AwlCache.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/_AwlCache.php.html">AwlCache.php</a> in AwlCache.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AwlDatabase
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html">AwlDatabase</a> in AwlDatabase.php</div>
							<div class="index-item-description">Typically there will only be a single instance of the database level class in an application.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AwlDatabase.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlDatabase.php.html">AwlDatabase.php</a> in AwlDatabase.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AwlDBDialect
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html">AwlDBDialect</a> in AwlDBDialect.php</div>
							<div class="index-item-description">The AwlDBDialect class handles support for different SQL dialects</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AwlDBDialect.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlDBDialect.php.html">AwlDBDialect.php</a> in AwlDBDialect.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AwlQuery
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html">AwlQuery</a> in AwlQuery.php</div>
							<div class="index-item-description">The AwlQuery Class.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AwlQuery.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlQuery.php.html">AwlQuery.php</a> in AwlQuery.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			AwlUpgrader
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlUpgrader.html">AwlUpgrader</a> in AwlUpgrader.php</div>
							<div class="index-item-description">The AwlUpgrader Class.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AwlUpgrader.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlUpgrader.php.html">AwlUpgrader.php</a> in AwlUpgrader.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">AWLUtilities.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html">AWLUtilities.php</a> in AWLUtilities.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">awl_replace_sql_args</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#functionawl_replace_sql_args">awl_replace_sql_args()</a> in PgQuery.php</div>
							<div class="index-item-description">Replaces PostgreSQL query with escaped parameters in preparation  for execution.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">awl_set_locale</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Translation/_Translation.php.html#functionawl_set_locale">awl_set_locale()</a> in Translation.php</div>
							<div class="index-item-description">Set the translation to the user's locale.  At this stage all we do is  call the gettext function.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">awl_version</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionawl_version">awl_version()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Return the AWL version</div>
					</dd>
		</dl>
	<a name="b"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">b</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$BaseTable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$BaseTable">Editor::$BaseTable</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$BeginRow</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$BeginRow">Browser::$BeginRow</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$BeginRowArgs</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$BeginRowArgs">Browser::$BeginRowArgs</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$bound_parameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$bound_parameters">AwlQuery::$bound_parameters</a> in AwlQuery.php</div>
							<div class="index-item-description">The current array of bound parameters</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$bound_querystring</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$bound_querystring">AwlQuery::$bound_querystring</a> in AwlQuery.php</div>
							<div class="index-item-description">The actual query string, after we've replaced parameters in it</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Begin</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodBegin">AwlQuery::Begin()</a> in AwlQuery.php</div>
							<div class="index-item-description">Wrap the parent DB class Begin() so we can $qry-&gt;Begin() sometime before we $qry-&gt;Exec()</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Begin</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodBegin">AwlDatabase::Begin()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Begin a transaction.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Bind</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodBind">AwlQuery::Bind()</a> in AwlQuery.php</div>
							<div class="index-item-description">Bind some parameters.  This can be called in three ways:</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">BreakLine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodBreakLine">EntryForm::BreakLine()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a heading line within a data entry table</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">Browser</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodBrowser">Browser::Browser()</a> in classBrowser.php</div>
							<div class="index-item-description">The Browser class constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			Browser
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html">Browser</a> in classBrowser.php</div>
							<div class="index-item-description">Start a new Browser, add columns, set a join and Render it to create a basic  list of records in a table.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			BrowserColumn
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html">BrowserColumn</a> in classBrowser.php</div>
							<div class="index-item-description">BrowserColumns are the basic building blocks.  You can specify just the  field name, and the column header or you can get fancy and specify an  alignment, format string, SQL formula and cell CSS class.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">BrowserColumn</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#methodBrowserColumn">BrowserColumn::BrowserColumn()</a> in classBrowser.php</div>
							<div class="index-item-description">BrowserColumn constructor.  Only the first parameter is mandatory.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">BuildConfirmationHash</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodBuildConfirmationHash">Session::BuildConfirmationHash()</a> in Session.php</div>
							<div class="index-item-description">Build a hash which we can use for confirmation that we didn't get e-mailed  a bogus link by someone, and that we actually got here by traversing the  website.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">BuildFromText</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodBuildFromText">iCalendar::BuildFromText()</a> in iCalendar.php</div>
							<div class="index-item-description">Build the iCalendar object from a text string which is a single iCalendar resource</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">BuildOptionList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodBuildOptionList">PgQuery::BuildOptionList()</a> in PgQuery.php</div>
							<div class="index-item-description">Build an option list from the query.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">BuildOptionList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#methodBuildOptionList">EntryField::BuildOptionList()</a> in DataEntry.php</div>
							<div class="index-item-description">Build an option list from the query.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">BuildXMLTree</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/_XMLElement.php.html#functionBuildXMLTree">BuildXMLTree()</a> in XMLElement.php</div>
							<div class="index-item-description">Rebuild an XML tree in our own style from the parsed XML tags using  a tail-recursive approach.</div>
					</dd>
		</dl>
	<a name="c"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">c</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Class</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Class">BrowserColumn::$Class</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$CloseRow</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$CloseRow">Browser::$CloseRow</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Columns</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Columns">Browser::$Columns</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$components</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#var$components">vComponent::$components</a> in vComponent.php</div>
							<div class="index-item-description">An array of (sub-)components, which are vComponent objects</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$connection</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$connection">AwlQuery::$connection</a> in AwlQuery.php</div>
							<div class="index-item-description">Our database connection, normally copied from a global one</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$content</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#var$content">XMLElement::$content</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$content</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#var$content">vProperty::$content</a> in vComponent.php</div>
							<div class="index-item-description">The value of this property.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$crlf</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/SinglePart.html#var$crlf">SinglePart::$crlf</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$current</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#var$current">EntryField::$current</a> in DataEntry.php</div>
							<div class="index-item-description">The current value</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$current_row</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$current_row">BrowserColumn::$current_row</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">CheckConfirmationHash</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodCheckConfirmationHash">Session::CheckConfirmationHash()</a> in Session.php</div>
							<div class="index-item-description">Check a hash which we created through BuildConfirmationHash</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">check_by_regex</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functioncheck_by_regex">check_by_regex()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Verify a value is OK by testing a regex against it.  If it is an array apply it to  each element in the array recursively.  If it is an object we don't mess  with it.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">check_temporary_passwords</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/_Session.php.html#functioncheck_temporary_passwords">check_temporary_passwords()</a> in Session.php</div>
							<div class="index-item-description">Checks what a user entered against any currently valid temporary passwords on their account.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">classBrowser.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/_classBrowser.php.html">classBrowser.php</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">classEditor.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/_classEditor.php.html">classEditor.php</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">clean_string</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#functionclean_string">clean_string()</a> in PgQuery.php</div>
							<div class="index-item-description">Clean a string of many suspicious characters</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ClearComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodClearComponents">iCalComponent::ClearComponents()</a> in iCalendar.php</div>
							<div class="index-item-description">Clear all components, or the components matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ClearComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodClearComponents">iCalendar::ClearComponents()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ClearComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodClearComponents">vComponent::ClearComponents()</a> in vComponent.php</div>
							<div class="index-item-description">Clear all components, or the components matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ClearProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodClearProperties">iCalComponent::ClearProperties()</a> in iCalendar.php</div>
							<div class="index-item-description">Clear all properties, or the properties matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ClearProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodClearProperties">vComponent::ClearProperties()</a> in vComponent.php</div>
							<div class="index-item-description">Clear all properties, or the properties matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">CloneConfidential</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodCloneConfidential">iCalComponent::CloneConfidential()</a> in iCalendar.php</div>
							<div class="index-item-description">Clone this component (and subcomponents) into a confidential version of it.  A confidential  event will be scrubbed of any identifying characteristics other than time/date, repeat, uid  and a summary which is just a translated 'Busy'.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">CollectParameterValues</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodCollectParameterValues">vComponent::CollectParameterValues()</a> in vComponent.php</div>
							<div class="index-item-description">Collect an array of all parameters of our properties which are the specified type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">CollectParameterValues</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodCollectParameterValues">iCalComponent::CollectParameterValues()</a> in iCalendar.php</div>
							<div class="index-item-description">Collect an array of all parameters of our properties which are the specified type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Commit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodCommit">AwlQuery::Commit()</a> in AwlQuery.php</div>
							<div class="index-item-description">Wrap the parent DB class Commit() so we can $qry-&gt;Commit() sometime after we $qry-&gt;Exec()</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Commit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodCommit">AwlDatabase::Commit()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Complete a transaction.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ComponentCount</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodComponentCount">vComponent::ComponentCount()</a> in vComponent.php</div>
							<div class="index-item-description">Return number of components</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Confidential</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodConfidential">vCalendar::Confidential()</a> in vCalendar.php</div>
							<div class="index-item-description">Morph this component (and subcomponents) into a confidential version of it.  A confidential  event will be scrubbed of any identifying characteristics other than time/date, repeat, uid  and a summary which is just a translated 'Busy'.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">connect_configured_database</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#functionconnect_configured_database">connect_configured_database()</a> in PgQuery.php</div>
							<div class="index-item-description">Connect to the database defined in the $c-&gt;dbconn[] array</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">CountElements</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodCountElements">XMLElement::CountElements()</a> in XMLElement.php</div>
							<div class="index-item-description">Count the number of elements</div>
					</dd>
		</dl>
	<a name="d"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">d</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$db</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#var$db">AwlDBDialect::$db</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Holds the PDO database connection</div>
					</dd>
			<dt class="field">
						<img src="media/images/Global.png" alt="Global" title="Global" />
			<span class="var-title">$dbconn
 The database connection.</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#global$dbconn
 The database connection.">$dbconn
 The database connection.</a> in PgQuery.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$dialect</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#var$dialect">AwlDBDialect::$dialect</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Holds the name of the database dialect</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Distinct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Distinct">Browser::$Distinct</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$DivClose</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$DivClose">Browser::$DivClose</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$DivOpen</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$DivOpen">Browser::$DivOpen</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">DataEntry.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/_DataEntry.php.html">DataEntry.php</a> in DataEntry.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">DataEntryField</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodDataEntryField">EntryForm::DataEntryField()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a data entry line within a table</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">DataEntryLine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodDataEntryLine">EntryForm::DataEntryLine()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a data entry line within a table</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">DataUpdate.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/_DataUpdate.php.html">DataUpdate.php</a> in DataUpdate.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Dbg</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodDbg">Session::Dbg()</a> in Session.php</div>
							<div class="index-item-description">DEPRECATED Utility function to log debug stuff with printf expansion, and the ability to  enable it selectively.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">dbg_error_log</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiondbg_error_log">dbg_error_log()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Writes a debug message into the error log using printf syntax.  If the first  parameter is &quot;ERROR&quot; then the message will _always_ be logged.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">dbg_log_array</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiondbg_log_array">dbg_log_array()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Function to dump an array to the error log, possibly recursively</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">DBRecord</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodDBRecord">DBRecord::DBRecord()</a> in DataUpdate.php</div>
							<div class="index-item-description">Really numbingly simple construction.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			DBRecord
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html">DBRecord</a> in DataUpdate.php</div>
							<div class="index-item-description">A Base class to use for records which will be read/written from the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">DealWithTimeZones</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodDealWithTimeZones">iCalendar::DealWithTimeZones()</a> in iCalendar.php</div>
							<div class="index-item-description">Do what must be done with time zones from on file.  Attempt to turn  them into something that PostgreSQL can understand...</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">DefaultPropertyList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodDefaultPropertyList">iCalendar::DefaultPropertyList()</a> in iCalendar.php</div>
							<div class="index-item-description">An array of property names that we should always want when rendering an iCalendar</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">define_byte_mappings</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiondefine_byte_mappings">define_byte_mappings()</a> in AWLUtilities.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">delete</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methoddelete">AwlCache::delete()</a> in AwlCache.php</div>
							<div class="index-item-description">Delete a value from a namespace/key, or for everything in a namespace if a 'null' key is supplied.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">deprecated</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiondeprecated">deprecated()</a> in AWLUtilities.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">DoQuery</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodDoQuery">Browser::DoQuery()</a> in classBrowser.php</div>
							<div class="index-item-description">This method is used to build and execute the database query.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">duration</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#functionduration">duration()</a> in PgQuery.php</div>
							<div class="index-item-description">A duration (in decimal seconds) between two times which are the result of calls to microtime()</div>
					</dd>
		</dl>
	<a name="e"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">e</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$EditMode</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#var$EditMode">DBRecord::$EditMode</a> in DataUpdate.php</div>
							<div class="index-item-description">The mode we are in for any form</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$email</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$email">Session::$email</a> in Session.php</div>
							<div class="index-item-description">The user's email address from their usr record.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$errorstring</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#var$errorstring">PgQuery::$errorstring</a> in PgQuery.php</div>
							<div class="index-item-description">The PostgreSQL error message, if the query fails.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$error_info</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$error_info">AwlQuery::$error_info</a> in AwlQuery.php</div>
							<div class="index-item-description">The Database error information, if the query fails.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$execution_time</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#var$execution_time">PgQuery::$execution_time</a> in PgQuery.php</div>
							<div class="index-item-description">Stores the query execution time - used to deal with long queries.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$execution_time</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$execution_time">AwlQuery::$execution_time</a> in AwlQuery.php</div>
							<div class="index-item-description">Stores the query execution time - used to deal with long queries.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ExtraRows</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$ExtraRows">Browser::$ExtraRows</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			Editor
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html">Editor</a> in classEditor.php</div>
							<div class="index-item-description">The class for the Editor form in full</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			EditorField
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html">EditorField</a> in classEditor.php</div>
							<div class="index-item-description">A class for the fields in the editor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			EMail
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html">EMail</a> in EMail.php</div>
							<div class="index-item-description">Lightweight class for sending an e-mail.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">EMail.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/_EMail.php.html">EMail.php</a> in EMail.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">EmailTemporaryPassword</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodEmailTemporaryPassword">Session::EmailTemporaryPassword()</a> in Session.php</div>
							<div class="index-item-description">E-mails a temporary password in response to a request from a user.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">EndForm</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodEndForm">EntryForm::EndForm()</a> in DataEntry.php</div>
							<div class="index-item-description">Return the HTML fragment to end the form.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			EntryField
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html">EntryField</a> in DataEntry.php</div>
							<div class="index-item-description">Individual fields used for data entry / viewing.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">EntryField</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#methodEntryField">EntryField::EntryField()</a> in DataEntry.php</div>
							<div class="index-item-description">Initialise an EntryField, used for data entry.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			EntryForm
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html">EntryForm</a> in DataEntry.php</div>
							<div class="index-item-description">A class to handle displaying a form on the page (for editing) or a structured  layout of non-editable content (for viewing), with a simple switch to flip from  view mode to edit mode.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">EntryForm</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodEntryForm">EntryForm::EntryForm()</a> in DataEntry.php</div>
							<div class="index-item-description">Initialise a new data-entry form.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ErrorInfo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodErrorInfo">AwlDatabase::ErrorInfo()</a> in AwlDatabase.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Exec</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodExec">AwlQuery::Exec()</a> in AwlQuery.php</div>
							<div class="index-item-description">Execute the query, logging any debugging.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Exec</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodExec">PgQuery::Exec()</a> in PgQuery.php</div>
							<div class="index-item-description">Execute the query, logging any debugging.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Execute</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodExecute">AwlQuery::Execute()</a> in AwlQuery.php</div>
							<div class="index-item-description">Tell the database to execute the query</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ExtractProperty</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodExtractProperty">iCalendar::ExtractProperty()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ExtractSubComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodExtractSubComponent">iCalendar::ExtractSubComponent()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constant.png" alt="Constant" title="Constant" />
			<span class="const-title">E_USER_ERROR</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlDBDialect.php.html#defineE_USER_ERROR">E_USER_ERROR</a> in AwlDBDialect.php</div>
					</dd>
		</dl>
	<a name="f"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">f</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Field</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$Field">EditorField::$Field</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Field</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Field">BrowserColumn::$Field</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$FieldNames</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$FieldNames">Browser::$FieldNames</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Fields</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Fields">Editor::$Fields</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ForcedOrder</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$ForcedOrder">Browser::$ForcedOrder</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Format</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Format">BrowserColumn::$Format</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$fullname</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$fullname">Session::$fullname</a> in Session.php</div>
							<div class="index-item-description">The user's full name from their usr record.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">fatal</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionfatal">fatal()</a> in AWLUtilities.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Fetch</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodFetch">PgQuery::Fetch()</a> in PgQuery.php</div>
							<div class="index-item-description">Fetch the next row from the query results</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Fetch</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodFetch">AwlQuery::Fetch()</a> in AwlQuery.php</div>
							<div class="index-item-description">Fetch the next row from the query results</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">FetchBackwards</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodFetchBackwards">PgQuery::FetchBackwards()</a> in PgQuery.php</div>
							<div class="index-item-description">Fetch backwards from the result resource</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">FirstNonTimezone</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodFirstNonTimezone">iCalComponent::FirstNonTimezone()</a> in iCalendar.php</div>
							<div class="index-item-description">Get all sub-components, or at least get those matching a type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">flush</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodflush">AwlCache::flush()</a> in AwlCache.php</div>
							<div class="index-item-description">Flush the entire cache</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ForceOrder</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodForceOrder">Browser::ForceOrder()</a> in classBrowser.php</div>
							<div class="index-item-description">Force a particular ordering onto the browser widget.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">force_utf8</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionforce_utf8">force_utf8()</a> in AWLUtilities.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">FormattedDate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodFormattedDate">Session::FormattedDate()</a> in Session.php</div>
							<div class="index-item-description">Function to reformat an ISO date to something nicer and possibly more localised</div>
					</dd>
		</dl>
	<a name="g"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">g</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Grouping</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Grouping">Browser::$Grouping</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Get</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodGet">iCalendar::Get()</a> in iCalendar.php</div>
							<div class="index-item-description">Get the value of a property in the first non-VTIMEZONE</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Get</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodGet">DBRecord::Get()</a> in DataUpdate.php</div>
							<div class="index-item-description">Returns a single field from the record</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">get</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodget">AwlCache::get()</a> in AwlCache.php</div>
							<div class="index-item-description">get a value from the specified namespace / key</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetAttendees</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetAttendees">vCalendar::GetAttendees()</a> in vCalendar.php</div>
							<div class="index-item-description">Get the attendees of this VEVENT/VTODO</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetAttribute</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetAttribute">XMLElement::GetAttribute()</a> in XMLElement.php</div>
							<div class="index-item-description">Accessor for a single attribute</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetAttributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetAttributes">XMLElement::GetAttributes()</a> in XMLElement.php</div>
							<div class="index-item-description">Accessor for the attributes</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">getCacheInstance</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/_AwlCache.php.html#functiongetCacheInstance">getCacheInstance()</a> in AwlCache.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodGetComponents">iCalendar::GetComponents()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetComponents">vComponent::GetComponents()</a> in vComponent.php</div>
							<div class="index-item-description">Get all sub-components, or at least get those matching a type, or failling to match,  should the second parameter be set to false. Component types may be a string or an array  associating property names with true values: array( 'TYPE' =&gt; true, 'TYPE2' =&gt; true )</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetComponents">iCalComponent::GetComponents()</a> in iCalendar.php</div>
							<div class="index-item-description">Get all sub-components, or at least get those matching a type, or failling to match,  should the second parameter be set to false.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetConnection</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodGetConnection">AwlQuery::GetConnection()</a> in AwlQuery.php</div>
							<div class="index-item-description">Get the current database connection for this query</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetContent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetContent">XMLElement::GetContent()</a> in XMLElement.php</div>
							<div class="index-item-description">Accessor for the content</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetElements</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetElements">XMLElement::GetElements()</a> in XMLElement.php</div>
							<div class="index-item-description">Return an array of elements matching the specified tag, or all elements if no tag is supplied.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetFields</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodGetFields">AwlDBDialect::GetFields()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Returns the SQL for the current database dialect which will return a two-column resultset containing a  list of fields and their associated data types.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetItip</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetItip">vCalendar::GetItip()</a> in vCalendar.php</div>
							<div class="index-item-description">Clone this component (and subcomponents) into a minimal iTIP version of it.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">getMimeHeaders</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Multipart.html#methodgetMimeHeaders">Multipart::getMimeHeaders()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">getMimeParts</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Multipart.html#methodgetMimeParts">Multipart::getMimeParts()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetNSTag</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetNSTag">XMLElement::GetNSTag()</a> in XMLElement.php</div>
							<div class="index-item-description">Accessor for the full-namespaced tag name</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetOlsonName</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetOlsonName">vCalendar::GetOlsonName()</a> in vCalendar.php</div>
							<div class="index-item-description">Work out what Olson timezone this VTIMEZONE really is.  Perhaps we should put this  into a vTimezone class.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetOrganizer</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetOrganizer">vCalendar::GetOrganizer()</a> in vCalendar.php</div>
							<div class="index-item-description">Get the organizer of this VEVENT/VTODO</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetParameterValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodGetParameterValue">iCalProp::GetParameterValue()</a> in iCalendar.php</div>
							<div class="index-item-description">Get the value of a parameter</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetParameterValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodGetParameterValue">vProperty::GetParameterValue()</a> in vComponent.php</div>
							<div class="index-item-description">Get the value of a parameter</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPath</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetPath">XMLElement::GetPath()</a> in XMLElement.php</div>
							<div class="index-item-description">Return an array of elements matching the specified path</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPParamValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetPParamValue">iCalComponent::GetPParamValue()</a> in iCalendar.php</div>
							<div class="index-item-description">Get the value of the specified parameter for the first property matching the  name. Obviously this isn't so useful for properties which may occur multiply, but most don't.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetProperties">vComponent::GetProperties()</a> in vComponent.php</div>
							<div class="index-item-description">Get all properties, or the properties matching a particular type, or matching an</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetProperties">iCalComponent::GetProperties()</a> in iCalendar.php</div>
							<div class="index-item-description">Get all properties, or the properties matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPropertiesByPath</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetPropertiesByPath">vComponent::GetPropertiesByPath()</a> in vComponent.php</div>
							<div class="index-item-description">Return an array of properties matching the specified path</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPropertiesByPath</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetPropertiesByPath">iCalComponent::GetPropertiesByPath()</a> in iCalendar.php</div>
							<div class="index-item-description">Return an array of properties matching the specified path</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetProperty</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetProperty">vComponent::GetProperty()</a> in vComponent.php</div>
							<div class="index-item-description">Return the first instance of a property of this name</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetPValue">vComponent::GetPValue()</a> in vComponent.php</div>
							<div class="index-item-description">Return the value of the first instance of a property of this name, or null</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetPValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetPValue">iCalComponent::GetPValue()</a> in iCalendar.php</div>
							<div class="index-item-description">Get the value of the first property matching the name. Obviously this isn't  so useful for properties which may occur multiply, but most don't.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetRecord</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodGetRecord">Editor::GetRecord()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetRoles</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodGetRoles">User::GetRoles()</a> in User.php</div>
							<div class="index-item-description">Get the group memberships for the user</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetRoles</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodGetRoles">Session::GetRoles()</a> in Session.php</div>
							<div class="index-item-description">Internal function used to get the user's roles from the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetScheduleAgent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetScheduleAgent">vCalendar::GetScheduleAgent()</a> in vCalendar.php</div>
							<div class="index-item-description">Get the schedule-agent from the organizer</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetTag</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodGetTag">XMLElement::GetTag()</a> in XMLElement.php</div>
							<div class="index-item-description">Accessor for the tag name</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetTarget</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodGetTarget">EditorField::GetTarget()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetTarget</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#methodGetTarget">BrowserColumn::GetTarget()</a> in classBrowser.php</div>
							<div class="index-item-description">GetTarget</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetTimeZone</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetTimeZone">vCalendar::GetTimeZone()</a> in vCalendar.php</div>
							<div class="index-item-description">Get a timezone component for a specific TZID in this calendar.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetTotal</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodGetTotal">Browser::GetTotal()</a> in classBrowser.php</div>
							<div class="index-item-description">Retrieve the total from a totalled column</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetType</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodGetType">iCalComponent::GetType()</a> in iCalendar.php</div>
							<div class="index-item-description">Return the type of component which this is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetType</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodGetType">vComponent::GetType()</a> in vComponent.php</div>
							<div class="index-item-description">Return the type of component which this is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetUID</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodGetUID">vCalendar::GetUID()</a> in vCalendar.php</div>
							<div class="index-item-description">Get the UID from the primary component.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">GetVersion</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodGetVersion">AwlDBDialect::GetVersion()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Sets the current search path for the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">get_fields</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionget_fields">get_fields()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Get the names of the fields for a particular table</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">gzdecode</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiongzdecode">gzdecode()</a> in AWLUtilities.php</div>
					</dd>
		</dl>
	<a name="h"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">h</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Header</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Header">BrowserColumn::$Header</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$HiddenColumns</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$HiddenColumns">Browser::$HiddenColumns</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Hook</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Hook">BrowserColumn::$Hook</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">HelpInCell</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodHelpInCell">EntryForm::HelpInCell()</a> in DataEntry.php</div>
							<div class="index-item-description">Set the line format to have help displayed in it's own separate cell</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">HelpInLine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodHelpInLine">EntryForm::HelpInLine()</a> in DataEntry.php</div>
							<div class="index-item-description">Set the line format to have help displayed in the same cell as the entry field.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">HiddenField</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodHiddenField">EntryForm::HiddenField()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a hidden field within a data entry table</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">HttpDateFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodHttpDateFormat">iCalendar::HttpDateFormat()</a> in iCalendar.php</div>
					</dd>
		</dl>
	<a name="i"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">i</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Id</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Id">Editor::$Id</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">i18n</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Translation/_Translation.php.html#functioni18n">i18n()</a> in Translation.php</div>
							<div class="index-item-description">Mark a string as being internationalized.  This is a semaphore method; it  does nothing but it allows us to easily identify strings that require  translation.  Generally this is used to mark strings that will be stored  in the database (like descriptions of permissions).</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			iCalComponent
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html">iCalComponent</a> in iCalendar.php</div>
							<div class="index-item-description">A Class for representing components within an iCalendar</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">iCalComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodiCalComponent">iCalComponent::iCalComponent()</a> in iCalendar.php</div>
							<div class="index-item-description">A basic constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">iCalendar</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodiCalendar">iCalendar::iCalendar()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			iCalendar
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html">iCalendar</a> in iCalendar.php</div>
							<div class="index-item-description">A Class for handling Events on a calendar (DEPRECATED)</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">iCalendar.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/_iCalendar.php.html">iCalendar.php</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">iCalFooter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodiCalFooter">iCalendar::iCalFooter()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">iCalHeader</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodiCalHeader">iCalendar::iCalHeader()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			iCalProp
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html">iCalProp</a> in iCalendar.php</div>
							<div class="index-item-description">A Class for representing properties within an iCalendar</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">iCalProp</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodiCalProp">iCalProp::iCalProp()</a> in iCalendar.php</div>
							<div class="index-item-description">The constructor parses the incoming string, which is formatted as per RFC2445 as a    propname[;param1=pval1[; ... ]]:propvalue  however we allow ourselves to assume that the RFC2445 content unescaping has already  happened when iCalComponent::ParseFrom() called iCalComponent::UnwrapComponent().</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Id</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodId">Editor::Id()</a> in classEditor.php</div>
							<div class="index-item-description">Sets or returns the form ID used for differentiating this form from others in the page.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Initialise</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodInitialise">Editor::Initialise()</a> in classEditor.php</div>
							<div class="index-item-description">Set some particular values to the ones from the array.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Initialise</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodInitialise">DBRecord::Initialise()</a> in DataUpdate.php</div>
							<div class="index-item-description">This will read the record from the database if it's available, and  the $keys parameter is a non-empty array.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">init_gettext</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Translation/_Translation.php.html#functioninit_gettext">init_gettext()</a> in Translation.php</div>
							<div class="index-item-description">Initialise our use of Gettext</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">isActive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodisActive">AwlCache::isActive()</a> in AwlCache.php</div>
							<div class="index-item-description">So we can find out if we are actually using the cache.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsActive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodIsActive">MenuOption::IsActive()</a> in MenuSet.php</div>
							<div class="index-item-description">Whether this option is currently active.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsAttendee</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodIsAttendee">iCalComponent::IsAttendee()</a> in iCalendar.php</div>
							<div class="index-item-description">Return true if the person identified by the email address is down as an  attendee or organizer for this meeting.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsCreate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodIsCreate">Editor::IsCreate()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsOrganizer</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodIsOrganizer">iCalComponent::IsOrganizer()</a> in iCalendar.php</div>
							<div class="index-item-description">Return true if the person identified by the email address is down as an  organizer for this meeting.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsSubmit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodIsSubmit">Editor::IsSubmit()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">IsUpdate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodIsUpdate">Editor::IsUpdate()</a> in classEditor.php</div>
					</dd>
		</dl>
	<a name="j"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">j</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Joins</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Joins">Browser::$Joins</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Joins</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Joins">Editor::$Joins</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$just_logged_in</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$just_logged_in">Session::$just_logged_in</a> in Session.php</div>
							<div class="index-item-description">Whether the user logged in to view the current page.  Perhaps some details on the  login form might pollute an editable form and result in an unplanned submit.  This  can be used to program around such a problem.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">JustThisBitPlease</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodJustThisBitPlease">iCalendar::JustThisBitPlease()</a> in iCalendar.php</div>
							<div class="index-item-description">A function to extract the contents of a BEGIN:SOMETHING to END:SOMETHING (perhaps multiply)  and return just that bit (or, of course, those bits :-)</div>
					</dd>
		</dl>
	<a name="l"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">l</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$last_session_end</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$last_session_end">Session::$last_session_end</a> in Session.php</div>
							<div class="index-item-description">The date and time that the user requested their last page during their last  session.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$last_session_start</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$last_session_start">Session::$last_session_start</a> in Session.php</div>
							<div class="index-item-description">The date and time that the user logged on during their last session.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Limit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Limit">Editor::$Limit</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Limit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Limit">Browser::$Limit</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$location</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$location">AwlQuery::$location</a> in AwlQuery.php</div>
							<div class="index-item-description">Where we called this query from so we can find it in our code!  Debugging may also be selectively enabled for a $location.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$logged_in</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$logged_in">Session::$logged_in</a> in Session.php</div>
							<div class="index-item-description">Whether this user has actually logged in.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$LookupSql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$LookupSql">EditorField::$LookupSql</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Layout</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodLayout">Editor::Layout()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">LinkActiveSubMenus</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodLinkActiveSubMenus">MenuSet::LinkActiveSubMenus()</a> in MenuSet.php</div>
							<div class="index-item-description">Mark each MenuOption as active that has an active sub-menu entry.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Log</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodLog">Session::Log()</a> in Session.php</div>
							<div class="index-item-description">DEPRECATED Utility function to log stuff with printf expansion.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Login</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodLogin">Session::Login()</a> in Session.php</div>
							<div class="index-item-description">Attempt to perform a login action.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">LoginRequired</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodLoginRequired">Session::LoginRequired()</a> in Session.php</div>
							<div class="index-item-description">Checks that this user is logged in, and presents a login screen if they aren't.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">LSIDLogin</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodLSIDLogin">Session::LSIDLogin()</a> in Session.php</div>
							<div class="index-item-description">Attempts to logs in using a long-term session ID</div>
					</dd>
		</dl>
	<a name="m"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">m</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$match_column</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$match_column">Browser::$match_column</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$match_function</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$match_function">Browser::$match_function</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$match_value</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$match_value">Browser::$match_value</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MakeSomethingActive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodMakeSomethingActive">MenuSet::MakeSomethingActive()</a> in MenuSet.php</div>
							<div class="index-item-description">Mark each MenuOption as active that has an active sub-menu entry.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaskComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodMaskComponents">iCalendar::MaskComponents()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaskComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodMaskComponents">iCalComponent::MaskComponents()</a> in iCalendar.php</div>
							<div class="index-item-description">Mask components, removing any that are not of the types in the list</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaskComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodMaskComponents">vComponent::MaskComponents()</a> in vComponent.php</div>
							<div class="index-item-description">Mask components, removing any that are not of the types in the list</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaskProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodMaskProperties">iCalComponent::MaskProperties()</a> in iCalendar.php</div>
							<div class="index-item-description">Mask properties, removing any that are not in the list</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaskProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodMaskProperties">vComponent::MaskProperties()</a> in vComponent.php</div>
							<div class="index-item-description">Mask properties, removing any that are not in the list</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MatchedRow</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodMatchedRow">Browser::MatchedRow()</a> in classBrowser.php</div>
							<div class="index-item-description">Replace a row where $column = $value with an extra arbitrary row, returned from calling $function</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MaybeActive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodMaybeActive">MenuOption::MaybeActive()</a> in MenuSet.php</div>
							<div class="index-item-description">Whether this option is currently active.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">MenuOption</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodMenuOption">MenuOption::MenuOption()</a> in MenuSet.php</div>
							<div class="index-item-description">The thing we click</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			MenuOption
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html">MenuOption</a> in MenuSet.php</div>
							<div class="index-item-description">Each menu option is an object.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			MenuSet
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html">MenuSet</a> in MenuSet.php</div>
							<div class="index-item-description">A MenuSet is a hierarchy of MenuOptions, some of which might be  MenuSet objects themselves.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">MenuSet</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodMenuSet">MenuSet::MenuSet()</a> in MenuSet.php</div>
							<div class="index-item-description">Start a new MenuSet with no options.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">MenuSet.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/_MenuSet.php.html">MenuSet.php</a> in MenuSet.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MoreWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodMoreWhere">Editor::MoreWhere()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MoreWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodMoreWhere">Browser::MoreWhere()</a> in classBrowser.php</div>
							<div class="index-item-description">Add an [operator] ... to the SQL Where clause</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">MultiEntryLine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodMultiEntryLine">EntryForm::MultiEntryLine()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a data entry line, where the prompt is a drop-down.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			Multipart
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Multipart.html">Multipart</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">Multipart.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/_Multipart.php.html">Multipart.php</a> in Multipart.php</div>
					</dd>
		</dl>
	<a name="n"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">n</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$name</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#var$name">vProperty::$name</a> in vComponent.php</div>
							<div class="index-item-description">The name of this property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$NewWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$NewWhere">Editor::$NewWhere</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ns_caldav</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/XMLDocument.html#var$ns_caldav">XMLDocument::$ns_caldav</a> in XMLDocument.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ns_calendarserver</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/XMLDocument.html#var$ns_calendarserver">XMLDocument::$ns_calendarserver</a> in XMLDocument.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ns_carddav</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/XMLDocument.html#var$ns_carddav">XMLDocument::$ns_carddav</a> in XMLDocument.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$ns_dav</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/XMLDocument.html#var$ns_dav">XMLDocument::$ns_dav</a> in XMLDocument.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Name</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodName">vProperty::Name()</a> in vComponent.php</div>
							<div class="index-item-description">Get/Set name property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Name</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodName">iCalProp::Name()</a> in iCalendar.php</div>
							<div class="index-item-description">Get/Set name property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">NewElement</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodNewElement">XMLElement::NewElement()</a> in XMLElement.php</div>
							<div class="index-item-description">Add a new sub-element</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">new_lookup</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#methodnew_lookup">EntryField::new_lookup()</a> in DataEntry.php</div>
							<div class="index-item-description">Function called indirectly when a new EntryField of type 'lookup' is created.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">NoHelp</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodNoHelp">EntryForm::NoHelp()</a> in DataEntry.php</div>
							<div class="index-item-description">Set the line format to have no help display</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">not_empty</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodnot_empty">Validation::not_empty()</a> in Validation.php</div>
							<div class="index-item-description">Checks if a string is empty</div>
					</dd>
		</dl>
	<a name="o"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">o</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Offset</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Offset">Browser::$Offset</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$OptionList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$OptionList">EditorField::$OptionList</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Order</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Order">Editor::$Order</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Order</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Order">Browser::$Order</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$OrderBrowserKey</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$OrderBrowserKey">Browser::$OrderBrowserKey</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$OrderDirection</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$OrderDirection">Browser::$OrderDirection</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$OrderedFields</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$OrderedFields">Editor::$OrderedFields</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$OrderField</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$OrderField">Browser::$OrderField</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">olson_from_tzstring</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionolson_from_tzstring">olson_from_tzstring()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Try and extract something like &quot;Pacific/Auckland&quot; or &quot;America/Indiana/Indianapolis&quot; if possible.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">OrWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodOrWhere">Editor::OrWhere()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">OrWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodOrWhere">Browser::OrWhere()</a> in classBrowser.php</div>
							<div class="index-item-description">Add an OR ... to the SQL Where clause</div>
					</dd>
		</dl>
	<a name="p"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">p</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$parameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#var$parameters">vProperty::$parameters</a> in vComponent.php</div>
							<div class="index-item-description">An array of parameters to this property, represented as key/value pairs.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$properties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#var$properties">vComponent::$properties</a> in vComponent.php</div>
							<div class="index-item-description">An array of properties, which are vProperty objects</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Parameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodParameters">vProperty::Parameters()</a> in vComponent.php</div>
							<div class="index-item-description">Get/Set parameters in their entirety</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Parameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodParameters">AwlQuery::Parameters()</a> in AwlQuery.php</div>
							<div class="index-item-description">Return the parameters we are planning to substitute into the query string</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Parameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodParameters">iCalProp::Parameters()</a> in iCalendar.php</div>
							<div class="index-item-description">Get/Set parameters in their entirety</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">param_to_global</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionparam_to_global">param_to_global()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Convert a parameter to a global.  We first look in _POST and then in _GET,  and if they passed in a bunch of valid characters, we will make sure the  incoming is cleaned to only match that set.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ParseFrom</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodParseFrom">vProperty::ParseFrom()</a> in vComponent.php</div>
							<div class="index-item-description">The constructor parses the incoming string, which is formatted as per RFC2445 as a    propname[;param1=pval1[; ... ]]:propvalue  however we allow ourselves to assume that the RFC2445 content unescaping has already  happened when vComponent::ParseFrom() called vComponent::UnwrapComponent().</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ParseFrom</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodParseFrom">iCalProp::ParseFrom()</a> in iCalendar.php</div>
							<div class="index-item-description">The constructor parses the incoming string, which is formatted as per RFC2445 as a    propname[;param1=pval1[; ... ]]:propvalue  however we allow ourselves to assume that the RFC2445 content unescaping has already  happened when iCalComponent::ParseFrom() called iCalComponent::UnwrapComponent().</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ParseFrom</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodParseFrom">iCalComponent::ParseFrom()</a> in iCalendar.php</div>
							<div class="index-item-description">Parse the text $content into sets of iCalProp &amp; iCalComponent within this iCalComponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ParseFrom</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodParseFrom">vComponent::ParseFrom()</a> in vComponent.php</div>
							<div class="index-item-description">Parse the text $content into sets of vProperty &amp; vComponent within this vComponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ParseSomeLines</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodParseSomeLines">iCalendar::ParseSomeLines()</a> in iCalendar.php</div>
							<div class="index-item-description">Function to parse lines from BEGIN:SOMETHING to END:SOMETHING into a nested array structure</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			PgQuery
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html">PgQuery</a> in PgQuery.php</div>
							<div class="index-item-description">The PgQuery Class.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">PgQuery.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html">PgQuery.php</a> in PgQuery.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Plain</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodPlain">PgQuery::Plain()</a> in PgQuery.php</div>
							<div class="index-item-description">Convert a string which has already been quoted and escaped for PostgreSQL  into a magic array so that it will be inserted unmodified into the SQL  string.  Use with care!</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">PopulateForm</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodPopulateForm">EntryForm::PopulateForm()</a> in DataEntry.php</div>
							<div class="index-item-description">Initialise some more of the forms fields, possibly with a prefix</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">positive_dollars</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodpositive_dollars">Validation::positive_dollars()</a> in Validation.php</div>
							<div class="index-item-description">Check that the given string is a positive dollar amount.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">positive_integer</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodpositive_integer">Validation::positive_integer()</a> in Validation.php</div>
							<div class="index-item-description">Check that the given string is a positive integer.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">PostToValues</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodPostToValues">Editor::PostToValues()</a> in classEditor.php</div>
							<div class="index-item-description">This will assign $_POST values to the internal Values object for each  field that exists in the Fields array.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">PostToValues</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodPostToValues">DBRecord::PostToValues()</a> in DataUpdate.php</div>
							<div class="index-item-description">This will assign $_POST values to the internal Values object for each  field that exists in the Fields array.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Prepare</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodPrepare">AwlQuery::Prepare()</a> in AwlQuery.php</div>
							<div class="index-item-description">Tell the database to prepare the query that we will execute</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">prepare</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodprepare">AwlDatabase::prepare()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Returns a PDOStatement object created using this database, the supplied SQL string, and any parameters given.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">PrepareTranslated</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodPrepareTranslated">AwlDatabase::PrepareTranslated()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Operates identically to AwlDatabase::Prepare, except that $this-&gt;Translate() will be called on the query  before any processing.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Pretend</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodPretend">EMail::Pretend()</a> in EMail.php</div>
							<div class="index-item-description">Don't actually send the email, just output it directly in the stream(!).  We use this method  when we're doing regression testing.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">PretendLog</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodPretendLog">EMail::PretendLog()</a> in EMail.php</div>
							<div class="index-item-description">Don't actually send the email, just log it.</div>
					</dd>
		</dl>
	<a name="q"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">q</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Query</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Query">Editor::$Query</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Query</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Query">Browser::$Query</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$querystring</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$querystring">AwlQuery::$querystring</a> in AwlQuery.php</div>
							<div class="index-item-description">The original query string</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$query_time_warning</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#var$query_time_warning">PgQuery::$query_time_warning</a> in PgQuery.php</div>
							<div class="index-item-description">How long the query should take before a warning is issued.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$query_time_warning</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$query_time_warning">AwlQuery::$query_time_warning</a> in AwlQuery.php</div>
							<div class="index-item-description">How long the query should take before a warning is issued.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">QDo</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodQDo">AwlQuery::QDo()</a> in AwlQuery.php</div>
							<div class="index-item-description">Simple QDo() class which will re-use this query for whatever was passed in, and execute it  returning the result of the Exec() call.  We can't call it Do() since that's a reserved word...</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">qpg</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/_PgQuery.php.html#functionqpg">qpg()</a> in PgQuery.php</div>
							<div class="index-item-description">Quote the given string (depending on its type) so that it can be used  safely in a PostgreSQL query without fear of SQL injection errors.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">query</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodquery">AwlDatabase::query()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Returns a PDOStatement object created using this database, the supplied SQL string, and any parameters given.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">QueryString</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodQueryString">AwlQuery::QueryString()</a> in AwlQuery.php</div>
							<div class="index-item-description">Return the query string we are planning to execute</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">quote</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodquote">PgQuery::quote()</a> in PgQuery.php</div>
							<div class="index-item-description">Quote the given string so it can be safely used within string delimiters  in a query.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">quote</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodquote">AwlQuery::quote()</a> in AwlQuery.php</div>
							<div class="index-item-description">Quote the given string so it can be safely used within string delimiters  in a query.  To be avoided, in general.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Quote</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodQuote">AwlDBDialect::Quote()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Returns $value escaped in an appropriate way for this database dialect.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">quoted_printable_encode</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionquoted_printable_encode">quoted_printable_encode()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Process a string to fit the requirements of RFC2045 section 6.7.  Note that  this works, but replaces more characters than the minimum set. For readability  the spaces aren't encoded as =20 though.</div>
					</dd>
		</dl>
	<a name="r"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">r</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Record</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Record">Editor::$Record</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$RecordAvailable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$RecordAvailable">Editor::$RecordAvailable</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rendered</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#var$rendered">MenuOption::$rendered</a> in MenuSet.php</div>
							<div class="index-item-description">The rendered HTML fragment (once it has been).</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rendered</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#var$rendered">vProperty::$rendered</a> in vComponent.php</div>
							<div class="index-item-description">The original value that this was parsed from, if that's the way it happened.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rendered</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#var$rendered">EntryField::$rendered</a> in DataEntry.php</div>
							<div class="index-item-description">Once it actually is...</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rendered</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#var$rendered">vComponent::$rendered</a> in vComponent.php</div>
							<div class="index-item-description">The rendered result (or what was originally parsed, if there have been no changes)</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$result</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$result">AwlQuery::$result</a> in AwlQuery.php</div>
							<div class="index-item-description">Result of the last execution</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rownum</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$rownum">AwlQuery::$rownum</a> in AwlQuery.php</div>
							<div class="index-item-description">number of current row - use accessor to get/set</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rows</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$rows">AwlQuery::$rows</a> in AwlQuery.php</div>
							<div class="index-item-description">number of rows from pg_numrows - use accessor to get value</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$rows</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#var$rows">PgQuery::$rows</a> in PgQuery.php</div>
							<div class="index-item-description">number of rows from pg_numrows - for fetching result</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Read</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodRead">DBRecord::Read()</a> in DataUpdate.php</div>
							<div class="index-item-description">To read the record from the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">releaseLock</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodreleaseLock">AwlCache::releaseLock()</a> in AwlCache.php</div>
							<div class="index-item-description">Release a lock</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodRender">MenuSet::Render()</a> in MenuSet.php</div>
							<div class="index-item-description">Render the menu tree to an HTML fragment.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/SinglePart.html#methodrender">SinglePart::render()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryField.html#methodRender">EntryField::Render()</a> in DataEntry.php</div>
							<div class="index-item-description">Render an EntryField into HTML</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodRender">MenuOption::Render()</a> in MenuSet.php</div>
							<div class="index-item-description">Convert the menu option into an HTML string</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodRender">iCalProp::Render()</a> in iCalendar.php</div>
							<div class="index-item-description">Render a suitably escaped RFC2445 content string.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodRender">iCalComponent::Render()</a> in iCalendar.php</div>
							<div class="index-item-description">Renders the component, possibly restricted to only the listed properties</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodRender">iCalendar::Render()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodRender">User::Render()</a> in User.php</div>
							<div class="index-item-description">Render the form / viewer as HTML to show the user</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodRender">Editor::Render()</a> in classEditor.php</div>
							<div class="index-item-description">Render the templated component.  The heavy lifting is done by the callback...</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodRender">vProperty::Render()</a> in vComponent.php</div>
							<div class="index-item-description">Render a suitably escaped RFC2445 content string.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodRender">XMLElement::Render()</a> in XMLElement.php</div>
							<div class="index-item-description">Render the document tree into (nicely formatted) XML</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodRender">vComponent::Render()</a> in vComponent.php</div>
							<div class="index-item-description">Renders the component, possibly restricted to only the listed properties</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Render</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodRender">Browser::Render()</a> in classBrowser.php</div>
							<div class="index-item-description">This method is used to render the browser as HTML.  If the query has  not yet been executed then this will call DoQuery to do so.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderAsCSS</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodRenderAsCSS">MenuSet::RenderAsCSS()</a> in MenuSet.php</div>
							<div class="index-item-description">Render the menu tree to an HTML fragment.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderAttributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodRenderAttributes">EditorField::RenderAttributes()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderContent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodRenderContent">XMLElement::RenderContent()</a> in XMLElement.php</div>
							<div class="index-item-description">Render just the internal content</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderFields</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodRenderFields">User::RenderFields()</a> in User.php</div>
							<div class="index-item-description">Render the core details to show to the user</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderHeader</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#methodRenderHeader">BrowserColumn::RenderHeader()</a> in classBrowser.php</div>
							<div class="index-item-description">RenderHeader</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderJavascript</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodRenderJavascript">Validation::RenderJavascript()</a> in Validation.php</div>
							<div class="index-item-description">Returns the javascript for form validation using the rules.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderLabel</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodRenderLabel">EditorField::RenderLabel()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderLoginPanel</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodRenderLoginPanel">Session::RenderLoginPanel()</a> in Session.php</div>
							<div class="index-item-description">Renders some HTML for a basic login panel</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderParameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodRenderParameters">iCalProp::RenderParameters()</a> in iCalendar.php</div>
							<div class="index-item-description">Render the set of parameters as key1=value1[;key2=value2[; ...]] with  any colons or semicolons escaped.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderParameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodRenderParameters">vProperty::RenderParameters()</a> in vComponent.php</div>
							<div class="index-item-description">Render the set of parameters as key1=value1[;key2=value2[; ...]] with  any colons or semicolons escaped.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderRoles</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodRenderRoles">User::RenderRoles()</a> in User.php</div>
							<div class="index-item-description">Render the user's administrative roles</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RenderValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#methodRenderValue">BrowserColumn::RenderValue()</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ReplaceEditorPart</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodReplaceEditorPart">Editor::ReplaceEditorPart()</a> in classEditor.php</div>
							<div class="index-item-description">Replace parts into the form template.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ReplaceNamedParameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodReplaceNamedParameters">AwlDBDialect::ReplaceNamedParameters()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Replaces named query parameters of the form :name with appropriately  escaped substitutions.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ReplaceParameters</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodReplaceParameters">AwlDBDialect::ReplaceParameters()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Replaces query parameters with appropriately escaped substitutions.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">replace_uri_params</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionreplace_uri_params">replace_uri_params()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Given a URL (presumably the current one) and a parameter, replace the value of parameter,  extending the URL as necessary if the parameter is not already there.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RevertLineFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodRevertLineFormat">EntryForm::RevertLineFormat()</a> in DataEntry.php</div>
							<div class="index-item-description">Revert the line format to what was in place before the last TempLineFormat call.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RFC2445ContentEscape</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodRFC2445ContentEscape">iCalendar::RFC2445ContentEscape()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RFC2445ContentUnescape</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodRFC2445ContentUnescape">iCalendar::RFC2445ContentUnescape()</a> in iCalendar.php</div>
							<div class="index-item-description">Returns a content string with the RFC2445 escaping removed</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Rollback</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodRollback">AwlDatabase::Rollback()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Cancel a transaction in progress.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Rollback</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodRollback">AwlQuery::Rollback()</a> in AwlQuery.php</div>
							<div class="index-item-description">Wrap the parent DB class Rollback() so we can $qry-&gt;Rollback() sometime after we $qry-&gt;Exec()</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">RowFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodRowFormat">Browser::RowFormat()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the format for an output row.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">rownum</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodrownum">AwlQuery::rownum()</a> in AwlQuery.php</div>
							<div class="index-item-description">Return the current rownum in the retrieved set</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">rows</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodrows">PgQuery::rows()</a> in PgQuery.php</div>
							<div class="index-item-description">Provide a rows() method for forward compatibility with AwlQuery.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">rows</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodrows">AwlQuery::rows()</a> in AwlQuery.php</div>
							<div class="index-item-description">Return the count of rows retrieved/affected</div>
					</dd>
		</dl>
	<a name="s"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">s</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$self</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#var$self">MenuOption::$self</a> in MenuSet.php</div>
							<div class="index-item-description">A reference to this menu option itself</div>
					</dd>
			<dt class="field">
						<img src="media/images/Global.png" alt="Global" title="Global" />
			<span class="var-title">$session
 The session object is global.</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/_Session.php.html#global$session
 The session object is global.">$session
 The session object is global.</a> in Session.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$session_id</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$session_id">Session::$session_id</a> in Session.php</div>
							<div class="index-item-description">A unique id for this user's logged-in session.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Sql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Sql">BrowserColumn::$Sql</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Sql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$Sql">EditorField::$Sql</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$sth</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#var$sth">AwlQuery::$sth</a> in AwlQuery.php</div>
							<div class="index-item-description">The PDO statement handle, or null if we don't have one yet.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$SubmitName</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$SubmitName">Editor::$SubmitName</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$SubTitle</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$SubTitle">Browser::$SubTitle</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SaveTimeZones</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSaveTimeZones">iCalendar::SaveTimeZones()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">selected</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodselected">Validation::selected()</a> in Validation.php</div>
							<div class="index-item-description">Checks that a string is not empty or zero</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Send</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodSend">EMail::Send()</a> in EMail.php</div>
							<div class="index-item-description">Actually send the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SendTemporaryPassword</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodSendTemporaryPassword">Session::SendTemporaryPassword()</a> in Session.php</div>
							<div class="index-item-description">Sends a temporary password in response to a request from a user.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">Session</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#methodSession">Session::Session()</a> in Session.php</div>
							<div class="index-item-description">Create a new Session object.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			Session
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html">Session</a> in Session.php</div>
							<div class="index-item-description">A class for creating and holding session information.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">Session.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/_Session.php.html">Session.php</a> in Session.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">session_salted_md5</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionsession_salted_md5">session_salted_md5()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Make a salted MD5 string, given a string and (possibly) a salt.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">session_salted_sha1</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionsession_salted_sha1">session_salted_sha1()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Make a salted SHA1 string, given a string and (possibly) a salt.  PHP5 only (although it  could be made to work on PHP4 (@see http://www.openldap.org/faq/data/cache/347.html). The  algorithm used here is compatible with OpenLDAP so passwords generated through this function  should be able to be migrated to OpenLDAP by using the part following the second '*', i.e.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">session_simple_md5</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionsession_simple_md5">session_simple_md5()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Make a plain MD5 hash of a string, identifying the type of hash it is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">session_validate_password</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionsession_validate_password">session_validate_password()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Checks what a user entered against the actual password on their account.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodSet">DBRecord::Set()</a> in DataUpdate.php</div>
							<div class="index-item-description">Sets a single field in the record</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuOption.html#methodSet">MenuOption::Set()</a> in MenuSet.php</div>
							<div class="index-item-description">Set arbitrary attributes of the menu option</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodSet">EditorField::Set()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSet">iCalendar::Set()</a> in iCalendar.php</div>
							<div class="index-item-description">Set the value of a property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">set</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#methodset">AwlCache::set()</a> in AwlCache.php</div>
							<div class="index-item-description">Set a value for the specified namespace/key, perhaps with an expiry (default 10 days)</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetAttribute</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodSetAttribute">XMLElement::SetAttribute()</a> in XMLElement.php</div>
							<div class="index-item-description">Set an element attribute to a value</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetBaseTable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetBaseTable">Editor::SetBaseTable()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetBody</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodSetBody">EMail::SetBody()</a> in EMail.php</div>
							<div class="index-item-description">Set the body of the e-mail.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSetComponents">iCalendar::SetComponents()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodSetComponents">vComponent::SetComponents()</a> in vComponent.php</div>
							<div class="index-item-description">Sets some or all sub-components of the component to the supplied new components</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetComponents</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodSetComponents">iCalComponent::SetComponents()</a> in iCalendar.php</div>
							<div class="index-item-description">Sets some or all sub-components of the component to the supplied new components</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetConnection</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodSetConnection">PgQuery::SetConnection()</a> in PgQuery.php</div>
							<div class="index-item-description">Use a different database connection for this query</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetConnection</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodSetConnection">AwlQuery::SetConnection()</a> in AwlQuery.php</div>
							<div class="index-item-description">Use a different database connection for this query</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetContent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#methodSetContent">XMLElement::SetContent()</a> in XMLElement.php</div>
							<div class="index-item-description">Set the whole content to a value</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetDistinct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetDistinct">Browser::SetDistinct()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the SQL DISTINCT clause to a specific value.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetDiv</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetDiv">Browser::SetDiv()</a> in classBrowser.php</div>
							<div class="index-item-description">Set a div for wrapping the browse.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetFrom</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodSetFrom">EMail::SetFrom()</a> in EMail.php</div>
							<div class="index-item-description">Set the visible From address for the e-mail.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetJoins</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetJoins">Editor::SetJoins()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetJoins</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetJoins">Browser::SetJoins()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the tables and joins for the SQL.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetLimit</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetLimit">Browser::SetLimit()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the SQL LIMIT clause to a specific value.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetLookup</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodSetLookup">EditorField::SetLookup()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetLookup</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetLookup">Editor::SetLookup()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetOffset</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetOffset">Browser::SetOffset()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the SQL OFFSET clause to a specific value.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetOptionList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodSetOptionList">EditorField::SetOptionList()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetOptionList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetOptionList">Editor::SetOptionList()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetOrdering</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetOrdering">Browser::SetOrdering()</a> in classBrowser.php</div>
							<div class="index-item-description">Set up the ordering for the browser.  Generally you should call this with  the first parameter set as a field to order by default.  Call with the second  parameter set to 'D' or 'DESCEND' if you want to reverse the default order.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetParameterValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodSetParameterValue">vProperty::SetParameterValue()</a> in vComponent.php</div>
							<div class="index-item-description">Set the value of a parameter</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetParameterValue</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodSetParameterValue">iCalProp::SetParameterValue()</a> in iCalendar.php</div>
							<div class="index-item-description">Set the value of a parameter</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodSetProperties">iCalComponent::SetProperties()</a> in iCalendar.php</div>
							<div class="index-item-description">Set all properties, or the ones matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetProperties</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodSetProperties">vComponent::SetProperties()</a> in vComponent.php</div>
							<div class="index-item-description">Set all properties, or the ones matching a particular type</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetRecord</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetRecord">Editor::SetRecord()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSearchPath</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodSetSearchPath">AwlDBDialect::SetSearchPath()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Sets the current search path for the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSender</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodSetSender">EMail::SetSender()</a> in EMail.php</div>
							<div class="index-item-description">Set the envelope sender address for the e-mail.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodSetSql">AwlQuery::SetSql()</a> in AwlQuery.php</div>
							<div class="index-item-description">Simple SetSql() class which will reset the object with the querystring from the first argument.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#methodSetSql">EditorField::SetSql()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSql</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetSql">Editor::SetSql()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSubject</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#methodSetSubject">EMail::SetSubject()</a> in EMail.php</div>
							<div class="index-item-description">Set the subject line for the email</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSubmitName</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetSubmitName">Editor::SetSubmitName()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetSubTitle</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetSubTitle">Browser::SetSubTitle()</a> in classBrowser.php</div>
							<div class="index-item-description">Set a Sub Title for the browse.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetTemplate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetTemplate">Editor::SetTemplate()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetTitle</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetTitle">Browser::SetTitle()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the Title for the browse.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetTranslatable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetTranslatable">Browser::SetTranslatable()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the named columns to be translatable</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetTranslatable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#methodSetTranslatable">BrowserColumn::SetTranslatable()</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetType</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodSetType">iCalComponent::SetType()</a> in iCalendar.php</div>
							<div class="index-item-description">Set the type of component which this is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetType</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodSetType">vComponent::SetType()</a> in vComponent.php</div>
							<div class="index-item-description">Set the type of component which this is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetUID</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodSetUID">vCalendar::SetUID()</a> in vCalendar.php</div>
							<div class="index-item-description">Set the UID on the primary component.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetUnion</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetUnion">Browser::SetUnion()</a> in classBrowser.php</div>
							<div class="index-item-description">Set a Union SQL statement.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodSetWhere">Editor::SetWhere()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SetWhere</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodSetWhere">Browser::SetWhere()</a> in classBrowser.php</div>
							<div class="index-item-description">Set the SQL Where clause to a specific value.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SimpleForm</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodSimpleForm">EntryForm::SimpleForm()</a> in DataEntry.php</div>
							<div class="index-item-description">Set the line format to an extremely simple CSS based prompt / field layout.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			SinglePart
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/SinglePart.html">SinglePart</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Size</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#methodSize">MenuSet::Size()</a> in MenuSet.php</div>
							<div class="index-item-description">Find out how many options the menu has.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SqlDateFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSqlDateFormat">iCalendar::SqlDateFormat()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SqlDurationFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSqlDurationFormat">iCalendar::SqlDurationFormat()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SqlUTCFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodSqlUTCFormat">iCalendar::SqlUTCFormat()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">sql_from_object</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/_DataUpdate.php.html#functionsql_from_object">sql_from_object()</a> in DataUpdate.php</div>
							<div class="index-item-description">Build SQL INSERT/UPDATE statement from an associative array of fieldnames =&gt; values.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">sql_from_post</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/_DataUpdate.php.html#functionsql_from_post">sql_from_post()</a> in DataUpdate.php</div>
							<div class="index-item-description">Build SQL INSERT/UPDATE statement from the $_POST associative array</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">StartFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodStartFilter">vCalendar::StartFilter()</a> in vCalendar.php</div>
							<div class="index-item-description">Test a PROP-FILTER or COMP-FILTER and return a true/false  COMP-FILTER (is-defined | is-not-defined | (time-range?, prop-filter*, comp-filter*))  PROP-FILTER (is-defined | is-not-defined | ((time-range | text-match)?, param-filter*))</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">StartForm</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodStartForm">EntryForm::StartForm()</a> in DataEntry.php</div>
							<div class="index-item-description">Start the actual HTML form.  Return the fragment to do this.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">SubmitButton</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodSubmitButton">EntryForm::SubmitButton()</a> in DataEntry.php</div>
							<div class="index-item-description">A utility function for a submit button within a data entry table</div>
					</dd>
		</dl>
	<a name="t"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">t</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$tagname</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#var$tagname">XMLElement::$tagname</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Template</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Template">Editor::$Template</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Title</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Title">Browser::$Title</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Title</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Title">Editor::$Title</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$TotalFuncs</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$TotalFuncs">Browser::$TotalFuncs</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Totals</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Totals">Browser::$Totals</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Translatable</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Translatable">BrowserColumn::$Translatable</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$translate_all</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#var$translate_all">AwlDatabase::$translate_all</a> in AwlDatabase.php</div>
							<div class="index-item-description">Holds whether we are translating all statements.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$txnstate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#var$txnstate">AwlDatabase::$txnstate</a> in AwlDatabase.php</div>
							<div class="index-item-description">Holds the state of the transaction 0 = not started, 1 = in progress, -1 = error pending rollback/commit</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Type</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/BrowserColumn.html#var$Type">BrowserColumn::$Type</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$type</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#var$type">vComponent::$type</a> in vComponent.php</div>
							<div class="index-item-description">The type of this component, such as 'VEVENT', 'VTODO', 'VTIMEZONE', 'VCARD', etc.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TempLineFormat</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#methodTempLineFormat">EntryForm::TempLineFormat()</a> in DataEntry.php</div>
							<div class="index-item-description">Set the line format to a temporary one that we can revert from.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TestFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodTestFilter">vComponent::TestFilter()</a> in vComponent.php</div>
							<div class="index-item-description">Test a PROP-FILTER or COMP-FILTER and return a true/false  COMP-FILTER (is-defined | is-not-defined | (time-range?, prop-filter*, comp-filter*))  PROP-FILTER (is-defined | is-not-defined | ((time-range | text-match)?, param-filter*))</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TestFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalendar.html#methodTestFilter">iCalendar::TestFilter()</a> in iCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TestFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodTestFilter">vProperty::TestFilter()</a> in vComponent.php</div>
							<div class="index-item-description">Test a PROP-FILTER or PARAM-FILTER and return a true/false  PROP-FILTER (is-defined | is-not-defined | ((time-range | text-match)?, param-filter*))  PARAM-FILTER (is-defined | is-not-defined | ((time-range | text-match)?, param-filter*))</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TestParamFilter</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodTestParamFilter">vProperty::TestParamFilter()</a> in vComponent.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TextMatch</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodTextMatch">vProperty::TextMatch()</a> in vComponent.php</div>
							<div class="index-item-description">Test if our value contains a string</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TextMatch</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodTextMatch">iCalProp::TextMatch()</a> in iCalendar.php</div>
							<div class="index-item-description">Test if our value contains a string</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Title</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodTitle">Editor::Title()</a> in classEditor.php</div>
							<div class="index-item-description">Accessor for the Title for the browse, which could set the title also.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Title</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodTitle">Browser::Title()</a> in classBrowser.php</div>
							<div class="index-item-description">Accessor for the Title for the browse, which could set the title also.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">trace_bug</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functiontrace_bug">trace_bug()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Not as sever as a fatal() call, but we want to log and trace it</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TransactionState</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#methodTransactionState">AwlQuery::TransactionState()</a> in AwlQuery.php</div>
							<div class="index-item-description">Returns the current state of a transaction, indicating if we have begun a transaction, whether the transaction  has failed, or if we are not in a transaction.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TransactionState</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodTransactionState">AwlDatabase::TransactionState()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Returns the current state of a transaction, indicating if we have begun a transaction, whether the transaction  has failed, or if we are not in a transaction.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">translate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Translation/_Translation.php.html#functiontranslate">translate()</a> in Translation.php</div>
							<div class="index-item-description">Convert a string in English to whatever this user's locale is</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TranslateAll</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDatabase.html#methodTranslateAll">AwlDatabase::TranslateAll()</a> in AwlDatabase.php</div>
							<div class="index-item-description">Switches on or off the processing flag controlling whether subsequent calls to AwlDatabase::Prepare are translated  as if PrepareTranslated() had been called.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">TranslateSQL</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#methodTranslateSQL">AwlDBDialect::TranslateSQL()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Translates the given SQL string into a form that will hopefully work for this database dialect. This hook  is intended to be used by developers to provide support for differences in database operation by translating  the query string in an arbitrary way, such as through a file or database lookup.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">Translation.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Translation/_Translation.php.html">Translation.php</a> in Translation.php</div>
					</dd>
		</dl>
	<a name="u"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">u</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Union</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Union">Browser::$Union</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$username</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$username">Session::$username</a> in Session.php</div>
							<div class="index-item-description">The user's username used to log in.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$user_no</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#var$user_no">Session::$user_no</a> in Session.php</div>
							<div class="index-item-description">The user_no of the logged in user.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Undefine</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodUndefine">DBRecord::Undefine()</a> in DataUpdate.php</div>
							<div class="index-item-description">Unsets a single field from the record</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">UnFetch</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#methodUnFetch">PgQuery::UnFetch()</a> in PgQuery.php</div>
							<div class="index-item-description">Set row counter back one</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">UnwrapComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodUnwrapComponent">iCalComponent::UnwrapComponent()</a> in iCalendar.php</div>
							<div class="index-item-description">This unescapes the (CRLF + linear space) wrapping specified in RFC2445. According  to RFC2445 we should always end with CRLF but the CalDAV spec says that normalising  XML parsers often muck with it and may remove the CR.  We accept either case.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">UnwrapComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodUnwrapComponent">vComponent::UnwrapComponent()</a> in vComponent.php</div>
							<div class="index-item-description">This unescapes the (CRLF + linear space) wrapping specified in RFC2445. According  to RFC2445 we should always end with CRLF but the CalDAV spec says that normalising  XML parsers often muck with it and may remove the CR.  We accept either case.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">UpdateAttendeeStatus</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodUpdateAttendeeStatus">vCalendar::UpdateAttendeeStatus()</a> in vCalendar.php</div>
							<div class="index-item-description">Update the attendees of this VEVENT/VTODO</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">UpdateOrganizerStatus</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#methodUpdateOrganizerStatus">vCalendar::UpdateOrganizerStatus()</a> in vCalendar.php</div>
							<div class="index-item-description">Update the ORGANIZER of this VEVENT/VTODO</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			User
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html">User</a> in User.php</div>
							<div class="index-item-description">A class to handle reading, writing, viewing, editing and validating  usr records.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">User</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodUser">User::User()</a> in User.php</div>
							<div class="index-item-description">The constructor initialises a new record, potentially reading it from the database.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">User.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/_User.php.html">User.php</a> in User.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">uuid</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Utilities/_AWLUtilities.php.html#functionuuid">uuid()</a> in AWLUtilities.php</div>
							<div class="index-item-description">Generates a Universally Unique IDentifier, version 4.</div>
					</dd>
		</dl>
	<a name="v"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">v</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Value</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#var$Value">EditorField::$Value</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Validate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodValidate">Validation::Validate()</a> in Validation.php</div>
							<div class="index-item-description">Validates the form according to it's rules.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Validate</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodValidate">User::Validate()</a> in User.php</div>
							<div class="index-item-description">Validate the information the user submitted</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			Validation
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html">Validation</a> in Validation.php</div>
							<div class="index-item-description">Rules used for validation of form fields.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">Validation</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodValidation">Validation::Validation()</a> in Validation.php</div>
							<div class="index-item-description">Initialise a new validation.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">Validation.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/_Validation.php.html">Validation.php</a> in Validation.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">valid_date_format</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodvalid_date_format">Validation::valid_date_format()</a> in Validation.php</div>
							<div class="index-item-description">Check that the given string matches the user's date format.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">valid_email_format</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Validation/Validation.html#methodvalid_email_format">Validation::valid_email_format()</a> in Validation.php</div>
							<div class="index-item-description">Check that the given string is a valid email address.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Value</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalProp.html#methodValue">iCalProp::Value()</a> in iCalendar.php</div>
							<div class="index-item-description">Get/Set the content of the property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Value</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#methodValue">vProperty::Value()</a> in vComponent.php</div>
							<div class="index-item-description">Get/Set the content of the property</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Value</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodValue">Editor::Value()</a> in classEditor.php</div>
							<div class="index-item-description">Gets the value of a field in the record currently assigned to this editor.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">ValueReplacement</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#methodValueReplacement">Browser::ValueReplacement()</a> in classBrowser.php</div>
							<div class="index-item-description">Return values from the current row for replacing into a template.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			vCalendar
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html">vCalendar</a> in vCalendar.php</div>
							<div class="index-item-description">A Class for representing components within an vComponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">VCalendar</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodVCalendar">iCalComponent::VCalendar()</a> in iCalendar.php</div>
							<div class="index-item-description">Apply standard properties for a VCalendar</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">vCalendar.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/_vCalendar.php.html">vCalendar.php</a> in vCalendar.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			vComponent
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html">vComponent</a> in vComponent.php</div>
							<div class="index-item-description">A Class for representing components within an vComponent</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">vComponent.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/_vComponent.php.html">vComponent.php</a> in vComponent.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			vProperty
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html">vProperty</a> in vComponent.php</div>
							<div class="index-item-description">A Class for representing properties within a vComponent (VCALENDAR or VCARD)</div>
					</dd>
		</dl>
	<a name="w"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">w</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Where</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#var$Where">Editor::$Where</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$Where</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Browser/Browser.html#var$Where">Browser::$Where</a> in classBrowser.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">WhereNewRecord</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodWhereNewRecord">Editor::WhereNewRecord()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">WrapComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#methodWrapComponent">vComponent::WrapComponent()</a> in vComponent.php</div>
							<div class="index-item-description">This imposes the (CRLF + linear space) wrapping specified in RFC2445. According  to RFC2445 we should always end with CRLF but the CalDAV spec says that normalising  XML parsers often muck with it and may remove the CR.  We output RFC2445 compliance.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">WrapComponent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/iCalendar/iCalComponent.html#methodWrapComponent">iCalComponent::WrapComponent()</a> in iCalendar.php</div>
							<div class="index-item-description">This imposes the (CRLF + linear space) wrapping specified in RFC2445. According  to RFC2445 we should always end with CRLF but the CalDAV spec says that normalising  XML parsers often muck with it and may remove the CR.  We output RFC2445 compliance.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Write</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodWrite">User::Write()</a> in User.php</div>
							<div class="index-item-description">Write the User record.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Write</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#methodWrite">DBRecord::Write()</a> in DataUpdate.php</div>
							<div class="index-item-description">To write the record to the database</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">Write</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#methodWrite">Editor::Write()</a> in classEditor.php</div>
							<div class="index-item-description">Write the record</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">WriteRoles</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/User/User.html#methodWriteRoles">User::WriteRoles()</a> in User.php</div>
							<div class="index-item-description">Write the roles associated with the user</div>
					</dd>
		</dl>
	<a name="x"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">x</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$xmlns</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#var$xmlns">XMLElement::$xmlns</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			XMLDocument
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/XMLDocument.html">XMLDocument</a> in XMLDocument.php</div>
							<div class="index-item-description">A class for XML Documents which will contain namespaced XML elements</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">XMLDocument.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLDocument/_XMLDocument.php.html">XMLDocument.php</a> in XMLDocument.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Class.png" alt="Class" title="Class" />
			XMLElement
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html">XMLElement</a> in XMLElement.php</div>
							<div class="index-item-description">A class for XML elements which may have attributes, or contain  other XML sub-elements</div>
					</dd>
			<dt class="field">
						<img src="media/images/Page.png" alt="Page" title="Page" />
			<span class="include-title">XMLElement.php</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/_XMLElement.php.html">XMLElement.php</a> in XMLElement.php</div>
					</dd>
		</dl>
	<a name="_"></a>
	<div class="index-letter-section">
		<div style="float: left" class="index-letter-title">_</div>
		<div style="float: right"><a href="#top">top</a></div>
		<div style="clear: both"></div>
	</div>
	<dl>
			<dt class="field">
						<img src="media/images/Variable.png" alt="Variable" title="Variable" />
			<span class="var-title">$_parent</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#var$_parent">XMLElement::$_parent</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">_awl_connect_configured_database</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/_AwlQuery.php.html#function_awl_connect_configured_database">_awl_connect_configured_database()</a> in AwlQuery.php</div>
							<div class="index-item-description">Connect to the database defined in the $c-&gt;db_connect[] (or $c-&gt;pg_connect) arrays</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_BuildFieldList</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#method_BuildFieldList">DBRecord::_BuildFieldList()</a> in DataUpdate.php</div>
							<div class="index-item-description">Builds a field target list</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_BuildJoinClause</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#method_BuildJoinClause">DBRecord::_BuildJoinClause()</a> in DataUpdate.php</div>
							<div class="index-item-description">Builds a table join clause</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_BuildWhereClause</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataUpdate/DBRecord.html#method_BuildWhereClause">DBRecord::_BuildWhereClause()</a> in DataUpdate.php</div>
							<div class="index-item-description">Builds a where clause to match the supplied keys</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_CheckLogin</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#method_CheckLogin">Session::_CheckLogin()</a> in Session.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_CheckLogout</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Session/Session.html#method_CheckLogout">Session::_CheckLogout()</a> in Session.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Function.png" alt="Function" title="Function" />
			<span class="method-title">_CompareMenuSequence</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/_MenuSet.php.html#function_CompareMenuSequence">_CompareMenuSequence()</a> in MenuSet.php</div>
							<div class="index-item-description">_CompareMenuSequence is used in sorting the menu options into the sequence order</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_CompareSequence</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#method_CompareSequence">MenuSet::_CompareSequence()</a> in MenuSet.php</div>
							<div class="index-item-description">_CompareSequence is used in sorting the menu options into the sequence order</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_HasActive</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#method_HasActive">MenuSet::_HasActive()</a> in MenuSet.php</div>
							<div class="index-item-description">Does the menu have any options that are active.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_log_error</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#method_log_error">PgQuery::_log_error()</a> in PgQuery.php</div>
							<div class="index-item-description">Log error, optionally with file and line location of the caller.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_log_query</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#method_log_query">AwlQuery::_log_query()</a> in AwlQuery.php</div>
							<div class="index-item-description">Log query, optionally with file and line location of the caller.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_OptionExists</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/MenuSet/MenuSet.html#method_OptionExists">MenuSet::_OptionExists()</a> in MenuSet.php</div>
							<div class="index-item-description">See if a menu already has this option</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">_ParseAttributes</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/DataEntry/EntryForm.html#method_ParseAttributes">EntryForm::_ParseAttributes()</a> in DataEntry.php</div>
							<div class="index-item-description">Internal function for parsing the type extra on a field.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vCalendar/vCalendar.html#method__construct">vCalendar::__construct()</a> in vCalendar.php</div>
							<div class="index-item-description">Constructor.  If a string is passed it will be parsed as if it was an iCalendar object,  otherwise a new vCalendar will be initialised with basic content. If an array of key value  pairs is provided they will also be used as top-level properties.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlUpgrader.html#method__construct">AwlUpgrader::__construct()</a> in AwlUpgrader.php</div>
							<div class="index-item-description">Constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#method__construct">vComponent::__construct()</a> in vComponent.php</div>
							<div class="index-item-description">A basic constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#method__construct">vProperty::__construct()</a> in vComponent.php</div>
							<div class="index-item-description">The constructor parses the incoming string, which is formatted as per RFC2445 as a    propname[;param1=pval1[; ... ]]:propvalue  however we allow ourselves to assume that the RFC2445 content unescaping has already  happened when vComponent::ParseFrom() called vComponent::UnwrapComponent().</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#method__construct">XMLElement::__construct()</a> in XMLElement.php</div>
							<div class="index-item-description">Constructor - nothing fancy as yet.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlDBDialect.html#method__construct">AwlDBDialect::__construct()</a> in AwlDBDialect.php</div>
							<div class="index-item-description">Parses the connection string to ascertain the database dialect. Returns true if the dialect is supported  and fails if the dialect is not supported. All code to support any given database should be within in an  external include.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/EMail/EMail.html#method__construct">EMail::__construct()</a> in EMail.php</div>
							<div class="index-item-description">Create the e-mail, optionally assigning the subject and primary recipient.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlDatabase/AwlQuery.html#method__construct">AwlQuery::__construct()</a> in AwlQuery.php</div>
							<div class="index-item-description">Constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/Editor.html#method__construct">Editor::__construct()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/AwlCache.html#method__construct">AwlCache::__construct()</a> in AwlCache.php</div>
							<div class="index-item-description">Initialise the cache connection. We use getpid() to give us a persistent connection.</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/classEditor/EditorField.html#method__construct">EditorField::__construct()</a> in classEditor.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/Multipart.html#method__construct">Multipart::__construct()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/PgQuery/PgQuery.html#method__construct">PgQuery::__construct()</a> in PgQuery.php</div>
							<div class="index-item-description">Constructor</div>
					</dd>
			<dt class="field">
						<img src="media/images/Constructor.png" alt="Method" title="Method" />
			<span class="method-title">__construct</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/SinglePart.html#method__construct">SinglePart::__construct()</a> in Multipart.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">__tostring</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/XMLElement/XMLElement.html#method__tostring">XMLElement::__tostring()</a> in XMLElement.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">__toString</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vProperty.html#method__toString">vProperty::__toString()</a> in vComponent.php</div>
					</dd>
			<dt class="field">
						<img src="media/images/Method.png" alt="Method" title="Method" />
			<span class="method-title">__toString</span>
					</dt>
		<dd class="index-item-body">
			<div class="index-item-details"><a href="awl/vComponent/vComponent.html#method__toString">vComponent::__toString()</a> in vComponent.php</div>
					</dd>
		</dl>

<div class="index-letter-menu">
	<a class="index-letter" href="elementindex.html#a">a</a>
	<a class="index-letter" href="elementindex.html#b">b</a>
	<a class="index-letter" href="elementindex.html#c">c</a>
	<a class="index-letter" href="elementindex.html#d">d</a>
	<a class="index-letter" href="elementindex.html#e">e</a>
	<a class="index-letter" href="elementindex.html#f">f</a>
	<a class="index-letter" href="elementindex.html#g">g</a>
	<a class="index-letter" href="elementindex.html#h">h</a>
	<a class="index-letter" href="elementindex.html#i">i</a>
	<a class="index-letter" href="elementindex.html#j">j</a>
	<a class="index-letter" href="elementindex.html#l">l</a>
	<a class="index-letter" href="elementindex.html#m">m</a>
	<a class="index-letter" href="elementindex.html#n">n</a>
	<a class="index-letter" href="elementindex.html#o">o</a>
	<a class="index-letter" href="elementindex.html#p">p</a>
	<a class="index-letter" href="elementindex.html#q">q</a>
	<a class="index-letter" href="elementindex.html#r">r</a>
	<a class="index-letter" href="elementindex.html#s">s</a>
	<a class="index-letter" href="elementindex.html#t">t</a>
	<a class="index-letter" href="elementindex.html#u">u</a>
	<a class="index-letter" href="elementindex.html#v">v</a>
	<a class="index-letter" href="elementindex.html#w">w</a>
	<a class="index-letter" href="elementindex.html#x">x</a>
	<a class="index-letter" href="elementindex.html#_">_</a>
</div>
Warning: strftime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /usr/share/php/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/Smarty_Compiler.class.php on line 370
	</body>
</html>