summaryrefslogtreecommitdiff
path: root/_darcs/tentative_pristine
blob: 4a4beb36cf9e9266453f348f9411fa1b2c624e02 (plain)
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
hunk ./actions/accesstoken.php 25
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/all.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/all.php 57
-    function show_header($user) {
+    function show_header($user)
+    {
hunk ./actions/all.php 66
-    function show_top($user) {
+    function show_top($user)
+    {
hunk ./actions/all.php 82
-    function show_notices($user) {
+    function show_notices($user)
+    {
hunk ./actions/allrss.php 30
-    function init() {
+    function init()
+    {
hunk ./actions/allrss.php 43
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/allrss.php 57
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/allrss.php 71
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/api.php 30
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/api.php 83
-    function process_command() {
+    function process_command()
+    {
hunk ./actions/api.php 113
-    function requires_auth() {
+    function requires_auth()
+    {
hunk ./actions/api.php 150
-    function show_basic_auth_error() {
+    function show_basic_auth_error()
+    {
hunk ./actions/api.php 173
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/avatarbynickname.php 23
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/block.php 26
-    function prepare($args) {
+    function prepare($args)
+    {
hunk ./actions/block.php 60
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/block.php 76
-    function are_you_sure_form() {
+    function are_you_sure_form()
+    {
hunk ./actions/block.php 115
-    function block_profile() {
+    function block_profile()
+    {
hunk ./actions/confirmaddress.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/deletenotice.php 25
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/deletenotice.php 37
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/deletenotice.php 42
-    function get_title() {
+    function get_title()
+    {
hunk ./actions/deletenotice.php 47
-    function show_form($error=null) {
+    function show_form($error=null)
+    {
hunk ./actions/deletenotice.php 74
-    function delete_notice() {
+    function delete_notice()
+    {
hunk ./actions/deleteprofile.php 23
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/deleteprofile.php 36
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/deleteprofile.php 41
-    function form_header($title, $msg=null, $success=false) {
+    function form_header($title, $msg=null, $success=false)
+    {
hunk ./actions/deleteprofile.php 49
-    function show_feeds_list($feeds) {
+    function show_feeds_list($feeds)
+    {
hunk ./actions/deleteprofile.php 63
-    function common_feed_item($feed) {
+    function common_feed_item($feed)
+    {
hunk ./actions/deleteprofile.php 92
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/deleteprofile.php 100
-    function show_confirm_delete_form() {
+    function show_confirm_delete_form()
+    {
hunk ./actions/deleteprofile.php 130
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/deleteprofile.php 145
-    function delete_account() {
+    function delete_account()
+    {
hunk ./actions/deleteprofile.php 231
-    function show_top($arr) {
+    function show_top($arr)
+    {
hunk ./actions/deleteprofile.php 247
-    function settings_menu() {
+    function settings_menu()
+    {
hunk ./actions/disfavor.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/doc.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/emailsettings.php 26
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/emailsettings.php 31
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/emailsettings.php 115
-    function get_confirmation() {
+    function get_confirmation()
+    {
hunk ./actions/emailsettings.php 128
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/emailsettings.php 155
-    function save_preferences() {
+    function save_preferences()
+    {
hunk ./actions/emailsettings.php 193
-    function add_address() {
+    function add_address()
+    {
hunk ./actions/emailsettings.php 245
-    function cancel_confirmation() {
+    function cancel_confirmation()
+    {
hunk ./actions/emailsettings.php 269
-    function remove_address() {
+    function remove_address()
+    {
hunk ./actions/emailsettings.php 296
-    function remove_incoming() {
+    function remove_incoming()
+    {
hunk ./actions/emailsettings.php 316
-    function new_incoming() {
+    function new_incoming()
+    {
hunk ./actions/emailsettings.php 331
-    function email_exists($email) {
+    function email_exists($email)
+    {
hunk ./actions/facebookhome.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/facebookhome.php 33
-    function login() {
+    function login()
+    {
hunk ./actions/facebookhome.php 94
-    function show_home($facebook, $fbuid, $user) {
+    function show_home($facebook, $fbuid, $user)
+    {
hunk ./actions/facebookhome.php 105
-    function show_notices($user) {
+    function show_notices($user)
+    {
hunk ./actions/facebookinvite.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/facebookinvite.php 33
-    function display() {
+    function display()
+    {
hunk ./actions/facebookremove.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/facebooksettings.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/facebooksettings.php 33
-    function display() {
+    function display()
+    {
hunk ./actions/favor.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/favor.php 84
-    function notify($fave, $notice, $user) {
+    function notify($fave, $notice, $user)
+    {
hunk ./actions/favorited.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/favorited.php 41
-    function show_top() {
+    function show_top()
+    {
hunk ./actions/favorited.php 51
-    function show_header() {
+    function show_header()
+    {
hunk ./actions/favorited.php 56
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/favorited.php 61
-    function show_notices($page) {
+    function show_notices($page)
+    {
hunk ./actions/favoritesrss.php 30
-    function init() {
+    function init()
+    {
hunk ./actions/favoritesrss.php 43
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/favoritesrss.php 59
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/favoritesrss.php 73
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/featured.php 27
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/featured.php 42
-    function show_top() {
+    function show_top()
+    {
hunk ./actions/featured.php 52
-    function show_header() {
+    function show_header()
+    {
hunk ./actions/featured.php 56
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/featured.php 61
-    function show_notices($page) {
+    function show_notices($page)
+    {
hunk ./actions/finishaddopenid.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/finishaddopenid.php 36
-    function try_login() {
+    function try_login()
+    {
hunk ./actions/finishaddopenid.php 100
-    function message($msg) {
+    function message($msg)
+    {
hunk ./actions/finishimmediate.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/finishimmediate.php 57
-    function go_backto() {
+    function go_backto()
+    {
hunk ./actions/finishopenidlogin.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/finishopenidlogin.php 56
-    function show_top($error=null) {
+    function show_top($error=null)
+    {
hunk ./actions/finishopenidlogin.php 67
-    function show_form($error=null, $username=null) {
+    function show_form($error=null, $username=null)
+    {
hunk ./actions/finishopenidlogin.php 105
-    function try_login() {
+    function try_login()
+    {
hunk ./actions/finishopenidlogin.php 153
-    function message($msg) {
+    function message($msg)
+    {
hunk ./actions/finishopenidlogin.php 160
-    function save_values($display, $canonical, $sreg) {
+    function save_values($display, $canonical, $sreg)
+    {
hunk ./actions/finishopenidlogin.php 168
-    function get_saved_values() {
+    function get_saved_values()
+    {
hunk ./actions/finishopenidlogin.php 175
-    function create_new_user() {
+    function create_new_user()
+    {
hunk ./actions/finishopenidlogin.php 258
-    function connect_user() {
+    function connect_user()
+    {
hunk ./actions/finishopenidlogin.php 298
-    function go_home($nickname) {
+    function go_home($nickname)
+    {
hunk ./actions/finishopenidlogin.php 312
-    function best_new_nickname($display, $sreg) {
+    function best_new_nickname($display, $sreg)
+    {
hunk ./actions/finishopenidlogin.php 346
-    function is_new_nickname($str) {
+    function is_new_nickname($str)
+    {
hunk ./actions/finishopenidlogin.php 362
-    function openid_to_nickname($openid) {
+    function openid_to_nickname($openid)
+    {
hunk ./actions/finishopenidlogin.php 376
-    function url_to_nickname($openid) {
+    function url_to_nickname($openid)
+    {
hunk ./actions/finishopenidlogin.php 423
-    function xri_to_nickname($xri) {
+    function xri_to_nickname($xri)
+    {
hunk ./actions/finishopenidlogin.php 437
-    function xri_base($xri) {
+    function xri_base($xri)
+    {
hunk ./actions/finishopenidlogin.php 448
-    function nicknamize($str) {
+    function nicknamize($str)
+    {
hunk ./actions/finishremotesubscribe.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/finishremotesubscribe.php 235
-    function add_avatar($profile, $url) {
+    function add_avatar($profile, $url)
+    {
hunk ./actions/finishremotesubscribe.php 242
-    function access_token($omb) {
+    function access_token($omb)
+    {
hunk ./actions/foaf.php 28
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/foaf.php 33
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/foaf.php 184
-    function show_ppd($foaf_url, $person_uri) {
+    function show_ppd($foaf_url, $person_uri)
+    {
hunk ./actions/foaf.php 192
-    function show_microblogging_account($profile, $service=null) {
+    function show_microblogging_account($profile, $service=null)
+    {
hunk ./actions/imsettings.php 27
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/imsettings.php 32
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/imsettings.php 90
-    function get_confirmation() {
+    function get_confirmation()
+    {
hunk ./actions/imsettings.php 103
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/imsettings.php 126
-    function save_preferences() {
+    function save_preferences()
+    {
hunk ./actions/imsettings.php 160
-    function add_address() {
+    function add_address()
+    {
hunk ./actions/imsettings.php 216
-    function cancel_confirmation() {
+    function cancel_confirmation()
+    {
hunk ./actions/imsettings.php 240
-    function remove_address() {
+    function remove_address()
+    {
hunk ./actions/imsettings.php 269
-    function jabber_exists($jabber) {
+    function jabber_exists($jabber)
+    {
hunk ./actions/invite.php 24
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/invite.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/invite.php 43
-    function send_invitations() {
+    function send_invitations()
+    {
hunk ./actions/invite.php 118
-    function show_top($error=null) {
+    function show_top($error=null)
+    {
hunk ./actions/invite.php 130
-    function show_form($error=null) {
+    function show_form($error=null)
+    {
hunk ./actions/invite.php 157
-    function send_invitation($email, $user, $personal) {
+    function send_invitation($email, $user, $personal)
+    {
hunk ./actions/login.php 24
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/login.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/login.php 41
-    function check_login() {
+    function check_login()
+    {
hunk ./actions/login.php 106
-    function show_form($error=null) {
+    function show_form($error=null)
+    {
hunk ./actions/login.php 127
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/login.php 146
-    function show_top($error=null) {
+    function show_top($error=null)
+    {
hunk ./actions/logout.php 26
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/logout.php 31
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/microsummary.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/newmessage.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/newmessage.php 37
-    function save_new_message() {
+    function save_new_message()
+    {
hunk ./actions/newmessage.php 94
-    function show_top($params) {
+    function show_top($params)
+    {
hunk ./actions/newmessage.php 104
-    function show_form($msg=null) {
+    function show_form($msg=null)
+    {
hunk ./actions/newmessage.php 135
-    function notify($from, $to, $message) {
+    function notify($from, $to, $message)
+    {
hunk ./actions/newnotice.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/newnotice.php 47
-    function save_new_notice() {
+    function save_new_notice()
+    {
hunk ./actions/newnotice.php 115
-    function ajax_error_msg($msg) {
+    function ajax_error_msg($msg)
+    {
hunk ./actions/newnotice.php 127
-    function show_top($content=null) {
+    function show_top($content=null)
+    {
hunk ./actions/newnotice.php 132
-    function show_form($msg=null) {
+    function show_form($msg=null)
+    {
hunk ./actions/newnotice.php 154
-    function show_notice($notice) {
+    function show_notice($notice)
+    {
hunk ./actions/noticesearch.php 28
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/noticesearch.php 33
-    function get_title() {
+    function get_title()
+    {
hunk ./actions/noticesearch.php 38
-    function show_results($q, $page) {
+    function show_results($q, $page)
+    {
hunk ./actions/noticesearch.php 78
-    function show_header($arr) {
+    function show_header($arr)
+    {
hunk ./actions/noticesearch.php 94
-    function show_notice($notice, $terms) {
+    function show_notice($notice, $terms)
+    {
hunk ./actions/noticesearch.php 157
-    function highlight($text, $terms) {
+    function highlight($text, $terms)
+    {
hunk ./actions/noticesearchrss.php 28
-    function init() {
+    function init()
+    {
hunk ./actions/noticesearchrss.php 33
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/noticesearchrss.php 59
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/noticesearchrss.php 70
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/nudge.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/nudge.php 75
-    function notify($user, $other) {
+    function notify($user, $other)
+    {
hunk ./actions/openidlogin.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/openidlogin.php 60
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/openidlogin.php 65
-    function show_top($error=null) {
+    function show_top($error=null)
+    {
hunk ./actions/openidlogin.php 78
-    function show_form($error=null, $openid_url) {
+    function show_form($error=null, $openid_url)
+    {
hunk ./actions/openidsettings.php 27
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/openidsettings.php 34
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/openidsettings.php 121
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/openidsettings.php 142
-    function remove_openid() {
+    function remove_openid()
+    {
hunk ./actions/opensearch.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/othersettings.php 26
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/othersettings.php 31
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/othersettings.php 68
-    function show_feeds_list($feeds) {
+    function show_feeds_list($feeds)
+    {
hunk ./actions/othersettings.php 82
-    function common_feed_item($feed) {
+    function common_feed_item($feed)
+    {
hunk ./actions/othersettings.php 138
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/othersettings.php 155
-    function save_preferences() {
+    function save_preferences()
+    {
hunk ./actions/peoplesearch.php 27
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/peoplesearch.php 33
-    function get_title() {
+    function get_title()
+    {
hunk ./actions/peoplesearch.php 38
-    function show_results($q, $page) {
+    function show_results($q, $page)
+    {
hunk ./actions/peoplesearch.php 77
-    function __construct($profile, $terms) {
+    function __construct($profile, $terms)
+    {
hunk ./actions/peoplesearch.php 85
-    function highlight($text) {
+    function highlight($text)
+    {
hunk ./actions/peopletag.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/peopletag.php 54
-    function show_people($tag, $page) {
+    function show_people($tag, $page)
+    {
hunk ./actions/peopletag.php 88
-    function show_top($tag) {
+    function show_top($tag)
+    {
hunk ./actions/peopletag.php 99
-    function get_title() {
+    function get_title()
+    {
hunk ./actions/peopletag.php 104
-    function show_header($arr) {
+    function show_header($arr)
+    {
hunk ./actions/postnotice.php 25
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/postnotice.php 43
-    function save_notice(&$req, &$consumer, &$token) {
+    function save_notice(&$req, &$consumer, &$token)
+    {
hunk ./actions/profilesettings.php 26
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/profilesettings.php 32
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/profilesettings.php 45
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/profilesettings.php 66
-    function show_settings_form() {
+    function show_settings_form()
+    {
hunk ./actions/profilesettings.php 117
-    function show_avatar_form() {
+    function show_avatar_form()
+    {
hunk ./actions/profilesettings.php 176
-    function show_password_form() {
+    function show_password_form()
+    {
hunk ./actions/profilesettings.php 199
-    function save_profile() {
+    function save_profile()
+    {
hunk ./actions/profilesettings.php 347
-    function upload_avatar() {
+    function upload_avatar()
+    {
hunk ./actions/profilesettings.php 395
-    function nickname_exists($nickname) {
+    function nickname_exists($nickname)
+    {
hunk ./actions/profilesettings.php 406
-    function change_password() {
+    function change_password()
+    {
hunk ./actions/public.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/public.php 45
-    function show_top() {
+    function show_top()
+    {
hunk ./actions/public.php 69
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/public.php 76
-    function show_header() {
+    function show_header()
+    {
hunk ./actions/public.php 87
-    function show_notices($page) {
+    function show_notices($page)
+    {
hunk ./actions/publicrss.php 28
-    function init() {
+    function init()
+    {
hunk ./actions/publicrss.php 33
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/publicrss.php 47
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/publicrss.php 57
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/publicxrds.php 28
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/publicxrds.php 33
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/publicxrds.php 60
-    function show_service($type, $uri, $params=null, $sigs=null, $localId=null) {
+    function show_service($type, $uri, $params=null, $sigs=null, $localId=null)
+    {
hunk ./actions/recoverpassword.php 28
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/recoverpassword.php 51
-    function check_code() {
+    function check_code()
+    {
hunk ./actions/recoverpassword.php 118
-    function set_temp_user(&$user) {
+    function set_temp_user(&$user)
+    {
hunk ./actions/recoverpassword.php 124
-    function get_temp_user() {
+    function get_temp_user()
+    {
hunk ./actions/recoverpassword.php 134
-    function clear_temp_user() {
+    function clear_temp_user()
+    {
hunk ./actions/recoverpassword.php 140
-    function show_top($msg=null) {
+    function show_top($msg=null)
+    {
hunk ./actions/recoverpassword.php 155
-    function show_password_top($msg=null) {
+    function show_password_top($msg=null)
+    {
hunk ./actions/recoverpassword.php 166
-    function show_form($msg=null) {
+    function show_form($msg=null)
+    {
hunk ./actions/recoverpassword.php 184
-    function show_password_form($msg=null) {
+    function show_password_form($msg=null)
+    {
hunk ./actions/recoverpassword.php 203
-    function recover_password() {
+    function recover_password()
+    {
hunk ./actions/recoverpassword.php 287
-    function reset_password() {
+    function reset_password()
+    {
hunk ./actions/register.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/register.php 39
-    function try_register() {
+    function try_register()
+    {
hunk ./actions/register.php 138
-    function nickname_exists($nickname) {
+    function nickname_exists($nickname)
+    {
hunk ./actions/register.php 146
-    function email_exists($email) {
+    function email_exists($email)
+    {
hunk ./actions/register.php 156
-    function show_top($error=null) {
+    function show_top($error=null)
+    {
hunk ./actions/register.php 172
-    function show_form($error=null) {
+    function show_form($error=null)
+    {
hunk ./actions/register.php 245
-    function show_success() {
+    function show_success()
+    {
hunk ./actions/remotesubscribe.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/remotesubscribe.php 51
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/remotesubscribe.php 60
-    function show_top($err=null) {
+    function show_top($err=null)
+    {
hunk ./actions/remotesubscribe.php 73
-    function show_form($err=null) {
+    function show_form($err=null)
+    {
hunk ./actions/remotesubscribe.php 93
-    function remote_subscription() {
+    function remote_subscription()
+    {
hunk ./actions/remotesubscribe.php 160
-    function get_user() {
+    function get_user()
+    {
hunk ./actions/remotesubscribe.php 170
-    function getOmb($xrds) {
+    function getOmb($xrds)
+    {
hunk ./actions/remotesubscribe.php 231
-    function getXRD($main_service, $main_xrds) {
+    function getXRD($main_service, $main_xrds)
+    {
hunk ./actions/remotesubscribe.php 253
-    function addServices($xrd, $types, &$omb) {
+    function addServices($xrd, $types, &$omb)
+    {
hunk ./actions/remotesubscribe.php 267
-    function request_token($omb) {
+    function request_token($omb)
+    {
hunk ./actions/remotesubscribe.php 312
-    function request_authorization($user, $omb, $token, $secret) {
+    function request_authorization($user, $omb, $token, $secret)
+    {
hunk ./actions/remotesubscribe.php 394
-    function make_nonce() {
+    function make_nonce()
+    {
hunk ./actions/replies.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/replies.php 57
-    function no_such_user() {
+    function no_such_user()
+    {
hunk ./actions/replies.php 62
-    function show_header($user) {
+    function show_header($user)
+    {
hunk ./actions/replies.php 71
-    function show_top($user) {
+    function show_top($user)
+    {
hunk ./actions/replies.php 87
-    function show_replies($user) {
+    function show_replies($user)
+    {
hunk ./actions/repliesrss.php 30
-    function init() {
+    function init()
+    {
hunk ./actions/repliesrss.php 43
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/repliesrss.php 59
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/repliesrss.php 73
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/requesttoken.php 26
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/requesttoken.php 31
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/showfavorites.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/showfavorites.php 57
-    function show_header($user) {
+    function show_header($user)
+    {
hunk ./actions/showfavorites.php 66
-    function show_top($user) {
+    function show_top($user)
+    {
hunk ./actions/showfavorites.php 81
-    function show_notices($user) {
+    function show_notices($user)
+    {
hunk ./actions/showmessage.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/showmessage.php 48
-    function get_message() {
+    function get_message()
+    {
hunk ./actions/showmessage.php 55
-    function get_title($user, $page) {
+    function get_title($user, $page)
+    {
hunk ./actions/showmessage.php 76
-    function get_messages($user, $page) {
+    function get_messages($user, $page)
+    {
hunk ./actions/showmessage.php 84
-    function get_message_profile($message) {
+    function get_message_profile($message)
+    {
hunk ./actions/showmessage.php 97
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/showmessage.php 102
-    function views_menu() {
+    function views_menu()
+    {
hunk ./actions/shownotice.php 30
-    function prepare($args) {
+    function prepare($args)
+    {
hunk ./actions/shownotice.php 55
-    function last_modified() {
+    function last_modified()
+    {
hunk ./actions/shownotice.php 62
-    function etag() {
+    function etag()
+    {
hunk ./actions/shownotice.php 72
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/shownotice.php 91
-    function show_header() {
+    function show_header()
+    {
hunk ./actions/shownotice.php 111
-    function show_top() {
+    function show_top()
+    {
hunk ./actions/shownotice.php 119
-    function no_such_notice() {
+    function no_such_notice()
+    {
hunk ./actions/showstream.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/showstream.php 80
-    function show_top($user) {
+    function show_top($user)
+    {
hunk ./actions/showstream.php 105
-    function show_header($user) {
+    function show_header($user)
+    {
hunk ./actions/showstream.php 159
-    function no_such_user() {
+    function no_such_user()
+    {
hunk ./actions/showstream.php 164
-    function show_profile($profile) {
+    function show_profile($profile)
+    {
hunk ./actions/showstream.php 180
-    function show_personal($profile) {
+    function show_personal($profile)
+    {
hunk ./actions/showstream.php 255
-    function show_remote_subscribe_link($profile) {
+    function show_remote_subscribe_link($profile)
+    {
hunk ./actions/showstream.php 264
-    function show_unsubscribe_form($profile) {
+    function show_unsubscribe_form($profile)
+    {
hunk ./actions/showstream.php 279
-    function show_subscriptions($profile) {
+    function show_subscriptions($profile)
+    {
hunk ./actions/showstream.php 352
-    function show_statistics($profile) {
+    function show_statistics($profile)
+    {
hunk ./actions/showstream.php 413
-    function show_notices($user) {
+    function show_notices($user)
+    {
hunk ./actions/showstream.php 427
-    function show_last_notice($profile) {
+    function show_last_notice($profile)
+    {
hunk ./actions/showstream.php 453
-    function newListItem($notice) {
+    function newListItem($notice)
+    {
hunk ./actions/showstream.php 460
-    function showAuthor() {
+    function showAuthor()
+    {
hunk ./actions/smssettings.php 27
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/smssettings.php 32
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/smssettings.php 108
-    function get_confirmation() {
+    function get_confirmation()
+    {
hunk ./actions/smssettings.php 121
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/smssettings.php 151
-    function save_preferences() {
+    function save_preferences()
+    {
hunk ./actions/smssettings.php 179
-    function add_address() {
+    function add_address()
+    {
hunk ./actions/smssettings.php 235
-    function cancel_confirmation() {
+    function cancel_confirmation()
+    {
hunk ./actions/smssettings.php 263
-    function remove_address() {
+    function remove_address()
+    {
hunk ./actions/smssettings.php 293
-    function sms_exists($sms) {
+    function sms_exists($sms)
+    {
hunk ./actions/smssettings.php 304
-    function carrier_select() {
+    function carrier_select()
+    {
hunk ./actions/smssettings.php 329
-    function confirm_code() {
+    function confirm_code()
+    {
hunk ./actions/subedit.php 26
-    function prepare($args) {
+    function prepare($args)
+    {
hunk ./actions/subedit.php 60
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/subscribe.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/subscribers.php 26
-    function gallery_type() {
+    function gallery_type()
+    {
hunk ./actions/subscribers.php 31
-    function get_instructions(&$profile) {
+    function get_instructions(&$profile)
+    {
hunk ./actions/subscribers.php 41
-    function fields() {
+    function fields()
+    {
hunk ./actions/subscribers.php 46
-    function div_class() {
+    function div_class()
+    {
hunk ./actions/subscribers.php 51
-    function get_other(&$subs) {
+    function get_other(&$subs)
+    {
hunk ./actions/subscribers.php 56
-    function profile_list_class() {
+    function profile_list_class()
+    {
hunk ./actions/subscribers.php 63
-    function show_owner_controls($profile) {
+    function show_owner_controls($profile)
+    {
hunk ./actions/subscriptions.php 26
-    function gallery_type() {
+    function gallery_type()
+    {
hunk ./actions/subscriptions.php 31
-    function get_instructions(&$profile) {
+    function get_instructions(&$profile)
+    {
hunk ./actions/subscriptions.php 41
-    function fields() {
+    function fields()
+    {
hunk ./actions/subscriptions.php 46
-    function div_class() {
+    function div_class()
+    {
hunk ./actions/subscriptions.php 51
-    function get_other(&$subs) {
+    function get_other(&$subs)
+    {
hunk ./actions/subscriptions.php 56
-    function profile_list_class() {
+    function profile_list_class()
+    {
hunk ./actions/subscriptions.php 64
-    function show_owner_controls($profile) {
+    function show_owner_controls($profile)
+    {
hunk ./actions/sup.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/sup.php 46
-    function available_periods() {
+    function available_periods()
+    {
hunk ./actions/sup.php 60
-    function get_updates($seconds) {
+    function get_updates($seconds)
+    {
hunk ./actions/sup.php 81
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./actions/tag.php 27
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/tag.php 50
-    function show_header($tag = false) {
+    function show_header($tag = false)
+    {
hunk ./actions/tag.php 60
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/tag.php 65
-    function show_top($tag = false) {
+    function show_top($tag = false)
+    {
hunk ./actions/tag.php 131
-    function show_tag($tag, $weight, $relative) {
+    function show_tag($tag, $weight, $relative)
+    {
hunk ./actions/tag.php 157
-    function show_notices($tag) {
+    function show_notices($tag)
+    {
hunk ./actions/tagother.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/tagother.php 53
-    function show_form($profile, $error=null) {
+    function show_form($profile, $error=null)
+    {
hunk ./actions/tagother.php 108
-    function save_tags() {
+    function save_tags()
+    {
hunk ./actions/tagother.php 184
-    function show_top($arr = null) {
+    function show_top($arr = null)
+    {
hunk ./actions/tagrss.php 28
-    function init() {
+    function init()
+    {
hunk ./actions/tagrss.php 41
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/tagrss.php 58
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/twitapiaccount.php 26
-    function verify_credentials($args, $apidata) {
+    function verify_credentials($args, $apidata)
+    {
hunk ./actions/twitapiaccount.php 38
-    function end_session($args, $apidata) {
+    function end_session($args, $apidata)
+    {
hunk ./actions/twitapiaccount.php 44
-    function update_location($args, $apidata) {
+    function update_location($args, $apidata)
+    {
hunk ./actions/twitapiaccount.php 90
-    function update_delivery_device($args, $apidata) {
+    function update_delivery_device($args, $apidata)
+    {
hunk ./actions/twitapiaccount.php 96
-    function rate_limit_status($args, $apidata) {
+    function rate_limit_status($args, $apidata)
+    {
hunk ./actions/twitapiblocks.php 26
-    function create($args, $apidata) {
+    function create($args, $apidata)
+    {
hunk ./actions/twitapiblocks.php 50
-    function destroy($args, $apidata) {
+    function destroy($args, $apidata)
+    {
hunk ./actions/twitapidirect_messages.php 26
-    function direct_messages($args, $apidata) {
+    function direct_messages($args, $apidata)
+    {
hunk ./actions/twitapidirect_messages.php 32
-    function sent($args, $apidata) {
+    function sent($args, $apidata)
+    {
hunk ./actions/twitapidirect_messages.php 38
-    function show_messages($args, $apidata, $type) {
+    function show_messages($args, $apidata, $type)
+    {
hunk ./actions/twitapidirect_messages.php 116
-    function create($args, $apidata) {
+    function create($args, $apidata)
+    {
hunk ./actions/twitapidirect_messages.php 180
-    function destroy($args, $apidata) {
+    function destroy($args, $apidata)
+    {
hunk ./actions/twitapidirect_messages.php 186
-    function show_xml_dmsgs($message) {
+    function show_xml_dmsgs($message)
+    {
hunk ./actions/twitapidirect_messages.php 209
-    function show_json_dmsgs($message) {
+    function show_json_dmsgs($message)
+    {
hunk ./actions/twitapidirect_messages.php 233
-    function show_rss_dmsgs($message, $title, $link, $subtitle) {
+    function show_rss_dmsgs($message, $title, $link, $subtitle)
+    {
hunk ./actions/twitapidirect_messages.php 263
-    function show_atom_dmsgs($message, $title, $link, $subtitle) {
+    function show_atom_dmsgs($message, $title, $link, $subtitle)
+    {
hunk ./actions/twitapidirect_messages.php 291
-    function notify($from, $to, $message) {
+    function notify($from, $to, $message)
+    {
hunk ./actions/twitapifavorites.php 26
-    function favorites($args, $apidata) {
+    function favorites($args, $apidata)
+    {
hunk ./actions/twitapifavorites.php 89
-    function create($args, $apidata) {
+    function create($args, $apidata)
+    {
hunk ./actions/twitapifavorites.php 139
-    function destroy($args, $apidata) {
+    function destroy($args, $apidata)
+    {
hunk ./actions/twitapifavorites.php 147
-    function notify($fave, $notice, $user) {
+    function notify($fave, $notice, $user)
+    {
hunk ./actions/twitapifavorites.php 159
-    function notify_mail($other, $user, $notice) {
+    function notify_mail($other, $user, $notice)
+    {
hunk ./actions/twitapifriendships.php 26
-    function create($args, $apidata) {
+    function create($args, $apidata)
+    {
hunk ./actions/twitapifriendships.php 79
-    function destroy($args, $apidata) {
+    function destroy($args, $apidata)
+    {
hunk ./actions/twitapifriendships.php 115
-    function exists($args, $apidata) {
+    function exists($args, $apidata)
+    {
hunk ./actions/twitapihelp.php 30
-    function test($args, $apidata) {
+    function test($args, $apidata)
+    {
hunk ./actions/twitapihelp.php 48
-    function downtime_schedule($args, $apidata) {
+    function downtime_schedule($args, $apidata)
+    {
hunk ./actions/twitapinotifications.php 27
-    function follow($args, $apidata) {
+    function follow($args, $apidata)
+    {
hunk ./actions/twitapinotifications.php 33
-    function leave($args, $apidata) {
+    function leave($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 26
-    function public_timeline($args, $apidata) {
+    function public_timeline($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 88
-    function friends_timeline($args, $apidata) {
+    function friends_timeline($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 151
-    function user_timeline($args, $apidata) {
+    function user_timeline($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 232
-    function update($args, $apidata) {
+    function update($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 328
-    function replies($args, $apidata) {
+    function replies($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 396
-    function show($args, $apidata) {
+    function show($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 422
-    function destroy($args, $apidata) {
+    function destroy($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 467
-    function friends($args, $apidata) {
+    function friends($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 473
-    function followers($args, $apidata) {
+    function followers($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 480
-    function subscriptions($apidata, $other_attr, $user_attr) {
+    function subscriptions($apidata, $other_attr, $user_attr)
+    {
hunk ./actions/twitapistatuses.php 536
-    function show_profiles($profiles, $type) {
+    function show_profiles($profiles, $type)
+    {
hunk ./actions/twitapistatuses.php 558
-    function featured($args, $apidata) {
+    function featured($args, $apidata)
+    {
hunk ./actions/twitapistatuses.php 564
-    function supported($cmd) {
+    function supported($cmd)
+    {
hunk ./actions/twitapiusers.php 26
-    function show($args, $apidata) {
+    function show($args, $apidata)
+    {
hunk ./actions/twittersettings.php 28
-    function get_instructions() {
+    function get_instructions()
+    {
hunk ./actions/twittersettings.php 34
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./actions/twittersettings.php 96
-    function subscribed_twitter_users() {
+    function subscribed_twitter_users()
+    {
hunk ./actions/twittersettings.php 125
-    function show_twitter_subscriptions() {
+    function show_twitter_subscriptions()
+    {
hunk ./actions/twittersettings.php 187
-    function handle_post() {
+    function handle_post()
+    {
hunk ./actions/twittersettings.php 208
-    function add_twitter_acct() {
+    function add_twitter_acct()
+    {
hunk ./actions/twittersettings.php 270
-    function remove_twitter_acct() {
+    function remove_twitter_acct()
+    {
hunk ./actions/twittersettings.php 294
-    function save_preferences() {
+    function save_preferences()
+    {
hunk ./actions/twittersettings.php 341
-    function verify_credentials($screen_name, $password) {
+    function verify_credentials($screen_name, $password)
+    {
hunk ./actions/twittersettings.php 365
-    function set_flags(&$flink, $noticesync, $replysync, $friendsync) {
+    function set_flags(&$flink, $noticesync, $replysync, $friendsync)
+    {
hunk ./actions/unblock.php 26
-    function prepare($args) {
+    function prepare($args)
+    {
hunk ./actions/unblock.php 60
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/unblock.php 68
-    function unblock_profile() {
+    function unblock_profile()
+    {
hunk ./actions/unsubscribe.php 22
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/updateprofile.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/updateprofile.php 44
-    function update_profile($req, $consumer, $token) {
+    function update_profile($req, $consumer, $token)
+    {
hunk ./actions/userauthorization.php 27
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/userauthorization.php 73
-    function show_form($req) {
+    function show_form($req)
+    {
hunk ./actions/userauthorization.php 134
-    function send_authorization() {
+    function send_authorization()
+    {
hunk ./actions/userauthorization.php 203
-    function authorize_token(&$req) {
+    function authorize_token(&$req)
+    {
hunk ./actions/userauthorization.php 229
-    function save_remote_profile(&$req) {
+    function save_remote_profile(&$req)
+    {
hunk ./actions/userauthorization.php 320
-    function add_avatar($profile, $url) {
+    function add_avatar($profile, $url)
+    {
hunk ./actions/userauthorization.php 327
-    function show_accept_message($tok) {
+    function show_accept_message($tok)
+    {
hunk ./actions/userauthorization.php 338
-    function show_reject_message($tok) {
+    function show_reject_message($tok)
+    {
hunk ./actions/userauthorization.php 348
-    function store_request($req) {
+    function store_request($req)
+    {
hunk ./actions/userauthorization.php 354
-    function clear_request() {
+    function clear_request()
+    {
hunk ./actions/userauthorization.php 360
-    function get_stored_request() {
+    function get_stored_request()
+    {
hunk ./actions/userauthorization.php 367
-    function get_new_request() {
+    function get_new_request()
+    {
hunk ./actions/userauthorization.php 376
-    function validate_request(&$req) {
+    function validate_request(&$req)
+    {
hunk ./actions/userauthorization.php 400
-    function validate_omb(&$req) {
+    function validate_omb(&$req)
+    {
hunk ./actions/userauthorization.php 515
-    function check_version(&$req) {
+    function check_version(&$req)
+    {
hunk ./actions/userauthorization.php 529
-    function get_consumer($datastore, $req) {
+    function get_consumer($datastore, $req)
+    {
hunk ./actions/userauthorization.php 545
-    function get_token($datastore, &$req, $consumer) {/*{{{*/
+    function get_token($datastore, &$req, $consumer)
+    {/*{{{*/
hunk ./actions/userauthorization.php 555
-    function check_timestamp(&$req) {
+    function check_timestamp(&$req)
+    {
hunk ./actions/userauthorization.php 565
-    function check_nonce(&$datastore, &$req, $consumer, $token) {
+    function check_nonce(&$datastore, &$req, $consumer, $token)
+    {
hunk ./actions/userauthorization.php 576
-    function check_signature(&$req, $consumer, $token) {
+    function check_signature(&$req, $consumer, $token)
+    {
hunk ./actions/userauthorization.php 589
-    function get_signature_method(&$req) {
+    function get_signature_method(&$req)
+    {
hunk ./actions/userbyid.php 24
-    function is_readonly() {                
+    function is_readonly()
+    {                
hunk ./actions/userbyid.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/userrss.php 30
-    function init() {
+    function init()
+    {
hunk ./actions/userrss.php 43
-    function get_notices($limit=0) {
+    function get_notices($limit=0)
+    {
hunk ./actions/userrss.php 61
-    function get_channel() {
+    function get_channel()
+    {
hunk ./actions/userrss.php 74
-    function get_image() {
+    function get_image()
+    {
hunk ./actions/userrss.php 89
-    function init_rss($limit=0) {
+    function init_rss($limit=0)
+    {
hunk ./actions/xrds.php 26
-    function is_readonly() {                
+    function is_readonly()
+    {                
hunk ./actions/xrds.php 31
-    function handle($args) {
+    function handle($args)
+    {
hunk ./actions/xrds.php 43
-    function show_xrds($user) {
+    function show_xrds($user)
+    {
hunk ./actions/xrds.php 114
-    function show_service($type, $uri, $params=null, $sigs=null, $localId=null) {
+    function show_service($type, $uri, $params=null, $sigs=null, $localId=null)
+    {
hunk ./classes/Avatar.php 24
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Avatar',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Avatar',$k,$v); }
hunk ./classes/Avatar.php 32
-    function delete() {
+    function delete()
+    {
hunk ./classes/Avatar.php 43
-    function scale($size) {
+    function scale($size)
+    {
hunk ./classes/Avatar.php 82
-    function to_image() {
+    function to_image()
+    {
hunk ./classes/Avatar.php 96
-    function &pkeyGet($kv) {
+    function &pkeyGet($kv)
+    {
hunk ./classes/Channel.php 24
-    function on($user) {
+    function on($user)
+    {
hunk ./classes/Channel.php 29
-    function off($user) {
+    function off($user)
+    {
hunk ./classes/Channel.php 34
-    function output($user, $text) {
+    function output($user, $text)
+    {
hunk ./classes/Channel.php 39
-    function error($user, $text) {
+    function error($user, $text)
+    {
hunk ./classes/Channel.php 44
-    function source() {
+    function source()
+    {
hunk ./classes/Channel.php 54
-    function source() {
+    function source()
+    {
hunk ./classes/Channel.php 59
-    function __construct($conn) {
+    function __construct($conn)
+    {
hunk ./classes/Channel.php 64
-    function on($user) {
+    function on($user)
+    {
hunk ./classes/Channel.php 69
-    function off($user) {
+    function off($user)
+    {
hunk ./classes/Channel.php 74
-    function output($user, $text) {
+    function output($user, $text)
+    {
hunk ./classes/Channel.php 80
-    function error($user, $text) {
+    function error($user, $text)
+    {
hunk ./classes/Channel.php 86
-    function set_notify(&$user, $notify) {
+    function set_notify(&$user, $notify)
+    {
hunk ./classes/Channel.php 109
-    function source() {
+    function source()
+    {
hunk ./classes/Channel.php 114
-    function on($user) {
+    function on($user)
+    {
hunk ./classes/Channel.php 119
-    function off($user) {
+    function off($user)
+    {
hunk ./classes/Channel.php 124
-    function output($user, $text) {
+    function output($user, $text)
+    {
hunk ./classes/Channel.php 134
-    function error($user, $text) {
+    function error($user, $text)
+    {
hunk ./classes/Channel.php 143
-    function output($user, $text) {
+    function output($user, $text)
+    {
hunk ./classes/Channel.php 155
-    function error($user, $text) {
+    function error($user, $text)
+    {
hunk ./classes/Channel.php 173
-    function source() {
+    function source()
+    {
hunk ./classes/Channel.php 178
-    function __construct($addr=null) {
+    function __construct($addr=null)
+    {
hunk ./classes/Channel.php 183
-    function on($user) {
+    function on($user)
+    {
hunk ./classes/Channel.php 188
-    function off($user) {
+    function off($user)
+    {
hunk ./classes/Channel.php 193
-    function output($user, $text) {
+    function output($user, $text)
+    {
hunk ./classes/Channel.php 204
-    function error($user, $text) {
+    function error($user, $text)
+    {
hunk ./classes/Channel.php 215
-    function set_notify($user, $value) {
+    function set_notify($user, $value)
+    {
hunk ./classes/Command.php 28
-    function __construct($user=null) {
+    function __construct($user=null)
+    {
hunk ./classes/Command.php 33
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 40
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 54
-    function __construct($user, $word) {
+    function __construct($user, $word)
+    {
hunk ./classes/Command.php 63
-    function __construct($user, $word) {
+    function __construct($user, $word)
+    {
hunk ./classes/Command.php 72
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 81
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 89
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 117
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 123
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 162
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 168
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 199
-    function __construct($user, $other, $text) {
+    function __construct($user, $other, $text)
+    {
hunk ./classes/Command.php 206
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 244
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 250
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 276
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 282
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 304
-    function __construct($user, $other) {
+    function __construct($user, $other)
+    {
hunk ./classes/Command.php 310
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 329
-    function __construct($user, $other=null) {
+    function __construct($user, $other=null)
+    {
hunk ./classes/Command.php 334
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 350
-    function __construct($user, $other=null) {
+    function __construct($user, $other=null)
+    {
hunk ./classes/Command.php 356
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/Command.php 371
-    function execute($channel) {
+    function execute($channel)
+    {
hunk ./classes/CommandInterpreter.php 26
-    function handle_command($user, $text) {
+    function handle_command($user, $text)
+    {
hunk ./classes/Confirm_address.php 23
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Confirm_address',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Confirm_address',$k,$v); }
hunk ./classes/Confirm_address.php 29
-    function sequenceKey() { return array(false, false); }
+    function sequenceKey()
+    { return array(false, false); }
hunk ./classes/Consumer.php 19
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Consumer',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Consumer',$k,$v); }
hunk ./classes/Fave.php 18
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Fave',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Fave',$k,$v); }
hunk ./classes/Fave.php 35
-    function &pkeyGet($kv) {
+    function &pkeyGet($kv)
+    {
hunk ./classes/Foreign_link.php 24
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Foreign_link',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Foreign_link',$k,$v); }
hunk ./classes/Foreign_link.php 59
-    function getForeignUser() {        
+    function getForeignUser()
+    {        
hunk ./classes/Foreign_link.php 74
-    function getUser() {
+    function getUser()
+    {
hunk ./classes/Foreign_service.php 20
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Foreign_service',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Foreign_service',$k,$v); }
hunk ./classes/Foreign_subscription.php 19
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Foreign_subscription',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Foreign_subscription',$k,$v); }
hunk ./classes/Foreign_user.php 21
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Foreign_user',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Foreign_user',$k,$v); }
hunk ./classes/Foreign_user.php 43
-    function updateKeys(&$orig) {
+    function updateKeys(&$orig)
+    {
hunk ./classes/Invitation.php 20
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Invitation',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Invitation',$k,$v); }
hunk ./classes/Memcached_DataObject.php 26
-    function &staticGet($cls, $k, $v=null) {
+    function &staticGet($cls, $k, $v=null)
+    {
hunk ./classes/Memcached_DataObject.php 48
-    function &pkeyGet($cls, $kv) {
+    function &pkeyGet($cls, $kv)
+    {
hunk ./classes/Memcached_DataObject.php 67
-    function insert() {
+    function insert()
+    {
hunk ./classes/Memcached_DataObject.php 73
-    function update($orig=null) {
+    function update($orig=null)
+    {
hunk ./classes/Memcached_DataObject.php 85
-    function delete() {
+    function delete()
+    {
hunk ./classes/Memcached_DataObject.php 108
-    function keyTypes() {
+    function keyTypes()
+    {
hunk ./classes/Memcached_DataObject.php 118
-    function encache() {
+    function encache()
+    {
hunk ./classes/Memcached_DataObject.php 143
-    function decache() {
+    function decache()
+    {
hunk ./classes/Memcached_DataObject.php 169
-    function multicache($cls, $kv) {
+    function multicache($cls, $kv)
+    {
hunk ./classes/Memcached_DataObject.php 182
-    function getSearchEngine($table) {
+    function getSearchEngine($table)
+    {
hunk ./classes/Message.php 25
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Message',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Message',$k,$v); }
hunk ./classes/Message.php 31
-    function getFrom() {
+    function getFrom()
+    {
hunk ./classes/Message.php 36
-    function getTo() {
+    function getTo()
+    {
hunk ./classes/Nonce.php 21
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Nonce',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Nonce',$k,$v); }
hunk ./classes/Notice.php 51
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Notice',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Notice',$k,$v); }
hunk ./classes/Notice.php 57
-    function getProfile() {
+    function getProfile()
+    {
hunk ./classes/Notice.php 62
-    function delete() {
+    function delete()
+    {
hunk ./classes/Notice.php 70
-    function saveTags() {
+    function saveTags()
+    {
hunk ./classes/Notice.php 191
-    function blowCaches($blowLast=false) {
+    function blowCaches($blowLast=false)
+    {
hunk ./classes/Notice.php 200
-    function blowTagCache($blowLast=false) {
+    function blowTagCache($blowLast=false)
+    {
hunk ./classes/Notice.php 219
-    function blowSubsCache($blowLast=false) {
+    function blowSubsCache($blowLast=false)
+    {
hunk ./classes/Notice.php 240
-    function blowNoticeCache($blowLast=false) {
+    function blowNoticeCache($blowLast=false)
+    {
hunk ./classes/Notice.php 253
-    function blowRepliesCache($blowLast=false) {
+    function blowRepliesCache($blowLast=false)
+    {
hunk ./classes/Notice.php 272
-    function blowPublicCache($blowLast=false) {
+    function blowPublicCache($blowLast=false)
+    {
hunk ./classes/Notice.php 285
-    function blowFavesCache($blowLast=false) {
+    function blowFavesCache($blowLast=false)
+    {
hunk ./classes/Notice.php 491
-    function publicStream($offset=0, $limit=20, $since_id=0, $before_id=0, $since=null) {
+    function publicStream($offset=0, $limit=20, $since_id=0, $before_id=0, $since=null)
+    {
hunk ./classes/Notice.php 514
-    function addToInboxes() {
+    function addToInboxes()
+    {
hunk ./classes/Notice.php 538
-    function blowInboxes() {
+    function blowInboxes()
+    {
hunk ./classes/NoticeWrapper.php 41
-    function __construct($arr) {
+    function __construct($arr)
+    {
hunk ./classes/NoticeWrapper.php 46
-    function fetch() {
+    function fetch()
+    {
hunk ./classes/Notice_inbox.php 36
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Notice_inbox',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Notice_inbox',$k,$v); }
hunk ./classes/Notice_source.php 20
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Notice_source',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Notice_source',$k,$v); }
hunk ./classes/Notice_tag.php 33
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Notice_tag',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Notice_tag',$k,$v); }
hunk ./classes/Notice_tag.php 50
-    function blowCache() {
+    function blowCache()
+    {
hunk ./classes/Profile.php 44
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Profile',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Profile',$k,$v); }
hunk ./classes/Profile.php 50
-    function getAvatar($width, $height=null) {
+    function getAvatar($width, $height=null)
+    {
hunk ./classes/Profile.php 60
-    function getOriginalAvatar() {
+    function getOriginalAvatar()
+    {
hunk ./classes/Profile.php 72
-    function setOriginal($source) {
+    function setOriginal($source)
+    {
hunk ./classes/Profile.php 124
-    function delete_avatars() {
+    function delete_avatars()
+    {
hunk ./classes/Profile.php 135
-    function getBestName() {
+    function getBestName()
+    {
hunk ./classes/Profile.php 141
-    function getCurrentNotice($dt=null) {
+    function getCurrentNotice($dt=null)
+    {
hunk ./classes/Profile.php 156
-    function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0) {
+    function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
+    {
hunk ./classes/Profile_block.php 39
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Profile_block',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Profile_block',$k,$v); }
hunk ./classes/Profile_block.php 45
-    function get($blocker, $blocked) {
+    function get($blocker, $blocked)
+    {
hunk ./classes/Profile_tag.php 19
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Profile_tag',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Profile_tag',$k,$v); }
hunk ./classes/Queue_item.php 19
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Queue_item',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Queue_item',$k,$v); }
hunk ./classes/Queue_item.php 25
-    function sequenceKey() { return array(false, false); }
+    function sequenceKey()
+    { return array(false, false); }
hunk ./classes/Remember_me.php 18
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Remember_me',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Remember_me',$k,$v); }
hunk ./classes/Remember_me.php 24
-    function sequenceKey() { return array(false, false); }
+    function sequenceKey()
+    { return array(false, false); }
hunk ./classes/Remote_profile.php 41
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Remote_profile',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Remote_profile',$k,$v); }
hunk ./classes/Reply.php 19
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Reply',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Reply',$k,$v); }
hunk ./classes/Sms_carrier.php 20
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Sms_carrier',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Sms_carrier',$k,$v); }
hunk ./classes/Sms_carrier.php 26
-    function toEmailAddress($sms) {
+    function toEmailAddress($sms)
+    {
hunk ./classes/Subscription.php 43
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Subscription',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Subscription',$k,$v); }
hunk ./classes/Subscription.php 49
-    function &pkeyGet($kv) {
+    function &pkeyGet($kv)
+    {
hunk ./classes/Token.php 22
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Token',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Token',$k,$v); }
hunk ./classes/User.php 65
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('User',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('User',$k,$v); }
hunk ./classes/User.php 71
-    function getProfile() {
+    function getProfile()
+    {
hunk ./classes/User.php 76
-    function isSubscribed($other) {
+    function isSubscribed($other)
+    {
hunk ./classes/User.php 87
-    function updateKeys(&$orig) {
+    function updateKeys(&$orig)
+    {
hunk ./classes/User.php 115
-    function allowed_nickname($nickname) {
+    function allowed_nickname($nickname)
+    {
hunk ./classes/User.php 126
-    function getCurrentNotice($dt=null) {
+    function getCurrentNotice($dt=null)
+    {
hunk ./classes/User.php 135
-    function getCarrier() {
+    function getCarrier()
+    {
hunk ./classes/User.php 140
-    function subscribeTo($other) {
+    function subscribeTo($other)
+    {
hunk ./classes/User.php 155
-    function hasBlocked($other) {
+    function hasBlocked($other)
+    {
hunk ./classes/User.php 283
-    function emailChanged() {
+    function emailChanged()
+    {
hunk ./classes/User.php 298
-    function hasFave($notice) {
+    function hasFave($notice)
+    {
hunk ./classes/User.php 331
-    function mutuallySubscribed($other) {
+    function mutuallySubscribed($other)
+    {
hunk ./classes/User.php 337
-        function mutuallySubscribedUsers() {
+        function mutuallySubscribedUsers()
+        {
hunk ./classes/User.php 352
-    function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) {
+    function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
+    {
hunk ./classes/User.php 363
-        function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) {
+        function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
+        {
hunk ./classes/User.php 373
-      function favoriteNotices($offset=0, $limit=NOTICES_PER_PAGE) {
+      function favoriteNotices($offset=0, $limit=NOTICES_PER_PAGE)
+      {
hunk ./classes/User.php 384
-        function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) {
+        function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
+        {
hunk ./classes/User.php 414
-        function blowFavesCache() {
+        function blowFavesCache()
+        {
hunk ./classes/User.php 425
-        function getSelfTags() {
+        function getSelfTags()
+        {
hunk ./classes/User.php 430
-        function setSelfTags($newtags) {
+        function setSelfTags($newtags)
+        {
hunk ./classes/User.php 435
-    function block($other) {
+    function block($other)
+    {
hunk ./classes/User.php 474
-    function unblock($other) {
+    function unblock($other)
+    {
hunk ./classes/User_openid.php 20
-    function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('User_openid',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('User_openid',$k,$v); }
hunk ./lib/Shorturl_api.php 25
-    function __construct($service_url) {
+    function __construct($service_url)
+    {
hunk ./lib/Shorturl_api.php 30
-    function shorten($url) {
+    function shorten($url)
+    {
hunk ./lib/Shorturl_api.php 73
-    function __construct() {
+    function __construct()
+    {
hunk ./lib/Shorturl_api.php 92
-    function __construct() {
+    function __construct()
+    {
hunk ./lib/Shorturl_api.php 110
-    function __construct() {
+    function __construct()
+    {
hunk ./lib/common.php 166
-function __autoload($class) {
+function __autoload($class)
+{
hunk ./lib/deleteaction.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/deleteaction.php 47
-    function show_top($arr=null) {
+    function show_top($arr=null)
+    {
hunk ./lib/deleteaction.php 56
-    function get_title() {
+    function get_title()
+    {
hunk ./lib/deleteaction.php 61
-    function show_header() {
+    function show_header()
+    {
hunk ./lib/facebookaction.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/facebookaction.php 31
-    function get_facebook() {
+    function get_facebook()
+    {
hunk ./lib/facebookaction.php 38
-    function update_profile_box($facebook, $fbuid, $user) {
+    function update_profile_box($facebook, $fbuid, $user)
+    {
hunk ./lib/facebookaction.php 92
-    function show_header($selected ='Home') {
+    function show_header($selected ='Home')
+    {
hunk ./lib/facebookaction.php 115
-    function show_footer() {
+    function show_footer()
+    {
hunk ./lib/facebookaction.php 121
-    function show_login_form() {
+    function show_login_form()
+    {
hunk ./lib/facebookaction.php 157
-    function render_notice($notice) {
+    function render_notice($notice)
+    {
hunk ./lib/facebookaction.php 217
-    function source_link($source) {
+    function source_link($source)
+    {
hunk ./lib/facebookaction.php 246
-    function pagination($have_before, $have_after, $page, $fbaction, $args=null) {
+    function pagination($have_before, $have_after, $page, $fbaction, $args=null)
+    {
hunk ./lib/facebookaction.php 278
-    function pagination_url($fbaction, $args=null) {
+    function pagination_url($fbaction, $args=null)
+    {
hunk ./lib/oauthstore.php 28
-    function lookup_consumer($consumer_key) {
+    function lookup_consumer($consumer_key)
+    {
hunk ./lib/oauthstore.php 43
-    function lookup_token($consumer, $token_type, $token_key) {
+    function lookup_token($consumer, $token_type, $token_key)
+    {
hunk ./lib/oauthstore.php 56
-    function lookup_nonce($consumer, $token, $nonce, $timestamp) {
+    function lookup_nonce($consumer, $token, $nonce, $timestamp)
+    {
hunk ./lib/oauthstore.php 72
-    function new_request_token($consumer) {
+    function new_request_token($consumer)
+    {
hunk ./lib/oauthstore.php 90
-    function fetch_request_token($consumer) {
+    function fetch_request_token($consumer)
+    {
hunk ./lib/oauthstore.php 95
-    function new_access_token($token, $consumer) {
+    function new_access_token($token, $consumer)
+    {
hunk ./lib/oauthstore.php 147
-    function fetch_access_token($consumer) {
+    function fetch_access_token($consumer)
+    {
hunk ./lib/omb.php 46
-function omb_oauth_consumer() {
+function omb_oauth_consumer()
+{
hunk ./lib/omb.php 55
-function omb_oauth_server() {
+function omb_oauth_server()
+{
hunk ./lib/omb.php 65
-function omb_oauth_datastore() {
+function omb_oauth_datastore()
+{
hunk ./lib/omb.php 74
-function omb_hmac_sha1() {
+function omb_hmac_sha1()
+{
hunk ./lib/omb.php 83
-function omb_get_services($xrd, $type) {
+function omb_get_services($xrd, $type)
+{
hunk ./lib/omb.php 88
-function omb_service_filter($type) {
+function omb_service_filter($type)
+{
hunk ./lib/omb.php 94
-function omb_match_service($service, $type) {
+function omb_match_service($service, $type)
+{
hunk ./lib/omb.php 99
-function omb_service_uri($service) {
+function omb_service_uri($service)
+{
hunk ./lib/omb.php 111
-function omb_local_id($service) {
+function omb_local_id($service)
+{
hunk ./lib/omb.php 124
-function omb_broadcast_remote_subscribers($notice) {
+function omb_broadcast_remote_subscribers($notice)
+{
hunk ./lib/omb.php 155
-function omb_post_notice($notice, $remote_profile, $subscription) {
+function omb_post_notice($notice, $remote_profile, $subscription)
+{
hunk ./lib/omb.php 160
-function omb_post_notice_keys($notice, $postnoticeurl, $tk, $secret) {
+function omb_post_notice_keys($notice, $postnoticeurl, $tk, $secret)
+{
hunk ./lib/omb.php 231
-function omb_broadcast_profile($profile) {
+function omb_broadcast_profile($profile)
+{
hunk ./lib/omb.php 252
-function omb_update_profile($profile, $remote_profile, $subscription) {
+function omb_update_profile($profile, $remote_profile, $subscription)
+{
hunk ./lib/openid.php 34
-function oid_store() {
+function oid_store()
+{
hunk ./lib/openid.php 46
-function oid_consumer() {
+function oid_consumer()
+{
hunk ./lib/openid.php 53
-function oid_clear_last() {
+function oid_clear_last()
+{
hunk ./lib/openid.php 58
-function oid_set_last($openid_url) {
+function oid_set_last($openid_url)
+{
hunk ./lib/openid.php 65
-function oid_get_last() {
+function oid_get_last()
+{
hunk ./lib/openid.php 75
-function oid_link_user($id, $canonical, $display) {
+function oid_link_user($id, $canonical, $display)
+{
hunk ./lib/openid.php 93
-function oid_get_user($openid_url) {
+function oid_get_user($openid_url)
+{
hunk ./lib/openid.php 103
-function oid_check_immediate($openid_url, $backto=null) {
+function oid_check_immediate($openid_url, $backto=null)
+{
hunk ./lib/openid.php 124
-function oid_authenticate($openid_url, $returnto, $immediate=false) {
+function oid_authenticate($openid_url, $returnto, $immediate=false)
+{
hunk ./lib/openid.php 202
-function _oid_print_instructions() {
+function _oid_print_instructions()
+{
hunk ./lib/openid.php 212
-function oid_update_user(&$user, &$sreg) {
+function oid_update_user(&$user, &$sreg)
+{
hunk ./lib/personal.php 24
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./lib/personal.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/personal.php 35
-    function views_menu() {
+    function views_menu()
+    {
hunk ./lib/personal.php 91
-    function show_feeds_list($feeds) {
+    function show_feeds_list($feeds)
+    {
hunk ./lib/personal.php 104
-    function common_feed_item($feed) {
+    function common_feed_item($feed)
+    {
hunk ./lib/personal.php 189
-    function source_link($source) {
+    function source_link($source)
+    {
hunk ./lib/profilelist.php 31
-    function __construct($profile, $owner=null, $action=null) {
+    function __construct($profile, $owner=null, $action=null)
+    {
hunk ./lib/profilelist.php 38
-    function show_list() {
+    function show_list()
+    {
hunk ./lib/profilelist.php 58
-    function show() {
+    function show()
+    {
hunk ./lib/profilelist.php 165
-    function show_owner_controls($profile) {
+    function show_owner_controls($profile)
+    {
hunk ./lib/profilelist.php 170
-    function highlight($text) {
+    function highlight($text)
+    {
hunk ./lib/queuehandler.php 32
-    function QueueHandler($id=null) {
+    function QueueHandler($id=null)
+    {
hunk ./lib/queuehandler.php 39
-    function class_name() {
+    function class_name()
+    {
hunk ./lib/queuehandler.php 44
-    function name() {
+    function name()
+    {
hunk ./lib/queuehandler.php 49
-    function get_id() {
+    function get_id()
+    {
hunk ./lib/queuehandler.php 54
-    function set_id($id) {
+    function set_id($id)
+    {
hunk ./lib/queuehandler.php 59
-    function transport() {
+    function transport()
+    {
hunk ./lib/queuehandler.php 64
-    function start() {
+    function start()
+    {
hunk ./lib/queuehandler.php 68
-    function finish() {
+    function finish()
+    {
hunk ./lib/queuehandler.php 72
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./lib/queuehandler.php 77
-    function run() {
+    function run()
+    {
hunk ./lib/queuehandler.php 123
-    function idle($timeout=0) {
+    function idle($timeout=0)
+    {
hunk ./lib/queuehandler.php 130
-    function clear_old_claims() {
+    function clear_old_claims()
+    {
hunk ./lib/queuehandler.php 140
-    function log($level, $msg) {
+    function log($level, $msg)
+    {
hunk ./lib/rssaction.php 29
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./lib/rssaction.php 34
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/rssaction.php 44
-    function init() {
+    function init()
+    {
hunk ./lib/rssaction.php 49
-    function get_notices() {
+    function get_notices()
+    {
hunk ./lib/rssaction.php 54
-    function get_channel() {
+    function get_channel()
+    {
hunk ./lib/rssaction.php 62
-    function get_image() {
+    function get_image()
+    {
hunk ./lib/rssaction.php 67
-    function show_rss($limit=0) {
+    function show_rss($limit=0)
+    {
hunk ./lib/rssaction.php 88
-    function show_channel($notices) {
+    function show_channel($notices)
+    {
hunk ./lib/rssaction.php 117
-    function show_image() {
+    function show_image()
+    {
hunk ./lib/rssaction.php 130
-    function show_item($notice) {
+    function show_item($notice)
+    {
hunk ./lib/rssaction.php 149
-    function show_creators() {
+    function show_creators()
+    {
hunk ./lib/rssaction.php 166
-    function init_rss() {
+    function init_rss()
+    {
hunk ./lib/rssaction.php 198
-    function end_rss() {
+    function end_rss()
+    {
hunk ./lib/search_engines.php 26
-    function __construct($target, $table) {
+    function __construct($target, $table)
+    {
hunk ./lib/search_engines.php 32
-    function query($q) {
+    function query($q)
+    {
hunk ./lib/search_engines.php 36
-    function limit($offset, $count, $rss = false) {
+    function limit($offset, $count, $rss = false)
+    {
hunk ./lib/search_engines.php 41
-    function set_sort_mode($mode) {
+    function set_sort_mode($mode)
+    {
hunk ./lib/search_engines.php 52
-    function __construct($target, $table) {
+    function __construct($target, $table)
+    {
hunk ./lib/search_engines.php 66
-    function is_connected() {
+    function is_connected()
+    {
hunk ./lib/search_engines.php 71
-    function limit($offset, $count, $rss = false) {
+    function limit($offset, $count, $rss = false)
+    {
hunk ./lib/search_engines.php 88
-    function query($q) {
+    function query($q)
+    {
hunk ./lib/search_engines.php 97
-    function set_sort_mode($mode) {
+    function set_sort_mode($mode)
+    {
hunk ./lib/search_engines.php 107
-    function query($q) {
+    function query($q)
+    {
hunk ./lib/search_engines.php 119
-    function query($q) {
+    function query($q)
+    {
hunk ./lib/searchaction.php 24
-    function is_readonly() {
+    function is_readonly()
+    {
hunk ./lib/searchaction.php 29
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/searchaction.php 35
-    function show_top($arr=null) {
+    function show_top($arr=null)
+    {
hunk ./lib/searchaction.php 52
-    function get_title() {
+    function get_title()
+    {
hunk ./lib/searchaction.php 57
-    function show_header($arr) {
+    function show_header($arr)
+    {
hunk ./lib/searchaction.php 62
-    function show_form($error=null) {
+    function show_form($error=null)
+    {
hunk ./lib/searchaction.php 100
-    function search_menu() {
+    function search_menu()
+    {
hunk ./lib/settingsaction.php 24
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/settingsaction.php 44
-    function handle_post() {
+    function handle_post()
+    {
hunk ./lib/settingsaction.php 49
-    function show_form($msg=null, $success=false) {
+    function show_form($msg=null, $success=false)
+    {
hunk ./lib/settingsaction.php 54
-    function message($msg, $success) {
+    function message($msg, $success)
+    {
hunk ./lib/settingsaction.php 62
-    function form_header($title, $msg=null, $success=false) {
+    function form_header($title, $msg=null, $success=false)
+    {
hunk ./lib/settingsaction.php 70
-    function show_top($arr) {
+    function show_top($arr)
+    {
hunk ./lib/settingsaction.php 86
-    function settings_menu() {
+    function settings_menu()
+    {
hunk ./lib/stream.php 27
-    function public_views_menu() {
+    function public_views_menu()
+    {
hunk ./lib/stream.php 52
-    function show_notice_list($notice) {
+    function show_notice_list($notice)
+    {
hunk ./lib/subs.php 28
-function subs_subscribe_user($user, $other_nickname) {
+function subs_subscribe_user($user, $other_nickname)
+{
hunk ./lib/subs.php 45
-function subs_subscribe_to($user, $other) {
+function subs_subscribe_to($user, $other)
+{
hunk ./lib/subs.php 87
-function subs_notify($listenee, $listener) {
+function subs_notify($listenee, $listener)
+{
hunk ./lib/subs.php 95
-function subs_notify_email($listenee, $listener) {
+function subs_notify_email($listenee, $listener)
+{
hunk ./lib/subs.php 104
-function subs_unsubscribe_user($user, $other_nickname) {
+function subs_unsubscribe_user($user, $other_nickname)
+{
hunk ./lib/subs.php 119
-function subs_unsubscribe_to($user, $other) {
+function subs_unsubscribe_to($user, $other)
+{
hunk ./lib/theme.php 22
-function theme_file($relative) {
+function theme_file($relative)
+{
hunk ./lib/theme.php 28
-function theme_path($relative) {
+function theme_path($relative)
+{
hunk ./lib/twitter.php 22
-function get_twitter_data($uri, $screen_name, $password) {
+function get_twitter_data($uri, $screen_name, $password)
+{
hunk ./lib/twitter.php 52
-function twitter_user_info($screen_name, $password) {
+function twitter_user_info($screen_name, $password)
+{
hunk ./lib/twitter.php 71
-function update_twitter_user($fuser, $twitter_id, $screen_name) {
+function update_twitter_user($fuser, $twitter_id, $screen_name)
+{
hunk ./lib/twitter.php 87
-function add_twitter_user($twitter_id, $screen_name) {
+function add_twitter_user($twitter_id, $screen_name)
+{
hunk ./lib/twitter.php 112
-function save_twitter_user($twitter_id, $screen_name) {
+function save_twitter_user($twitter_id, $screen_name)
+{
hunk ./lib/twitter.php 137
-function retreive_twitter_friends($twitter_id, $screen_name, $password) {
+function retreive_twitter_friends($twitter_id, $screen_name, $password)
+{
hunk ./lib/twitter.php 172
-function save_twitter_friends($user, $twitter_id, $screen_name, $password) {
+function save_twitter_friends($user, $twitter_id, $screen_name, $password)
+{
hunk ./lib/twitterapi.php 26
-    function handle($args) {
+    function handle($args)
+    {
hunk ./lib/twitterapi.php 31
-    function twitter_user_array($profile, $get_notice=false) {
+    function twitter_user_array($profile, $get_notice=false)
+    {
hunk ./lib/twitterapi.php 60
-    function twitter_status_array($notice, $include_user=true) {
+    function twitter_status_array($notice, $include_user=true)
+    {
hunk ./lib/twitterapi.php 89
-    function twitter_rss_entry_array($notice) {
+    function twitter_rss_entry_array($notice)
+    {
hunk ./lib/twitterapi.php 114
-    function twitter_rss_dmsg_array($message) {
+    function twitter_rss_dmsg_array($message)
+    {
hunk ./lib/twitterapi.php 137
-    function twitter_dmsg_array($message) {
+    function twitter_dmsg_array($message)
+    {
hunk ./lib/twitterapi.php 158
-    function show_twitter_xml_status($twitter_status) {
+    function show_twitter_xml_status($twitter_status)
+    {
hunk ./lib/twitterapi.php 176
-    function show_twitter_xml_user($twitter_user, $role='user') {
+    function show_twitter_xml_user($twitter_user, $role='user')
+    {
hunk ./lib/twitterapi.php 189
-    function show_twitter_rss_item($entry) {
+    function show_twitter_rss_item($entry)
+    {
hunk ./lib/twitterapi.php 200
-    function show_twitter_atom_entry($entry) {
+    function show_twitter_atom_entry($entry)
+    {
hunk ./lib/twitterapi.php 212
-    function show_json_objects($objects) {
+    function show_json_objects($objects)
+    {
hunk ./lib/twitterapi.php 217
-    function show_single_xml_status($notice) {
+    function show_single_xml_status($notice)
+    {
hunk ./lib/twitterapi.php 225
-    function show_single_json_status($notice) {
+    function show_single_json_status($notice)
+    {
hunk ./lib/twitterapi.php 233
-    function show_single_xml_dmsg($message) {
+    function show_single_xml_dmsg($message)
+    {
hunk ./lib/twitterapi.php 241
-    function show_single_json_dmsg($message) {
+    function show_single_json_dmsg($message)
+    {
hunk ./lib/twitterapi.php 249
-    function show_twitter_xml_dmsg($twitter_dm) {
+    function show_twitter_xml_dmsg($twitter_dm)
+    {
hunk ./lib/twitterapi.php 268
-    function show_xml_timeline($notice) {
+    function show_xml_timeline($notice)
+    {
hunk ./lib/twitterapi.php 290
-    function show_rss_timeline($notice, $title, $link, $subtitle, $suplink=null) {
+    function show_rss_timeline($notice, $title, $link, $subtitle, $suplink=null)
+    {
hunk ./lib/twitterapi.php 325
-    function show_atom_timeline($notice, $title, $id, $link, $subtitle=null, $suplink=null) {
+    function show_atom_timeline($notice, $title, $id, $link, $subtitle=null, $suplink=null)
+    {
hunk ./lib/twitterapi.php 357
-    function show_json_timeline($notice) {
+    function show_json_timeline($notice)
+    {
hunk ./lib/twitterapi.php 383
-    function date_twitter($dt) {
+    function date_twitter($dt)
+    {
hunk ./lib/twitterapi.php 389
-    function replier_by_reply($reply_id) {
+    function replier_by_reply($reply_id)
+    {
hunk ./lib/twitterapi.php 406
-    function count_subscriptions($profile) {
+    function count_subscriptions($profile)
+    {
hunk ./lib/twitterapi.php 422
-    function init_document($type='xml') {
+    function init_document($type='xml')
+    {
hunk ./lib/twitterapi.php 454
-    function end_document($type='xml') {
+    function end_document($type='xml')
+    {
hunk ./lib/twitterapi.php 481
-    function client_error($msg, $code = 400, $content_type = 'json') {
+    function client_error($msg, $code = 400, $content_type = 'json')
+    {
hunk ./lib/twitterapi.php 530
-    function init_twitter_rss() {
+    function init_twitter_rss()
+    {
hunk ./lib/twitterapi.php 536
-    function end_twitter_rss() {
+    function end_twitter_rss()
+    {
hunk ./lib/twitterapi.php 542
-    function init_twitter_atom() {
+    function init_twitter_atom()
+    {
hunk ./lib/twitterapi.php 548
-    function end_twitter_atom() {
+    function end_twitter_atom()
+    {
hunk ./lib/twitterapi.php 554
-    function show_profile($profile, $content_type='xml', $notice=null) {
+    function show_profile($profile, $content_type='xml', $notice=null)
+    {
hunk ./lib/twitterapi.php 571
-    function get_user($id, $apidata=null) {
+    function get_user($id, $apidata=null)
+    {
hunk ./lib/twitterapi.php 583
-    function get_profile($id) {
+    function get_profile($id)
+    {
hunk ./lib/twitterapi.php 597
-    function source_link($source) {
+    function source_link($source)
+    {
hunk ./lib/twitterapi.php 617
-    function show_extended_profile($user, $apidata) {
+    function show_extended_profile($user, $apidata)
+    {
hunk ./lib/util.php 24
-function common_server_error($msg, $code=500) {
+function common_server_error($msg, $code=500)
+{
hunk ./lib/util.php 48
-function common_user_error($msg, $code=400) {
+function common_user_error($msg, $code=400)
+{
hunk ./lib/util.php 85
-function common_element_start($tag, $attrs=null) {
+function common_element_start($tag, $attrs=null)
+{
hunk ./lib/util.php 98
-function common_element_end($tag) {
+function common_element_end($tag)
+{
hunk ./lib/util.php 112
-function common_element($tag, $attrs=null, $content=null) {
+function common_element($tag, $attrs=null, $content=null)
+{
hunk ./lib/util.php 122
-function common_start_xml($doc=null, $public=null, $system=null, $indent=true) {
+function common_start_xml($doc=null, $public=null, $system=null, $indent=true)
+{
hunk ./lib/util.php 134
-function common_end_xml() {
+function common_end_xml()
+{
hunk ./lib/util.php 141
-function common_init_locale($language=null) {
+function common_init_locale($language=null)
+{
hunk ./lib/util.php 155
-function common_init_language() {
+function common_init_language()
+{
hunk ./lib/util.php 172
-function common_show_header($pagetitle, $callable=null, $data=null, $headercall=null) {
+function common_show_header($pagetitle, $callable=null, $data=null, $headercall=null)
+{
hunk ./lib/util.php 256
-function common_start_html($type=null, $indent=true) {
+function common_start_html($type=null, $indent=true)
+{
hunk ./lib/util.php 288
-function common_show_footer() {
+function common_show_footer()
+{
hunk ./lib/util.php 322
-function common_text($txt) {
+function common_text($txt)
+{
hunk ./lib/util.php 328
-function common_raw($xml) {
+function common_raw($xml)
+{
hunk ./lib/util.php 334
-function common_nav_menu() {
+function common_nav_menu()
+{
hunk ./lib/util.php 362
-function common_foot_menu() {
+function common_foot_menu()
+{
hunk ./lib/util.php 380
-function common_menu_item($url, $text, $title=null, $is_selected=false) {
+function common_menu_item($url, $text, $title=null, $is_selected=false)
+{
hunk ./lib/util.php 395
-function common_input($id, $label, $value=null,$instructions=null) {
+function common_input($id, $label, $value=null,$instructions=null)
+{
hunk ./lib/util.php 439
-function common_dropdown($id, $label, $content, $instructions=null, $blank_select=FALSE, $selected=null) {
+function common_dropdown($id, $label, $content, $instructions=null, $blank_select=FALSE, $selected=null)
+{
hunk ./lib/util.php 460
-function common_hidden($id, $value) {
+function common_hidden($id, $value)
+{
hunk ./lib/util.php 468
-function common_password($id, $label, $instructions=null) {
+function common_password($id, $label, $instructions=null)
+{
hunk ./lib/util.php 483
-function common_submit($id, $label, $cls='submit') {
+function common_submit($id, $label, $cls='submit')
+{
hunk ./lib/util.php 495
-function common_textarea($id, $label, $content=null, $instructions=null) {
+function common_textarea($id, $label, $content=null, $instructions=null)
+{
hunk ./lib/util.php 510
-function common_timezone() {
+function common_timezone()
+{
hunk ./lib/util.php 523
-function common_language() {
+function common_language()
+{
hunk ./lib/util.php 549
-function common_munge_password($password, $id) {
+function common_munge_password($password, $id)
+{
hunk ./lib/util.php 555
-function common_check_user($nickname, $password) {
+function common_check_user($nickname, $password)
+{
hunk ./lib/util.php 575
-function common_logged_in() {
+function common_logged_in()
+{
hunk ./lib/util.php 580
-function common_have_session() {
+function common_have_session()
+{
hunk ./lib/util.php 585
-function common_ensure_session() {
+function common_ensure_session()
+{
hunk ./lib/util.php 601
-function common_set_user($user) {
+function common_set_user($user)
+{
hunk ./lib/util.php 626
-function common_set_cookie($key, $value, $expiration=0) {
+function common_set_cookie($key, $value, $expiration=0)
+{
hunk ./lib/util.php 646
-function common_rememberme($user=null) {
+function common_rememberme($user=null)
+{
hunk ./lib/util.php 686
-function common_remembered_user() {
+function common_remembered_user()
+{
hunk ./lib/util.php 752
-function common_forgetme() {
+function common_forgetme()
+{
hunk ./lib/util.php 758
-function common_current_user() {
+function common_current_user()
+{
hunk ./lib/util.php 791
-function common_real_login($real=true) {
+function common_real_login($real=true)
+{
hunk ./lib/util.php 797
-function common_is_real_login() {
+function common_is_real_login()
+{
hunk ./lib/util.php 803
-function common_canonical_nickname($nickname) {
+function common_canonical_nickname($nickname)
+{
hunk ./lib/util.php 810
-function common_canonical_email($email) {
+function common_canonical_email($email)
+{
hunk ./lib/util.php 819
-function common_render_content($text, $notice) {
+function common_render_content($text, $notice)
+{
hunk ./lib/util.php 829
-function common_render_text($text) {
+function common_render_text($text)
+{
hunk ./lib/util.php 840
-function common_render_uri_thingy($matches) {
+function common_render_uri_thingy($matches)
+{
hunk ./lib/util.php 875
-function common_longurl($short_url)  {
+function common_longurl($short_url)
+{
hunk ./lib/util.php 882
-function common_longurl2($uri)  {
+function common_longurl2($uri)
+{
hunk ./lib/util.php 890
-function common_shorten_links($text) {
+function common_shorten_links($text)
+{
hunk ./lib/util.php 899
-function common_shorten_link($url, $reverse = false) {
+function common_shorten_link($url, $reverse = false)
+{
hunk ./lib/util.php 961
-function common_xml_safe_str($str) {
+function common_xml_safe_str($str)
+{
hunk ./lib/util.php 969
-function common_tag_link($tag) {
+function common_tag_link($tag)
+{
hunk ./lib/util.php 976
-function common_canonical_tag($tag) {
+function common_canonical_tag($tag)
+{
hunk ./lib/util.php 981
-function common_valid_profile_tag($str) {
+function common_valid_profile_tag($str)
+{
hunk ./lib/util.php 986
-function common_at_link($sender_id, $nickname) {
+function common_at_link($sender_id, $nickname)
+{
hunk ./lib/util.php 997
-function common_at_hash_link($sender_id, $tag) {
+function common_at_hash_link($sender_id, $tag)
+{
hunk ./lib/util.php 1014
-function common_relative_profile($sender, $nickname, $dt=null) {
+function common_relative_profile($sender, $nickname, $dt=null)
+{
hunk ./lib/util.php 1052
-function common_avatar_filename($id, $extension, $size=null, $extra=null) {
+function common_avatar_filename($id, $extension, $size=null, $extra=null)
+{
hunk ./lib/util.php 1063
-function common_avatar_path($filename) {
+function common_avatar_path($filename)
+{
hunk ./lib/util.php 1069
-function common_avatar_url($filename) {
+function common_avatar_url($filename)
+{
hunk ./lib/util.php 1074
-function common_avatar_display_url($avatar) {
+function common_avatar_display_url($avatar)
+{
hunk ./lib/util.php 1084
-function common_default_avatar($size) {
+function common_default_avatar($size)
+{
hunk ./lib/util.php 1092
-function common_local_url($action, $args=null, $fragment=null) {
+function common_local_url($action, $args=null, $fragment=null)
+{
hunk ./lib/util.php 1106
-function common_fancy_url($action, $args=null) {
+function common_fancy_url($action, $args=null)
+{
hunk ./lib/util.php 1320
-function common_simple_url($action, $args=null) {
+function common_simple_url($action, $args=null)
+{
hunk ./lib/util.php 1333
-function common_path($relative) {
+function common_path($relative)
+{
hunk ./lib/util.php 1340
-function common_date_string($dt) {
+function common_date_string($dt)
+{
hunk ./lib/util.php 1375
-function common_exact_date($dt) {
+function common_exact_date($dt)
+{
hunk ./lib/util.php 1391
-function common_date_w3dtf($dt) {
+function common_date_w3dtf($dt)
+{
hunk ./lib/util.php 1399
-function common_date_rfc2822($dt) {
+function common_date_rfc2822($dt)
+{
hunk ./lib/util.php 1407
-function common_date_iso8601($dt) {
+function common_date_iso8601($dt)
+{
hunk ./lib/util.php 1415
-function common_sql_now() {
+function common_sql_now()
+{
hunk ./lib/util.php 1420
-function common_redirect($url, $code=307) {
+function common_redirect($url, $code=307)
+{
hunk ./lib/util.php 1437
-function common_save_replies($notice) {
+function common_save_replies($notice)
+{
hunk ./lib/util.php 1521
-function common_broadcast_notice($notice, $remote=false) {
+function common_broadcast_notice($notice, $remote=false)
+{
hunk ./lib/util.php 1549
-function common_twitter_broadcast($notice, $flink) {
+function common_twitter_broadcast($notice, $flink)
+{
hunk ./lib/util.php 1610
-function common_enqueue_notice($notice) {
+function common_enqueue_notice($notice)
+{
hunk ./lib/util.php 1628
-function common_dequeue_notice($notice) {
+function common_dequeue_notice($notice)
+{
hunk ./lib/util.php 1645
-function common_real_broadcast($notice, $remote=false) {
+function common_real_broadcast($notice, $remote=false)
+{
hunk ./lib/util.php 1680
-function common_broadcast_profile($profile) {
+function common_broadcast_profile($profile)
+{
hunk ./lib/util.php 1689
-function common_profile_url($nickname) {
+function common_profile_url($nickname)
+{
hunk ./lib/util.php 1696
-function common_notice_form($action=null, $content=null) {
+function common_notice_form($action=null, $content=null)
+{
hunk ./lib/util.php 1729
-function common_root_url() {
+function common_root_url()
+{
hunk ./lib/util.php 1737
-function common_good_rand($bytes) {
+function common_good_rand($bytes)
+{
hunk ./lib/util.php 1747
-function common_urandom($bytes) {
+function common_urandom($bytes)
+{
hunk ./lib/util.php 1760
-function common_mtrand($bytes) {
+function common_mtrand($bytes)
+{
hunk ./lib/util.php 1769
-function common_set_returnto($url) {
+function common_set_returnto($url)
+{
hunk ./lib/util.php 1775
-function common_get_returnto() {
+function common_get_returnto()
+{
hunk ./lib/util.php 1781
-function common_timestamp() {
+function common_timestamp()
+{
hunk ./lib/util.php 1786
-function common_ensure_syslog() {
+function common_ensure_syslog()
+{
hunk ./lib/util.php 1796
-function common_log($priority, $msg, $filename=null) {
+function common_log($priority, $msg, $filename=null)
+{
hunk ./lib/util.php 1814
-function common_debug($msg, $filename=null) {
+function common_debug($msg, $filename=null)
+{
hunk ./lib/util.php 1823
-function common_log_db_error(&$object, $verb, $filename=null) {
+function common_log_db_error(&$object, $verb, $filename=null)
+{
hunk ./lib/util.php 1830
-function common_log_objstring(&$object) {
+function common_log_objstring(&$object)
+{
hunk ./lib/util.php 1844
-function common_valid_http_url($url) {
+function common_valid_http_url($url)
+{
hunk ./lib/util.php 1849
-function common_valid_tag($tag) {
+function common_valid_tag($tag)
+{
hunk ./lib/util.php 1860
-function common_pagination($have_before, $have_after, $page, $action, $args=null) {
+function common_pagination($have_before, $have_after, $page, $action, $args=null)
+{
hunk ./lib/util.php 1896
-function common_accept_to_prefs($accept, $def = '*/*') {
+function common_accept_to_prefs($accept, $def = '*/*')
+{
hunk ./lib/util.php 1921
-function common_mime_type_match($type, $avail) {
+function common_mime_type_match($type, $avail)
+{
hunk ./lib/util.php 1937
-function common_negotiate_type($cprefs, $sprefs) {
+function common_negotiate_type($cprefs, $sprefs)
+{
hunk ./lib/util.php 1974
-function common_config($main, $sub) {
+function common_config($main, $sub)
+{
hunk ./lib/util.php 1980
-function common_copy_args($from) {
+function common_copy_args($from)
+{
hunk ./lib/util.php 1992
-function common_remove_magic_from_request() {
+function common_remove_magic_from_request()
+{
hunk ./lib/util.php 2000
-function common_user_uri(&$user) {
+function common_user_uri(&$user)
+{
hunk ./lib/util.php 2005
-function common_notice_uri(&$notice) {
+function common_notice_uri(&$notice)
+{
hunk ./lib/util.php 2013
-function common_confirmation_code($bits) {
+function common_confirmation_code($bits)
+{
hunk ./lib/util.php 2031
-function common_markup_to_html($c) {
+function common_markup_to_html($c)
+{
hunk ./lib/util.php 2039
-function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE) {
+function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE)
+{
hunk ./lib/util.php 2049
-function common_profile_uri($profile) {
+function common_profile_uri($profile)
+{
hunk ./lib/util.php 2067
-function common_canonical_sms($sms) {
+function common_canonical_sms($sms)
+{
hunk ./lib/util.php 2074
-function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
+function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
+{
hunk ./lib/util.php 2096
-function common_session_token() {
+function common_session_token()
+{
hunk ./lib/util.php 2105
-function common_disfavor_form($notice) {
+function common_disfavor_form($notice)
+{
hunk ./lib/util.php 2133
-function common_favor_form($notice) {
+function common_favor_form($notice)
+{
hunk ./lib/util.php 2161
-function common_nudge_form($profile) {
+function common_nudge_form($profile)
+{
hunk ./lib/util.php 2171
-function common_nudge_response() {
+function common_nudge_response()
+{
hunk ./lib/util.php 2176
-function common_subscribe_form($profile) {
+function common_subscribe_form($profile)
+{
hunk ./lib/util.php 2193
-function common_unsubscribe_form($profile) {
+function common_unsubscribe_form($profile)
+{
hunk ./lib/util.php 2211
-function common_profile_new_message_nudge ($cur, $profile) {
+function common_profile_new_message_nudge ($cur, $profile)
+{
hunk ./lib/util.php 2229
-function common_cache_key($extra) {
+function common_cache_key($extra)
+{
hunk ./lib/util.php 2234
-function common_keyize($str) {
+function common_keyize($str)
+{
hunk ./lib/util.php 2241
-function common_message_form($content, $user, $to) {
+function common_message_form($content, $user, $to)
+{
hunk ./lib/util.php 2282
-function common_memcache() {
+function common_memcache()
+{
hunk ./lib/util.php 2303
-function common_compatible_license($from, $to) {
+function common_compatible_license($from, $to)
+{
hunk ./lib/util.php 2311
-function common_block_form($profile, $args=null) {
+function common_block_form($profile, $args=null)
+{
hunk ./lib/util.php 2316
-function common_unblock_form($profile, $args=null) {
+function common_unblock_form($profile, $args=null)
+{
hunk ./lib/util.php 2321
-function common_blocking_form($type, $label, $profile, $args=null) {
+function common_blocking_form($type, $label, $profile, $args=null)
+{
hunk ./lib/xmppqueuehandler.php 33
-    function start() {
+    function start()
+    {
hunk ./lib/xmppqueuehandler.php 47
-    function handle_reconnect(&$pl) {
+    function handle_reconnect(&$pl)
+    {
hunk ./lib/xmppqueuehandler.php 53
-    function idle($timeout=0) {
+    function idle($timeout=0)
+    {
hunk ./lib/xmppqueuehandler.php 66
-    function forward_message(&$pl) {
+    function forward_message(&$pl)
+    {
hunk ./lib/xmppqueuehandler.php 81
-    function ofrom($from) {
+    function ofrom($from)
+    {
hunk ./lib/xmppqueuehandler.php 89
-    function listener() {
+    function listener()
+    {
hunk ./scripts/enjitqueuehandler.php 38
-    function transport() {
+    function transport()
+    {
hunk ./scripts/enjitqueuehandler.php 43
-    function start() {
+    function start()
+    {
hunk ./scripts/enjitqueuehandler.php 50
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./scripts/jabberqueuehandler.php 40
-    function transport() {
+    function transport()
+    {
hunk ./scripts/jabberqueuehandler.php 45
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./scripts/maildaemon.php 39
-    function __construct() {
+    function __construct()
+    {
hunk ./scripts/maildaemon.php 43
-    function handle_message($fname='php://stdin') {
+    function handle_message($fname='php://stdin')
+    {
hunk ./scripts/maildaemon.php 71
-    function error($from, $msg) {
+    function error($from, $msg)
+    {
hunk ./scripts/maildaemon.php 77
-    function user_from($from_hdr) {
+    function user_from($from_hdr)
+    {
hunk ./scripts/maildaemon.php 92
-    function user_match_to($user, $to_hdr) {
+    function user_match_to($user, $to_hdr)
+    {
hunk ./scripts/maildaemon.php 104
-    function handle_command($user, $from, $msg) {
+    function handle_command($user, $from, $msg)
+    {
hunk ./scripts/maildaemon.php 115
-    function respond($from, $to, $response) {
+    function respond($from, $to, $response)
+    {
hunk ./scripts/maildaemon.php 125
-    function log($level, $msg) {
+    function log($level, $msg)
+    {
hunk ./scripts/maildaemon.php 130
-    function add_notice($user, $msg) {
+    function add_notice($user, $msg)
+    {
hunk ./scripts/maildaemon.php 145
-    function parse_message($fname) {
+    function parse_message($fname)
+    {
hunk ./scripts/maildaemon.php 179
-    function unsupported_type($type) {
+    function unsupported_type($type)
+    {
hunk ./scripts/maildaemon.php 184
-    function cleanup_msg($msg) {
+    function cleanup_msg($msg)
+    {
hunk ./scripts/ombqueuehandler.php 38
-    function transport() {
+    function transport()
+    {
hunk ./scripts/ombqueuehandler.php 43
-    function start() {
+    function start()
+    {
hunk ./scripts/ombqueuehandler.php 49
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./scripts/ombqueuehandler.php 59
-    function finish() {
+    function finish()
+    {
hunk ./scripts/ombqueuehandler.php 63
-    function is_remote($notice) {
+    function is_remote($notice)
+    {
hunk ./scripts/publicqueuehandler.php 38
-    function transport() {
+    function transport()
+    {
hunk ./scripts/publicqueuehandler.php 43
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./scripts/sitemap.php 21
-function index_map() {
+function index_map()
+{
hunk ./scripts/sitemap.php 44
-function standard_map() {
+function standard_map()
+{
hunk ./scripts/sitemap.php 82
-function notices_map() {
+function notices_map()
+{
hunk ./scripts/sitemap.php 121
-function user_map() {
+function user_map()
+{
hunk ./scripts/sitemap.php 215
-function url($url_args) {
+function url($url_args)
+{
hunk ./scripts/sitemap.php 246
-function sitemap($sitemap_args) {
+function sitemap($sitemap_args)
+{
hunk ./scripts/sitemap.php 268
-function urlset($urlset_text) {
+function urlset($urlset_text)
+{
hunk ./scripts/sitemap.php 279
-function sitemapindex($sitemapindex_text) {
+function sitemapindex($sitemapindex_text)
+{
hunk ./scripts/sitemap.php 290
-function array_to_map($url_list, $filename_prefix) {
+function array_to_map($url_list, $filename_prefix)
+{
hunk ./scripts/sitemap.php 309
-function parse_args() {
+function parse_args()
+{
hunk ./scripts/sitemap.php 351
-function trailing_slash($path) {
+function trailing_slash($path)
+{
hunk ./scripts/sitemap.php 361
-function write_file($path, $data) {
+function write_file($path, $data)
+{
hunk ./scripts/sitemap.php 379
-function error ($error_msg) {
+function error ($error_msg)
+{
hunk ./scripts/smsqueuehandler.php 38
-    function transport() {
+    function transport()
+    {
hunk ./scripts/smsqueuehandler.php 43
-    function start() {
+    function start()
+    {
hunk ./scripts/smsqueuehandler.php 49
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
hunk ./scripts/smsqueuehandler.php 54
-    function finish() {
+    function finish()
+    {
hunk ./scripts/xmppconfirmhandler.php 42
-    function class_name() {
+    function class_name()
+    {
hunk ./scripts/xmppconfirmhandler.php 47
-    function run() {
+    function run()
+    {
hunk ./scripts/xmppconfirmhandler.php 104
-    function next_confirm() {
+    function next_confirm()
+    {
hunk ./scripts/xmppconfirmhandler.php 131
-    function clear_old_confirm_claims() {
+    function clear_old_confirm_claims()
+    {
hunk ./scripts/xmppdaemon.php 42
-    function XMPPDaemon($resource=null) {
+    function XMPPDaemon($resource=null)
+    {
hunk ./scripts/xmppdaemon.php 60
-    function connect() {
+    function connect()
+    {
hunk ./scripts/xmppdaemon.php 80
-    function name() {
+    function name()
+    {
hunk ./scripts/xmppdaemon.php 85
-    function run() {
+    function run()
+    {
hunk ./scripts/xmppdaemon.php 97
-    function handle_reconnect(&$pl) {
+    function handle_reconnect(&$pl)
+    {
hunk ./scripts/xmppdaemon.php 103
-    function get_user($from) {
+    function get_user($from)
+    {
hunk ./scripts/xmppdaemon.php 109
-    function handle_message(&$pl) {
+    function handle_message(&$pl)
+    {
hunk ./scripts/xmppdaemon.php 166
-    function is_self($from) {
+    function is_self($from)
+    {
hunk ./scripts/xmppdaemon.php 171
-    function get_ofrom($pl) {
+    function get_ofrom($pl)
+    {
hunk ./scripts/xmppdaemon.php 206
-    function is_autoreply($txt) {
+    function is_autoreply($txt)
+    {
hunk ./scripts/xmppdaemon.php 215
-    function is_otr($txt) {
+    function is_otr($txt)
+    {
hunk ./scripts/xmppdaemon.php 224
-    function is_direct($txt) {
+    function is_direct($txt)
+    {
hunk ./scripts/xmppdaemon.php 233
-    function from_site($address, $msg) {
+    function from_site($address, $msg)
+    {
hunk ./scripts/xmppdaemon.php 239
-    function handle_command($user, $body) {
+    function handle_command($user, $body)
+    {
hunk ./scripts/xmppdaemon.php 252
-    function add_notice(&$user, &$pl) {
+    function add_notice(&$user, &$pl)
+    {
hunk ./scripts/xmppdaemon.php 275
-    function handle_presence(&$pl) {
+    function handle_presence(&$pl)
+    {
hunk ./scripts/xmppdaemon.php 310
-    function log($level, $msg) {
+    function log($level, $msg)
+    {
hunk ./scripts/xmppdaemon.php 315
-    function subscribed($to) {
+    function subscribed($to)
+    {