File: indices.html

package info (click to toggle)
python-openid 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,472 kB
  • ctags: 3,328
  • sloc: python: 16,708; xml: 234; sh: 38; makefile: 30
file content (1659 lines) | stat: -rw-r--r-- 198,244 bytes parent folder | download
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Index</title>
  <link rel="stylesheet" href="epydoc.css" type="text/css"></link>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
      alink="#204080">

<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="center">
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="openid-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="trees.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
    <th bgcolor="#70b0f0" class="navselect">&nbsp;&nbsp;&nbsp;Index&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar" align="right" width="100%">
      <table border="0" cellpadding="0" cellspacing="0">
      <tr><th class="navbar" align="center">
        <p class="nomargin">
          <a class="navbar" target="_top" href="http://openidenabled.com/python-openid/">Python-OpenID</a>
      </p></th></tr></table>
    </th>
  </tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
  <tr valign="top">
    <td width="100%">
    </td>
    <td><table cellpadding="0" cellspacing="0">
      <tr><td align="right"><font size="-2">[<a href="frames.html"target="_top">frames</a>&nbsp;|&nbsp;<a href="indices.html" target="_top">no&nbsp;frames</a>]</font></td></tr>
    </table></td>
</tr></table>
<br />

<!-- =========== START OF TERM INDEX =========== -->
<table class="index" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="index">
  <th colspan="2">Term Index</th></tr>
  <tr><td width="15%">HMAC-SHA1</td>
    <td><i><a href="openid.server.server.AssociateRequest-class.html#index-HMAC_SHA1">openid.server.server.AssociateRequest</a></i></tr></td>
  <tr><td width="15%">association</td>
    <td><i><a href="openid.server.server.AssociateRequest-class.html#index-association">openid.server.server.AssociateRequest</a></i></tr></td>
  <tr><td width="15%">association handle</td>
    <td><i><a href="openid.server.server.CheckAuthRequest-class.html#index-association_handle">openid.server.server.CheckAuthRequest</a></i></tr></td>
  <tr><td width="15%">check_authentication</td>
    <td><i><a href="openid.server.server.AssociateRequest-class.html#index-check_authentication">openid.server.server.AssociateRequest</a></i></tr></td>
  <tr><td width="15%">checkid_immediate</td>
    <td><i><a href="openid.server.server.CheckIDRequest-class.html#index-checkid_immediate">openid.server.server.CheckIDRequest</a></i></tr></td>
  <tr><td width="15%">checkid_setup</td>
    <td><i><a href="openid.server.server.CheckIDRequest-class.html#index-checkid_setup">openid.server.server.CheckIDRequest</a></i></tr></td>
  <tr><td width="15%">invalidate_handle</td>
    <td><i><a href="openid.server.server.CheckAuthRequest-class.html#index-invalidate_handle">openid.server.server.CheckAuthRequest</a></i></tr></td>
  <tr><td width="15%">is_valid</td>
    <td><i><a href="openid.server.server.CheckAuthRequest-class.html#index-is_valid">openid.server.server.CheckAuthRequest</a></i></tr></td>
  <tr><td width="15%">openid.mode</td>
    <td><i><a href="openid.server.server.OpenIDRequest-class.html#index-openid_mode">openid.server.server.OpenIDRequest</a></i></tr></td>
  <tr><td width="15%">public key</td>
    <td><i><a href="openid.server.server.AssociateRequest-class.html#index-public_key">openid.server.server.AssociateRequest</a></i></tr></td>
</table>
<br />

<!-- =========== START OF IDENTIFIER INDEX =========== -->
<table class="index" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="index">
  <th colspan="2">Identifier Index</th></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html"><code>object</code></a></td>
    <td>Class in module <code>__builtin__</code></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__bases__"><code>__bases__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__basicsize__"><code>__basicsize__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__call__"><code>__call__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html"><code>type</code></a></td>
    <td>Class in module <code>__builtin__</code></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__cmp__"><code>__cmp__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#__contains__"><code>__contains__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#__contains__"><code>__contains__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#__contains__"><code>__contains__</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__delattr__"><code>__delattr__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__delattr__"><code>__delattr__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__delattr__"><code>__delattr__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__dictoffset__"><code>__dictoffset__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#__eq__"><code>__eq__</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#__eq__"><code>__eq__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#__eq__"><code>__eq__</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#__eq__"><code>__eq__</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__flags__"><code>__flags__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#__getattr__"><code>__getattr__</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__getattribute__"><code>__getattribute__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__getattribute__"><code>__getattribute__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__getattribute__"><code>__getattribute__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__getitem__"><code>__getitem__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#__getitem__"><code>__getitem__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__getslice__"><code>__getslice__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__hash__"><code>__hash__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__hash__"><code>__hash__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.Exception-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="exceptions.Exception-class.html"><code>exceptions.Exception</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.StandardError-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="exceptions.StandardError-class.html"><code>exceptions.StandardError</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.ValueError-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="exceptions.ValueError-class.html"><code>exceptions.ValueError</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.CancelResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.CancelResponse-class.html"><code>openid.consumer.consumer.CancelResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.FailureResponse-class.html"><code>openid.consumer.consumer.FailureResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SetupNeededResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SetupNeededResponse-class.html"><code>openid.consumer.consumer.SetupNeededResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchResponse-class.html"><code>openid.extensions.ax.FetchResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.StoreRequest-class.html"><code>openid.extensions.ax.StoreRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.StoreResponse-class.html"><code>openid.extensions.ax.StoreResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetchingError-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.fetchers.HTTPFetchingError-class.html"><code>openid.fetchers.HTTPFetchingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Decoder-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.Decoder-class.html"><code>openid.server.server.Decoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.EncodingError-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.EncodingError-class.html"><code>openid.server.server.EncodingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.MalformedReturnURL-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.MalformedReturnURL-class.html"><code>openid.server.server.MalformedReturnURL</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.SigningEncoder-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.SigningEncoder-class.html"><code>openid.server.server.SigningEncoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.UntrustedReturnURL-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.UntrustedReturnURL-class.html"><code>openid.server.server.UntrustedReturnURL</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.server.WebResponse-class.html"><code>openid.server.server.WebResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryFailure-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.discover.DiscoveryFailure-class.html"><code>openid.yadis.discover.DiscoveryFailure</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.BasicServiceEndpoint-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.BasicServiceEndpoint-class.html"><code>openid.yadis.filters.BasicServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.CompoundFilter-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.CompoundFilter-class.html"><code>openid.yadis.filters.CompoundFilter</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.TransformFilterMaker-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.TransformFilterMaker-class.html"><code>openid.yadis.filters.TransformFilterMaker</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xrires.ProxyResolver-class.html#__init__"><code>__init__</code></a></td>
    <td>Method in class <a href="openid.yadis.xrires.ProxyResolver-class.html"><code>openid.yadis.xrires.ProxyResolver</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__itemsize__"><code>__itemsize__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#__iter__"><code>__iter__</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#__iter__"><code>__iter__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#__iter__"><code>__iter__</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#__len__"><code>__len__</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__mro__"><code>__mro__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__name__"><code>__name__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#__ne__"><code>__ne__</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#__ne__"><code>__ne__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#__ne__"><code>__ne__</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#__ne__"><code>__ne__</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.Exception-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="exceptions.Exception-class.html"><code>exceptions.Exception</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.StandardError-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="exceptions.StandardError-class.html"><code>exceptions.StandardError</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.ValueError-class.html#__new__"><code>__new__</code></a></td>
    <td>Method in class <a href="exceptions.ValueError-class.html"><code>exceptions.ValueError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#__nonzero__"><code>__nonzero__</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__reduce__"><code>__reduce__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__reduce__"><code>__reduce__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__reduce_ex__"><code>__reduce_ex__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.FailureResponse-class.html"><code>openid.consumer.consumer.FailureResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#__repr__"><code>__repr__</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__setattr__"><code>__setattr__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__setattr__"><code>__setattr__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__setattr__"><code>__setattr__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__setstate__"><code>__setstate__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="__builtin__.object-class.html"><code>__builtin__.object</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.EncodingError-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.server.server.EncodingError-class.html"><code>openid.server.server.EncodingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.UntrustedReturnURL-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.server.server.UntrustedReturnURL-class.html"><code>openid.server.server.UntrustedReturnURL</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#__str__"><code>__str__</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__subclasses__"><code>__subclasses__</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#__weakrefoffset__"><code>__weakrefoffset__</code></a></td>
    <td>Variable in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#add"><code>add</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#add"><code>add</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#add_nonce_sql"><code>add_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#add_nonce_sql"><code>add_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#add_nonce_sql"><code>add_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#addAlias"><code>addAlias</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#addAllowedType"><code>addAllowedType</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#addExtension"><code>addExtension</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#addExtension"><code>addExtension</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#addExtensionArg"><code>addExtensionArg</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#allowed_assoc_types"><code>allowed_assoc_types</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html#allowed_assoc_types"><code>allowed_assoc_types</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA256ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.PlainTextServerSession-class.html#allowed_assoc_types"><code>allowed_assoc_types</code></a></td>
    <td>Variable in class <a href="openid.server.server.PlainTextServerSession-class.html"><code>openid.server.server.PlainTextServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#allowed_openid_namespaces"><code>allowed_openid_namespaces</code></a></td>
    <td>Variable in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#allowed_types"><code>allowed_types</code></a></td>
    <td>Variable in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#allRequestedFields"><code>allRequestedFields</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AlreadySigned-class.html"><code>AlreadySigned</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#answer"><code>answer</code></a></td>
    <td>Method in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#answer"><code>answer</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#answer"><code>answer</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#answer"><code>answer</code></a></td>
    <td>Method in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.PlainTextServerSession-class.html#answer"><code>answer</code></a></td>
    <td>Method in class <a href="openid.server.server.PlainTextServerSession-class.html"><code>openid.server.server.PlainTextServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#answerUnsupported"><code>answerUnsupported</code></a></td>
    <td>Method in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html#appendArgs"><code>appendArgs</code></a></td>
    <td>Function in module <a href="openid.oidutil-module.html"><code>openid.oidutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.services-module.html#applyFilter"><code>applyFilter</code></a></td>
    <td>Function in module <a href="openid.yadis.services-module.html"><code>openid.yadis.services</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.TransformFilterMaker-class.html#applyFilters"><code>applyFilters</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.TransformFilterMaker-class.html"><code>openid.yadis.filters.TransformFilterMaker</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#args"><code>args</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#assoc_handle"><code>assoc_handle</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#assoc_handle"><code>assoc_handle</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#assoc_keys"><code>assoc_keys</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#assoc_type"><code>assoc_type</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#assoc_type"><code>assoc_type</code></a></td>
    <td>Variable in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html"><code>AssociateRequest</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association-module.html"><code>association</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html"><code>Association</code></a></td>
    <td>Class in module <a href="openid.association-module.html"><code>openid.association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#associations_table"><code>associations_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#associations_table"><code>associations_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#associations_table"><code>associations_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#associations_table"><code>associations_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html"><code>AuthRequest</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html#autoSubmitHTML"><code>autoSubmitHTML</code></a></td>
    <td>Function in module <a href="openid.oidutil-module.html"><code>openid.oidutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax-module.html"><code>ax</code></a></td>
    <td>Module in package <a href="openid.extensions-module.html"><code>openid.extensions</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#base64ToLong"><code>base64ToLong</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html"><code>BaseException</code></a></td>
    <td>Class in module <code>exceptions</code></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.BasicServiceEndpoint-class.html"><code>BasicServiceEndpoint</code></a></td>
    <td>Class in module <a href="openid.yadis.filters-module.html"><code>openid.yadis.filters</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#begin"><code>begin</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#beginWithoutDiscovery"><code>beginWithoutDiscovery</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#best"><code>best</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#binaryToLong"><code>binaryToLong</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#blobDecode"><code>blobDecode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#blobDecode"><code>blobDecode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#blobDecode"><code>blobDecode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#blobEncode"><code>blobEncode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#blobEncode"><code>blobEncode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#blobEncode"><code>blobEncode</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#body"><code>body</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html#body"><code>body</code></a></td>
    <td>Variable in class <a href="openid.server.server.WebResponse-class.html"><code>openid.server.server.WebResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#buildDiscoveryURL"><code>buildDiscoveryURL</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer-module.html#CANCEL"><code>CANCEL</code></a></td>
    <td>Variable in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.CancelResponse-class.html"><code>CancelResponse</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#canonicalID"><code>canonicalID</code></a></td>
    <td>Variable in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#CDATA_CONTENT_ELEMENTS"><code>CDATA_CONTENT_ELEMENTS</code></a></td>
    <td>Variable in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#CDATA_CONTENT_ELEMENTS"><code>CDATA_CONTENT_ELEMENTS</code></a></td>
    <td>Variable in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#check_for_whole_start_tag"><code>check_for_whole_start_tag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html"><code>CheckAuthRequest</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html"><code>CheckIDRequest</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#checkMessageSignature"><code>checkMessageSignature</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#checkSanity"><code>checkSanity</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.nonce-module.html#checkTimestamp"><code>checkTimestamp</code></a></td>
    <td>Function in module <a href="openid.store.nonce-module.html"><code>openid.store.nonce</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#checkURL"><code>checkURL</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#claimed_id"><code>claimed_id</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#clean_assoc_sql"><code>clean_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#clean_assoc_sql"><code>clean_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#clean_assoc_sql"><code>clean_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#clean_nonce_sql"><code>clean_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#clean_nonce_sql"><code>clean_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#clean_nonce_sql"><code>clean_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#cleanup"><code>cleanup</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#cleanup"><code>cleanup</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#cleanup"><code>cleanup</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#cleanup"><code>cleanup</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#cleanupAssociations"><code>cleanupAssociations</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#cleanupAssociations"><code>cleanupAssociations</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#cleanupAssociations"><code>cleanupAssociations</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#cleanupAssociations"><code>cleanupAssociations</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#cleanupNonces"><code>cleanupNonces</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#cleanupNonces"><code>cleanupNonces</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#cleanupNonces"><code>cleanupNonces</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#cleanupNonces"><code>cleanupNonces</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#clear_cdata_mode"><code>clear_cdata_mode</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#close"><code>close</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html#code"><code>code</code></a></td>
    <td>Variable in class <a href="openid.server.server.WebResponse-class.html"><code>openid.server.server.WebResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#compatibilityMode"><code>compatibilityMode</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#complete"><code>complete</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.CompoundFilter-class.html"><code>CompoundFilter</code></a></td>
    <td>Class in module <a href="openid.yadis.filters-module.html"><code>openid.yadis.filters</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.constants-module.html"><code>constants</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer-module.html"><code>consumer</code></a></td>
    <td>Package in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer-module.html"><code>consumer</code></a></td>
    <td>Module in package <a href="openid.consumer-module.html"><code>openid.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html"><code>Consumer</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#consumer"><code>consumer</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#consumer_pubkey"><code>consumer_pubkey</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#consumer_pubkey"><code>consumer_pubkey</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#content_type"><code>content_type</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#copy"><code>copy</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#copy"><code>copy</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#create_assoc_sql"><code>create_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#create_assoc_sql"><code>create_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#create_assoc_sql"><code>create_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#create_nonce_sql"><code>create_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#create_nonce_sql"><code>create_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#create_nonce_sql"><code>create_nonce_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#createAssociation"><code>createAssociation</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers-module.html#createHTTPFetcher"><code>createHTTPFetcher</code></a></td>
    <td>Function in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#createManager"><code>createManager</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#createTables"><code>createTables</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html"><code>cryptutil</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#current"><code>current</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#data"><code>data</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#db_set_assoc"><code>db_set_assoc</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Decoder-class.html#decode"><code>decode</code></a></td>
    <td>Method in class <a href="openid.server.server.Decoder-class.html"><code>openid.server.server.Decoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Decoder-class.html"><code>Decoder</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#decoder"><code>decoder</code></a></td>
    <td>Variable in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Decoder-class.html"><code>Decoder</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#decodeRequest"><code>decodeRequest</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#DEFAULT_GEN"><code>DEFAULT_GEN</code></a></td>
    <td>Variable in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#DEFAULT_MOD"><code>DEFAULT_MOD</code></a></td>
    <td>Variable in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association-module.html#default_negotiator"><code>default_negotiator</code></a></td>
    <td>Variable in module <a href="openid.association-module.html"><code>openid.association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#DEFAULT_SUFFIX"><code>DEFAULT_SUFFIX</code></a></td>
    <td>Variable in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Decoder-class.html#defaultDecoder"><code>defaultDecoder</code></a></td>
    <td>Method in class <a href="openid.server.server.Decoder-class.html"><code>openid.server.server.Decoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#delArg"><code>delArg</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#deserialize"><code>deserialize</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#destroyManager"><code>destroyManager</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh-module.html"><code>dh</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#dh"><code>dh</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#dh"><code>dh</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.kvform-module.html#dictToKV"><code>dictToKV</code></a></td>
    <td>Function in module <a href="openid.kvform-module.html"><code>openid.kvform</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html"><code>DiffieHellman</code></a></td>
    <td>Class in module <a href="openid.dh-module.html"><code>openid.dh</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>DiffieHellmanSHA1ServerSession</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html"><code>DiffieHellmanSHA256ServerSession</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover-module.html"><code>discover</code></a></td>
    <td>Module in package <a href="openid.consumer-module.html"><code>openid.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover-module.html#discover"><code>discover</code></a></td>
    <td>Function in module <a href="openid.consumer.discover-module.html"><code>openid.consumer.discover</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover-module.html"><code>discover</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover-module.html#discover"><code>discover</code></a></td>
    <td>Function in module <a href="openid.yadis.discover-module.html"><code>openid.yadis.discover</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html"><code>Discovery</code></a></td>
    <td>Class in module <a href="openid.yadis.manager-module.html"><code>openid.yadis.manager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryFailure-class.html"><code>DiscoveryFailure</code></a></td>
    <td>Class in module <a href="openid.yadis.discover-module.html"><code>openid.yadis.discover</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html"><code>DiscoveryResult</code></a></td>
    <td>Class in module <a href="openid.yadis.discover-module.html"><code>openid.yadis.discover</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Encoder-class.html#encode"><code>encode</code></a></td>
    <td>Method in class <a href="openid.server.server.Encoder-class.html"><code>openid.server.server.Encoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.SigningEncoder-class.html#encode"><code>encode</code></a></td>
    <td>Method in class <a href="openid.server.server.SigningEncoder-class.html"><code>openid.server.server.SigningEncoder</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Encoder-class.html"><code>Encoder</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#encoder"><code>encoder</code></a></td>
    <td>Variable in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.SigningEncoder-class.html"><code>SigningEncoder</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#encodeResponse"><code>encodeResponse</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#encodeToKVForm"><code>encodeToKVForm</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#encodeToKVForm"><code>encodeToKVForm</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#encodeToURL"><code>encodeToURL</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#encodeToURL"><code>encodeToURL</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#encodeToURL"><code>encodeToURL</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.EncodingError-class.html"><code>EncodingError</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association-module.html#encrypted_negotiator"><code>encrypted_negotiator</code></a></td>
    <td>Variable in module <a href="openid.association-module.html"><code>openid.association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#endpoint"><code>endpoint</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#error"><code>error</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#error"><code>error</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#escapeForIRI"><code>escapeForIRI</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html"><code>etxrd</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.Exception-class.html"><code>Exception</code></a></td>
    <td>Class in module <code>exceptions</code></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#exceptions"><code>exceptions</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#expandService"><code>expandService</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#expandServices"><code>expandServices</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#expiresIn"><code>expiresIn</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a> in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension-module.html"><code>extension</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html"><code>Extension</code></a></td>
    <td>Class in module <a href="openid.extension-module.html"><code>openid.extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#extensionResponse"><code>extensionResponse</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions-module.html"><code>extensions</code></a></td>
    <td>Package in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#extractResponse"><code>extractResponse</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer-module.html#FAILURE"><code>FAILURE</code></a></td>
    <td>Variable in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html#FAILURE_MODE"><code>FAILURE_MODE</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.StoreResponse-class.html"><code>openid.extensions.ax.StoreResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html"><code>FailureResponse</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#feed"><code>feed</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetcher-class.html#fetch"><code>fetch</code></a></td>
    <td>Method in class <a href="openid.fetchers.HTTPFetcher-class.html"><code>openid.fetchers.HTTPFetcher</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers-module.html#fetch"><code>fetch</code></a></td>
    <td>Function in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers-module.html"><code>fetchers</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html"><code>FetchRequest</code></a></td>
    <td>Class in module <a href="openid.extensions.ax-module.html"><code>openid.extensions.ax</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html"><code>FetchResponse</code></a></td>
    <td>Class in module <a href="openid.extensions.ax-module.html"><code>openid.extensions.ax</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#fields"><code>fields</code></a></td>
    <td>Variable in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html"><code>FileOpenIDStore</code></a></td>
    <td>Class in module <a href="openid.store.filestore-module.html"><code>openid.store.filestore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore-module.html"><code>filestore</code></a></td>
    <td>Module in package <a href="openid.store-module.html"><code>openid.store</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters-module.html"><code>filters</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#final_url"><code>final_url</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.parsehtml-module.html#findHTMLMeta"><code>findHTMLMeta</code></a></td>
    <td>Function in module <a href="openid.yadis.parsehtml-module.html"><code>openid.yadis.parsehtml</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#formMarkup"><code>formMarkup</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#forURL"><code>forURL</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html#fromBase64"><code>fromBase64</code></a></td>
    <td>Function in module <a href="openid.oidutil-module.html"><code>openid.oidutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#fromBasicServiceEndpoint"><code>fromBasicServiceEndpoint</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.BasicServiceEndpoint-class.html#fromBasicServiceEndpoint"><code>fromBasicServiceEndpoint</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.BasicServiceEndpoint-class.html"><code>openid.yadis.filters.BasicServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#fromDefaults"><code>fromDefaults</code></a></td>
    <td>Method in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#fromDiscoveryResult"><code>fromDiscoveryResult</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#fromExpiresIn"><code>fromExpiresIn</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#fromHTML"><code>fromHTML</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#fromKVForm"><code>fromKVForm</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#fromMessage"><code>fromMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#fromMessage"><code>fromMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#fromMessage"><code>fromMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#fromMessage"><code>fromMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.PlainTextServerSession-class.html#fromMessage"><code>fromMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.PlainTextServerSession-class.html"><code>openid.server.server.PlainTextServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#fromOPEndpointURL"><code>fromOPEndpointURL</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#fromOpenIDArgs"><code>fromOpenIDArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#fromOpenIDRequest"><code>fromOpenIDRequest</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#fromOpenIDRequest"><code>fromOpenIDRequest</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#fromPostArgs"><code>fromPostArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html#fromSuccessResponse"><code>fromSuccessResponse</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchResponse-class.html"><code>openid.extensions.ax.FetchResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#fromSuccessResponse"><code>fromSuccessResponse</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#fromXRDS"><code>fromXRDS</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#get"><code>get</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#get"><code>get</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#get_assoc_sql"><code>get_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#get_assoc_sql"><code>get_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#get_assoc_sql"><code>get_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#get_assocs_sql"><code>get_assocs_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#get_assocs_sql"><code>get_assocs_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#get_assocs_sql"><code>get_assocs_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#get_expired_sql"><code>get_expired_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#get_expired_sql"><code>get_expired_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#get_expired_sql"><code>get_expired_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#get_starttag_text"><code>get_starttag_text</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#getAlias"><code>getAlias</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#getAliasedArg"><code>getAliasedArg</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#getAllowedType"><code>getAllowedType</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#getArg"><code>getArg</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#getArgs"><code>getArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#getAssociation"><code>getAssociation</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#getAssociation"><code>getAssociation</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#getAssociation"><code>getAssociation</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#getAssociation"><code>getAssociation</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#getAssociation"><code>getAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#getAssociationFilename"><code>getAssociationFilename</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#getCancelURL"><code>getCancelURL</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#getCanonicalID"><code>getCanonicalID</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers-module.html#getDefaultFetcher"><code>getDefaultFetcher</code></a></td>
    <td>Function in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#getDisplayIdentifier"><code>getDisplayIdentifier</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#getExpiresIn"><code>getExpiresIn</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchResponse-class.html"><code>openid.extensions.ax.FetchResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreRequest-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.StoreRequest-class.html"><code>openid.extensions.ax.StoreRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.StoreResponse-class.html"><code>openid.extensions.ax.StoreResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#getExtensionArgs"><code>getExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#getKey"><code>getKey</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#getLocalID"><code>getLocalID</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#getManager"><code>getManager</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#getMessage"><code>getMessage</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#getMessageSignature"><code>getMessageSignature</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#getNamespaceURI"><code>getNamespaceURI</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#getNextService"><code>getNextService</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#getOpenIDNamespace"><code>getOpenIDNamespace</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#getpos"><code>getpos</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#getPriority"><code>getPriority</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#getPriorityStrict"><code>getPriorityStrict</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#getRequiredAttrs"><code>getRequiredAttrs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#getReturnTo"><code>getReturnTo</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#getReturnTo"><code>getReturnTo</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.CompoundFilter-class.html#getServiceEndpoints"><code>getServiceEndpoints</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.CompoundFilter-class.html"><code>openid.yadis.filters.CompoundFilter</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.IFilter-class.html#getServiceEndpoints"><code>getServiceEndpoints</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.IFilter-class.html"><code>openid.yadis.filters.IFilter</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.TransformFilterMaker-class.html#getServiceEndpoints"><code>getServiceEndpoints</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.TransformFilterMaker-class.html"><code>openid.yadis.filters.TransformFilterMaker</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.services-module.html#getServiceEndpoints"><code>getServiceEndpoints</code></a></td>
    <td>Function in module <a href="openid.yadis.services-module.html"><code>openid.yadis.services</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#getSessionKey"><code>getSessionKey</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#getSharedSecret"><code>getSharedSecret</code></a></td>
    <td>Method in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#getSigned"><code>getSigned</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#getSignedNS"><code>getSignedNS</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#getYadisXRD"><code>getYadisXRD</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#goahead"><code>goahead</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#handle"><code>handle</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_charref"><code>handle_charref</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_comment"><code>handle_comment</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_data"><code>handle_data</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_decl"><code>handle_decl</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_endtag"><code>handle_endtag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_entityref"><code>handle_entityref</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_pi"><code>handle_pi</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_startendtag"><code>handle_startendtag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#handle_starttag"><code>handle_starttag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#handleRequest"><code>handleRequest</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#has_key"><code>has_key</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#has_key"><code>has_key</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#hash_func"><code>hash_func</code></a></td>
    <td>Method in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html#hash_func"><code>hash_func</code></a></td>
    <td>Method in class <a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA256ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#hasKey"><code>hasKey</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#hasReturnTo"><code>hasReturnTo</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#headers"><code>headers</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html#headers"><code>headers</code></a></td>
    <td>Variable in class <a href="openid.server.server.WebResponse-class.html"><code>openid.server.server.WebResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#hmacSha1"><code>hmacSha1</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#hmacSha256"><code>hmacSha256</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#htmlMarkup"><code>htmlMarkup</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser</code></a></td>
    <td>Class in module <code>HTMLParser</code></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPError-class.html"><code>HTTPError</code></a></td>
    <td>Class in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetcher-class.html"><code>HTTPFetcher</code></a></td>
    <td>Class in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetchingError-class.html"><code>HTTPFetchingError</code></a></td>
    <td>Class in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html"><code>HTTPResponse</code></a></td>
    <td>Class in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#identifierScheme"><code>identifierScheme</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#identity"><code>identity</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.CancelResponse-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.CancelResponse-class.html"><code>openid.consumer.consumer.CancelResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.FailureResponse-class.html"><code>openid.consumer.consumer.FailureResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SetupNeededResponse-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SetupNeededResponse-class.html"><code>openid.consumer.consumer.SetupNeededResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryFailure-class.html#identity_url"><code>identity_url</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryFailure-class.html"><code>openid.yadis.discover.DiscoveryFailure</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#idSelect"><code>idSelect</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.IFilter-class.html"><code>IFilter</code></a></td>
    <td>Class in module <a href="openid.yadis.filters-module.html"><code>openid.yadis.filters</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#immediate"><code>immediate</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface-module.html"><code>interface</code></a></td>
    <td>Module in package <a href="openid.store-module.html"><code>openid.store</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#invalidate"><code>invalidate</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#invalidate_handle"><code>invalidate_handle</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#iriToURI"><code>iriToURI</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#isAllowed"><code>isAllowed</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#isDefined"><code>isDefined</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#isImplicit"><code>isImplicit</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#isOpenID1"><code>isOpenID1</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#isOpenID1"><code>isOpenID1</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#isOpenID2"><code>isOpenID2</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#isOPIdentifier"><code>isOPIdentifier</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#isSane"><code>isSane</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#isSigned"><code>isSigned</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#issued"><code>issued</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#isXRDS"><code>isXRDS</code></a></td>
    <td>Method in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#isXRDS"><code>isXRDS</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#items"><code>items</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#iterAliases"><code>iterAliases</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#iterAttrs"><code>iterAttrs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#iteritems"><code>iteritems</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#iteritems"><code>iteritems</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#iterkeys"><code>iterkeys</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html#iterNamespaceURIs"><code>iterNamespaceURIs</code></a></td>
    <td>Method in class <a href="openid.message.NamespaceMap-class.html"><code>openid.message.NamespaceMap</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#iterServices"><code>iterServices</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#keys"><code>keys</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.kvform-module.html"><code>kvform</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.kvform-module.html#kvToDict"><code>kvToDict</code></a></td>
    <td>Function in module <a href="openid.kvform-module.html"><code>openid.kvform</code></a></td></tr>
  <tr><td width="15%"><a href="openid.kvform-module.html#kvToSeq"><code>kvToSeq</code></a></td>
    <td>Function in module <a href="openid.kvform-module.html"><code>openid.kvform</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#lifetime"><code>lifetime</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html#log"><code>log</code></a></td>
    <td>Function in module <a href="openid.oidutil-module.html"><code>openid.oidutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#longToBase64"><code>longToBase64</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#longToBinary"><code>longToBinary</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.MalformedReturnURL-class.html"><code>MalformedReturnURL</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.MalformedTrustRoot-class.html"><code>MalformedTrustRoot</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager-module.html"><code>manager</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.BasicServiceEndpoint-class.html#matchTypes"><code>matchTypes</code></a></td>
    <td>Method in class <a href="openid.yadis.filters.BasicServiceEndpoint-class.html"><code>openid.yadis.filters.BasicServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html"><code>MemoryStore</code></a></td>
    <td>Class in module <a href="openid.store.memstore-module.html"><code>openid.store.memstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore-module.html"><code>memstore</code></a></td>
    <td>Module in package <a href="openid.store-module.html"><code>openid.store</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.BaseException-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="exceptions.BaseException-class.html"><code>exceptions.BaseException</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.FailureResponse-class.html"><code>openid.consumer.consumer.FailureResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message-module.html"><code>message</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html"><code>Message</code></a></td>
    <td>Class in module <a href="openid.message-module.html"><code>openid.message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#message"><code>message</code></a></td>
    <td>Variable in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.parsehtml.MetaNotFound-class.html"><code>MetaNotFound</code></a></td>
    <td>Class in module <a href="openid.yadis.parsehtml-module.html"><code>openid.yadis.parsehtml</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters-module.html#mkFilter"><code>mkFilter</code></a></td>
    <td>Function in module <a href="openid.yadis.filters-module.html"><code>openid.yadis.filters</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.nonce-module.html#mkNonce"><code>mkNonce</code></a></td>
    <td>Function in module <a href="openid.store.nonce-module.html"><code>openid.store.nonce</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#mkXRDTag"><code>mkXRDTag</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.FetchResponse-class.html"><code>openid.extensions.ax.FetchResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.StoreRequest-class.html"><code>openid.extensions.ax.StoreRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDRequest-class.html#mode"><code>mode</code></a></td>
    <td>Variable in class <a href="openid.server.server.OpenIDRequest-class.html"><code>openid.server.server.OpenIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html#mro"><code>mro</code></a></td>
    <td>Method in class <a href="__builtin__.type-class.html"><code>__builtin__.type</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html"><code>MySQLStore</code></a></td>
    <td>Class in module <a href="openid.store.sqlstore-module.html"><code>openid.store.sqlstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#namespace"><code>namespace</code></a></td>
    <td>Class in module <a href="openid.store.sqlstore-module.html"><code>openid.store.sqlstore</code></a> in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.NamespaceMap-class.html"><code>NamespaceMap</code></a></td>
    <td>Class in module <a href="openid.message-module.html"><code>openid.message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#namespaces"><code>namespaces</code></a></td>
    <td>Variable in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#needsSigning"><code>needsSigning</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#negotiator"><code>negotiator</code></a></td>
    <td>Variable in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#new_assoc_sql"><code>new_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#next"><code>next</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.nonce-module.html"><code>nonce</code></a></td>
    <td>Module in package <a href="openid.store-module.html"><code>openid.store</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#nonces_table"><code>nonces_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#nonces_table"><code>nonces_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#nonces_table"><code>nonces_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#nonces_table"><code>nonces_table</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.NoReturnToError-class.html"><code>NoReturnToError</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#normalized_uri"><code>normalized_uri</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#ns_alias"><code>ns_alias</code></a></td>
    <td>Variable in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#ns_alias"><code>ns_alias</code></a></td>
    <td>Variable in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#ns_alias"><code>ns_alias</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#ns_alias"><code>ns_alias</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#ns_args"><code>ns_args</code></a></td>
    <td>Variable in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#ns_uri"><code>ns_uri</code></a></td>
    <td>Variable in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#ns_uri"><code>ns_uri</code></a></td>
    <td>Variable in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#ns_uri"><code>ns_uri</code></a></td>
    <td>Variable in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html#ns_uri"><code>ns_uri</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegResponse-class.html"><code>openid.extensions.sreg.SRegResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#nsTag"><code>nsTag</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.object-class.html"><code>object</code></a></td>
    <td>Class in module <code>__builtin__</code></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html"><code>oidutil</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#op_endpoint"><code>op_endpoint</code></a></td>
    <td>Variable in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid-module.html"><code>openid</code></a></td>
    <td>Package</td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#openid_associate"><code>openid_associate</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#openid_check_authentication"><code>openid_check_authentication</code></a></td>
    <td>Method in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#openid_type_uris"><code>openid_type_uris</code></a></td>
    <td>Variable in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDRequest-class.html"><code>OpenIDRequest</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html"><code>OpenIDResponse</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>OpenIDServiceEndpoint</code></a></td>
    <td>Class in module <a href="openid.consumer.discover-module.html"><code>openid.consumer.discover</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html"><code>OpenIDStore</code></a></td>
    <td>Class in module <a href="openid.store.interface-module.html"><code>openid.store.interface</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#optional"><code>optional</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#parse"><code>parse</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#parse_comment"><code>parse_comment</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#parse_declaration"><code>parse_declaration</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#parse_endtag"><code>parse_endtag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#parse_marked_section"><code>parse_marked_section</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#parse_pi"><code>parse_pi</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#parse_starttag"><code>parse_starttag</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#parseExtensionArgs"><code>parseExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchResponse-class.html#parseExtensionArgs"><code>parseExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.FetchResponse-class.html"><code>openid.extensions.ax.FetchResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#parseExtensionArgs"><code>parseExtensionArgs</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.parsehtml-module.html"><code>parsehtml</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html"><code>ParserBase</code></a></td>
    <td>Class in module <code>markupbase</code></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#parseService"><code>parseService</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#parseXRDS"><code>parseXRDS</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.PlainTextServerSession-class.html"><code>PlainTextServerSession</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#policy_url"><code>policy_url</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>PostgreSQLStore</code></a></td>
    <td>Class in module <a href="openid.store.sqlstore-module.html"><code>openid.store.sqlstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#preferredNamespace"><code>preferredNamespace</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#PREFIX"><code>PREFIX</code></a></td>
    <td>Variable in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.etxrd-module.html#prioSort"><code>prioSort</code></a></td>
    <td>Function in module <a href="openid.yadis.etxrd-module.html"><code>openid.yadis.etxrd</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html"><code>ProtocolError</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#providerIsAuthoritative"><code>providerIsAuthoritative</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xrires.ProxyResolver-class.html"><code>ProxyResolver</code></a></td>
    <td>Class in module <a href="openid.yadis.xrires-module.html"><code>openid.yadis.xrires</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xrires.ProxyResolver-class.html#query"><code>query</code></a></td>
    <td>Method in class <a href="openid.yadis.xrires.ProxyResolver-class.html"><code>openid.yadis.xrires.ProxyResolver</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xrires.ProxyResolver-class.html#queryURL"><code>queryURL</code></a></td>
    <td>Method in class <a href="openid.yadis.xrires.ProxyResolver-class.html"><code>openid.yadis.xrires.ProxyResolver</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#randomString"><code>randomString</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#redirectURL"><code>redirectURL</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message-module.html#registerNamespaceAlias"><code>registerNamespaceAlias</code></a></td>
    <td>Function in module <a href="openid.message-module.html"><code>openid.message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#remove"><code>remove</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#remove_assoc_sql"><code>remove_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#remove_assoc_sql"><code>remove_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#remove_assoc_sql"><code>remove_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.urinorm-module.html#remove_dot_segments"><code>remove_dot_segments</code></a></td>
    <td>Function in module <a href="openid.urinorm-module.html"><code>openid.urinorm</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#removeAssociation"><code>removeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#removeAssociation"><code>removeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#removeAssociation"><code>removeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#removeAssociation"><code>removeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#renderAsForm"><code>renderAsForm</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#request"><code>request</code></a></td>
    <td>Variable in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#request_uri"><code>request_uri</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#requested_attributes"><code>requested_attributes</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#requestField"><code>requestField</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#requestFields"><code>requestFields</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#required"><code>required</code></a></td>
    <td>Variable in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#required_fields"><code>required_fields</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#reset"><code>reset</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#reset"><code>reset</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.EncodingError-class.html#response"><code>response</code></a></td>
    <td>Variable in class <a href="openid.server.server.EncodingError-class.html"><code>openid.server.server.EncodingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.EncodingError-class.html#response"><code>response</code></a></td>
    <td>Variable in class <a href="openid.server.server.EncodingError-class.html"><code>openid.server.server.EncodingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#response_text"><code>response_text</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html"><code>WebResponse</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#return_to"><code>return_to</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot-module.html#returnToMatches"><code>returnToMatches</code></a></td>
    <td>Function in module <a href="openid.server.trustroot-module.html"><code>openid.server.trustroot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#returnToVerified"><code>returnToVerified</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#rootAuthority"><code>rootAuthority</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#secret"><code>secret</code></a></td>
    <td>Variable in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#SECRET_LIFETIME"><code>SECRET_LIFETIME</code></a></td>
    <td>Variable in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.kvform-module.html#seqToKV"><code>seqToKV</code></a></td>
    <td>Function in module <a href="openid.kvform-module.html"><code>openid.kvform</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#serialize"><code>serialize</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server-module.html"><code>server</code></a></td>
    <td>Package in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server-module.html"><code>server</code></a></td>
    <td>Module in package <a href="openid.server-module.html"><code>openid.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html"><code>Server</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html"><code>ServerAssocs</code></a></td>
    <td>Class in module <a href="openid.store.memstore-module.html"><code>openid.store.memstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.services-module.html"><code>services</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#session"><code>session</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#session"><code>session</code></a></td>
    <td>Variable in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#session"><code>session</code></a></td>
    <td>Variable in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.AssociateRequest-class.html#session_classes"><code>session_classes</code></a></td>
    <td>Variable in class <a href="openid.server.server.AssociateRequest-class.html"><code>openid.server.server.AssociateRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#session_key_prefix"><code>session_key_prefix</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#session_key_suffix"><code>session_key_suffix</code></a></td>
    <td>Variable in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html#session_type"><code>session_type</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA1ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA1ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html#session_type"><code>session_type</code></a></td>
    <td>Variable in class <a href="openid.server.server.DiffieHellmanSHA256ServerSession-class.html"><code>openid.server.server.DiffieHellmanSHA256ServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.PlainTextServerSession-class.html#session_type"><code>session_type</code></a></td>
    <td>Variable in class <a href="openid.server.server.PlainTextServerSession-class.html"><code>openid.server.server.PlainTextServerSession</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html"><code>SessionNegotiator</code></a></td>
    <td>Class in module <a href="openid.association-module.html"><code>openid.association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.ServerAssocs-class.html#set"><code>set</code></a></td>
    <td>Method in class <a href="openid.store.memstore.ServerAssocs-class.html"><code>openid.store.memstore.ServerAssocs</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.MySQLStore-class.html#set_assoc_sql"><code>set_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.MySQLStore-class.html"><code>openid.store.sqlstore.MySQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#set_assoc_sql"><code>set_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#set_cdata_mode"><code>set_cdata_mode</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.SessionNegotiator-class.html#setAllowedTypes"><code>setAllowedTypes</code></a></td>
    <td>Method in class <a href="openid.association.SessionNegotiator-class.html"><code>openid.association.SessionNegotiator</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#setAnonymous"><code>setAnonymous</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#setArg"><code>setArg</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.Consumer-class.html#setAssociationPreference"><code>setAssociationPreference</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.Consumer-class.html"><code>openid.consumer.consumer.Consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers-module.html#setDefaultFetcher"><code>setDefaultFetcher</code></a></td>
    <td>Function in module <a href="openid.fetchers-module.html"><code>openid.fetchers</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#setOpenIDNamespace"><code>setOpenIDNamespace</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer-module.html#SETUP_NEEDED"><code>SETUP_NEEDED</code></a></td>
    <td>Variable in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SetupNeededResponse-class.html#setup_url"><code>setup_url</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SetupNeededResponse-class.html"><code>openid.consumer.consumer.SetupNeededResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SetupNeededResponse-class.html"><code>SetupNeededResponse</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#sha1"><code>sha1</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.cryptutil-module.html#sha256"><code>sha256</code></a></td>
    <td>Function in module <a href="openid.cryptutil-module.html"><code>openid.cryptutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.AuthRequest-class.html#shouldSendRedirect"><code>shouldSendRedirect</code></a></td>
    <td>Method in class <a href="openid.consumer.consumer.AuthRequest-class.html"><code>openid.consumer.consumer.AuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#sign"><code>sign</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#sign"><code>sign</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Server-class.html#signatory"><code>signatory</code></a></td>
    <td>Variable in class <a href="openid.server.server.Server-class.html"><code>openid.server.server.Server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html"><code>Signatory</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html"><code>Signatory</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckAuthRequest-class.html#signed"><code>signed</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckAuthRequest-class.html"><code>openid.server.server.CheckAuthRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#signed"><code>signed</code></a></td>
    <td>Variable in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#signed_fields"><code>signed_fields</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.SigningEncoder-class.html"><code>SigningEncoder</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.association.Association-class.html#signMessage"><code>signMessage</code></a></td>
    <td>Method in class <a href="openid.association.Association-class.html"><code>openid.association.Association</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.nonce-module.html#split"><code>split</code></a></td>
    <td>Function in module <a href="openid.store.nonce-module.html"><code>openid.store.nonce</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html"><code>SQLiteStore</code></a></td>
    <td>Class in module <a href="openid.store.sqlstore-module.html"><code>openid.store.sqlstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore-module.html"><code>sqlstore</code></a></td>
    <td>Module in package <a href="openid.store-module.html"><code>openid.store</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html"><code>SQLStore</code></a></td>
    <td>Class in module <a href="openid.store.sqlstore-module.html"><code>openid.store.sqlstore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg-module.html"><code>sreg</code></a></td>
    <td>Module in package <a href="openid.extensions-module.html"><code>openid.extensions</code></a></td></tr>
  <tr><td width="15%"><a href="openid.sreg-module.html"><code>sreg</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html"><code>SRegRequest</code></a></td>
    <td>Class in module <a href="openid.extensions.sreg-module.html"><code>openid.extensions.sreg</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegResponse-class.html"><code>SRegResponse</code></a></td>
    <td>Class in module <a href="openid.extensions.sreg-module.html"><code>openid.extensions.sreg</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.StandardError-class.html"><code>StandardError</code></a></td>
    <td>Class in module <code>exceptions</code></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#started"><code>started</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.CancelResponse-class.html#status"><code>status</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.CancelResponse-class.html"><code>openid.consumer.consumer.CancelResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.FailureResponse-class.html#status"><code>status</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.FailureResponse-class.html"><code>openid.consumer.consumer.FailureResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SetupNeededResponse-class.html#status"><code>status</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SetupNeededResponse-class.html"><code>openid.consumer.consumer.SetupNeededResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html#status"><code>status</code></a></td>
    <td>Variable in class <a href="openid.consumer.consumer.SuccessResponse-class.html"><code>openid.consumer.consumer.SuccessResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPResponse-class.html#status"><code>status</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPResponse-class.html"><code>openid.fetchers.HTTPResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store-module.html"><code>store</code></a></td>
    <td>Package in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html#store"><code>store</code></a></td>
    <td>Method in class <a href="openid.yadis.manager.YadisServiceManager-class.html"><code>openid.yadis.manager.YadisServiceManager</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#storeAssociation"><code>storeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#storeAssociation"><code>storeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#storeAssociation"><code>storeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#storeAssociation"><code>storeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreRequest-class.html"><code>StoreRequest</code></a></td>
    <td>Class in module <a href="openid.extensions.ax-module.html"><code>openid.extensions.ax</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html"><code>StoreResponse</code></a></td>
    <td>Class in module <a href="openid.extensions.ax-module.html"><code>openid.extensions.ax</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh-module.html#strxor"><code>strxor</code></a></td>
    <td>Function in module <a href="openid.dh-module.html"><code>openid.dh</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html#succeeded"><code>succeeded</code></a></td>
    <td>Method in class <a href="openid.extensions.ax.StoreResponse-class.html"><code>openid.extensions.ax.StoreResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer-module.html#SUCCESS"><code>SUCCESS</code></a></td>
    <td>Variable in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.StoreResponse-class.html#SUCCESS_MODE"><code>SUCCESS_MODE</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.StoreResponse-class.html"><code>openid.extensions.ax.StoreResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.consumer.SuccessResponse-class.html"><code>SuccessResponse</code></a></td>
    <td>Class in module <a href="openid.consumer.consumer-module.html"><code>openid.consumer.consumer</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg-module.html#supportsSReg"><code>supportsSReg</code></a></td>
    <td>Function in module <a href="openid.extensions.sreg-module.html"><code>openid.extensions.sreg</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#supportsType"><code>supportsType</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toArgs"><code>toArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.oidutil-module.html#toBase64"><code>toBase64</code></a></td>
    <td>Function in module <a href="openid.oidutil-module.html"><code>openid.oidutil</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toFormMarkup"><code>toFormMarkup</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#toFormMarkup"><code>toFormMarkup</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#toFormMarkup"><code>toFormMarkup</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#toHTML"><code>toHTML</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#toHTML"><code>toHTML</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#toIRINormal"><code>toIRINormal</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toKVForm"><code>toKVForm</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extension.Extension-class.html#toMessage"><code>toMessage</code></a></td>
    <td>Method in class <a href="openid.extension.Extension-class.html"><code>openid.extension.Extension</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#toMessage"><code>toMessage</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toPostArgs"><code>toPostArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#toURINormal"><code>toURINormal</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toURL"><code>toURL</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#toURLEncoded"><code>toURLEncoded</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.filters.TransformFilterMaker-class.html"><code>TransformFilterMaker</code></a></td>
    <td>Class in module <a href="openid.yadis.filters-module.html"><code>openid.yadis.filters</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#trust_root"><code>trust_root</code></a></td>
    <td>Variable in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot-module.html"><code>trustroot</code></a></td>
    <td>Module in package <a href="openid.server-module.html"><code>openid.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html"><code>TrustRoot</code></a></td>
    <td>Class in module <a href="openid.server.trustroot-module.html"><code>openid.server.trustroot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.CheckIDRequest-class.html#trustRootValid"><code>trustRootValid</code></a></td>
    <td>Method in class <a href="openid.server.server.CheckIDRequest-class.html"><code>openid.server.server.CheckIDRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_cleanupAssociations"><code>txn_cleanupAssociations</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_cleanupNonces"><code>txn_cleanupNonces</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_createTables"><code>txn_createTables</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_getAssociation"><code>txn_getAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_removeAssociation"><code>txn_removeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_storeAssociation"><code>txn_storeAssociation</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#txn_useNonce"><code>txn_useNonce</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="__builtin__.type-class.html"><code>type</code></a></td>
    <td>Class in module <code>__builtin__</code></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#unescape"><code>unescape</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="HTMLParser.HTMLParser-class.html#unknown_decl"><code>unknown_decl</code></a></td>
    <td>Method in class <a href="HTMLParser.HTMLParser-class.html"><code>HTMLParser.HTMLParser</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#unknown_decl"><code>unknown_decl</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.UntrustedReturnURL-class.html"><code>UntrustedReturnURL</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.PostgreSQLStore-class.html#update_assoc_sql"><code>update_assoc_sql</code></a></td>
    <td>Variable in class <a href="openid.store.sqlstore.PostgreSQLStore-class.html"><code>openid.store.sqlstore.PostgreSQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.ax.FetchRequest-class.html#update_url"><code>update_url</code></a></td>
    <td>Variable in class <a href="openid.extensions.ax.FetchRequest-class.html"><code>openid.extensions.ax.FetchRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.message.Message-class.html#updateArgs"><code>updateArgs</code></a></td>
    <td>Method in class <a href="openid.message.Message-class.html"><code>openid.message.Message</code></a></td></tr>
  <tr><td width="15%"><a href="markupbase.ParserBase-class.html#updatepos"><code>updatepos</code></a></td>
    <td>Method in class <a href="markupbase.ParserBase-class.html"><code>markupbase.ParserBase</code></a></td></tr>
  <tr><td width="15%"><a href="openid.urinorm-module.html"><code>urinorm</code></a></td>
    <td>Module in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.urinorm-module.html#urinorm"><code>urinorm</code></a></td>
    <td>Function in module <a href="openid.urinorm-module.html"><code>openid.urinorm</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.Discovery-class.html#url"><code>url</code></a></td>
    <td>Variable in class <a href="openid.yadis.manager.Discovery-class.html"><code>openid.yadis.manager.Discovery</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#usedYadisLocation"><code>usedYadisLocation</code></a></td>
    <td>Method in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.filestore.FileOpenIDStore-class.html#useNonce"><code>useNonce</code></a></td>
    <td>Method in class <a href="openid.store.filestore.FileOpenIDStore-class.html"><code>openid.store.filestore.FileOpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.interface.OpenIDStore-class.html#useNonce"><code>useNonce</code></a></td>
    <td>Method in class <a href="openid.store.interface.OpenIDStore-class.html"><code>openid.store.interface.OpenIDStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.memstore.MemoryStore-class.html#useNonce"><code>useNonce</code></a></td>
    <td>Method in class <a href="openid.store.memstore.MemoryStore-class.html"><code>openid.store.memstore.MemoryStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLStore-class.html#useNonce"><code>useNonce</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLStore-class.html"><code>openid.store.sqlstore.SQLStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.store.sqlstore.SQLiteStore-class.html#useNonce"><code>useNonce</code></a></td>
    <td>Method in class <a href="openid.store.sqlstore.SQLiteStore-class.html"><code>openid.store.sqlstore.SQLiteStore</code></a></td></tr>
  <tr><td width="15%"><a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html#usesExtension"><code>usesExtension</code></a></td>
    <td>Method in class <a href="openid.consumer.discover.OpenIDServiceEndpoint-class.html"><code>openid.consumer.discover.OpenIDServiceEndpoint</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#usingDefaultValues"><code>usingDefaultValues</code></a></td>
    <td>Method in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot.TrustRoot-class.html#validateURL"><code>validateURL</code></a></td>
    <td>Method in class <a href="openid.server.trustroot.TrustRoot-class.html"><code>openid.server.trustroot.TrustRoot</code></a></td></tr>
  <tr><td width="15%"><a href="exceptions.ValueError-class.html"><code>ValueError</code></a></td>
    <td>Class in module <code>exceptions</code></td></tr>
  <tr><td width="15%"><a href="openid.server.server.Signatory-class.html#verify"><code>verify</code></a></td>
    <td>Method in class <a href="openid.server.server.Signatory-class.html"><code>openid.server.server.Signatory</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.trustroot-module.html#verifyReturnTo"><code>verifyReturnTo</code></a></td>
    <td>Function in module <a href="openid.server.trustroot-module.html"><code>openid.server.trustroot</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.VersionError-class.html"><code>VersionError</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.WebResponse-class.html"><code>WebResponse</code></a></td>
    <td>Class in module <a href="openid.server.server-module.html"><code>openid.server.server</code></a></td></tr>
  <tr><td width="15%"><a href="openid.extensions.sreg.SRegRequest-class.html#wereFieldsRequested"><code>wereFieldsRequested</code></a></td>
    <td>Method in class <a href="openid.extensions.sreg.SRegRequest-class.html"><code>openid.extensions.sreg.SRegRequest</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.OpenIDResponse-class.html#whichEncoding"><code>whichEncoding</code></a></td>
    <td>Method in class <a href="openid.server.server.OpenIDResponse-class.html"><code>openid.server.server.OpenIDResponse</code></a></td></tr>
  <tr><td width="15%"><a href="openid.server.server.ProtocolError-class.html#whichEncoding"><code>whichEncoding</code></a></td>
    <td>Method in class <a href="openid.server.server.ProtocolError-class.html"><code>openid.server.server.ProtocolError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetchingError-class.html#why"><code>why</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPFetchingError-class.html"><code>openid.fetchers.HTTPFetchingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.fetchers.HTTPFetchingError-class.html#why"><code>why</code></a></td>
    <td>Variable in class <a href="openid.fetchers.HTTPFetchingError-class.html"><code>openid.fetchers.HTTPFetchingError</code></a></td></tr>
  <tr><td width="15%"><a href="openid.dh.DiffieHellman-class.html#xorSecret"><code>xorSecret</code></a></td>
    <td>Method in class <a href="openid.dh.DiffieHellman-class.html"><code>openid.dh.DiffieHellman</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.discover.DiscoveryResult-class.html#xrds_uri"><code>xrds_uri</code></a></td>
    <td>Variable in class <a href="openid.yadis.discover.DiscoveryResult-class.html"><code>openid.yadis.discover.DiscoveryResult</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html"><code>xri</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xri-module.html#XRI"><code>XRI</code></a></td>
    <td>Function in module <a href="openid.yadis.xri-module.html"><code>openid.yadis.xri</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.xrires-module.html"><code>xrires</code></a></td>
    <td>Module in package <a href="openid.yadis-module.html"><code>openid.yadis</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis-module.html"><code>yadis</code></a></td>
    <td>Package in package <a href="openid-module.html"><code>openid</code></a></td></tr>
  <tr><td width="15%"><a href="openid.yadis.manager.YadisServiceManager-class.html"><code>YadisServiceManager</code></a></td>
    <td>Class in module <a href="openid.yadis.manager-module.html"><code>openid.yadis.manager</code></a></td></tr>
</table>
<br />

<!-- =========== START OF NAVBAR =========== -->
<table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="center">
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="openid-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="trees.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>
    <th bgcolor="#70b0f0" class="navselect">&nbsp;&nbsp;&nbsp;Index&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar">&nbsp;&nbsp;&nbsp;<a class="navbar" href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>
    <th class="navbar" align="right" width="100%">
      <table border="0" cellpadding="0" cellspacing="0">
      <tr><th class="navbar" align="center">
        <p class="nomargin">
          <a class="navbar" target="_top" href="http://openidenabled.com/python-openid/">Python-OpenID</a>
      </p></th></tr></table>
    </th>
  </tr>
</table>

<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Wed Apr 22 16:14:21 2009</font></td>
    <td align="right"><a href="http://epydoc.sourceforge.net"
                      ><font size="-2">http://epydoc.sf.net</font></a></td>
  </tr>
</table>
</body>
</html>