forked from flyher/shumeipai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xbmc-addons-chinese.html
1316 lines (473 loc) · 175 KB
/
xbmc-addons-chinese.html
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta name="exporter-version" content=mNote Mac 2.4.10"/><meta name="created" content="2013-07-29T14:36:06Z"/><meta name="updated" content="2013-07-29T14:36:06Z"/><title>xbmc-addons-chinese</title></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div>
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 86.44886016845703px; margin: 0px 8px; padding: 0px; text-decoration: initial; width: 1212.1875px;">
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 0px 0px 10px; padding: 0px; text-align: right; text-decoration: initial; width: 1212.1875px;">
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: right; text-decoration: initial;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" onclick="return false;" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;"><u style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: underline;"><b style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;">[email protected]</b></u> <small style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;">▼</small></a>
| <a href="http://code.google.com/u/ma617495/" onclick="return false;" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;"><u style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: underline;">My favorites</u> <small style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;">▼</small></a>
| <a href="http://code.google.com/u/ma617495/" onclick="_CS_click('/gb/ph/profile');" title="Profile, Updates, and Settings" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;"><u style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: underline;">Profile</u></a>
| <a href="https://www.google.com/accounts/Logout?continue=http%3A%2F%2Fcode.google.com%2Fp%2Fxbmc-addons-chinese%2Fdownloads%2Flist" onclick="_CS_click('/gb/ph/signout');" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: initial;"><u style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: right; text-decoration: underline;">Sign out</u></a>
</span>
</div>
<div style="left: 0px; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; height: 0px; margin: 0px; padding: 0px; position: absolute; text-decoration: initial; top: 24px; width: 1228.1817626953125px;"></div>
<div style="right: 0px; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; height: 0px; margin: 0px; padding: 0px; position: absolute; text-decoration: initial; top: 24px; width: 1228.1817626953125px;"></div>
<div style="height: 0.9943181872367859px; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; width: 1212.1875px;"></div>
<!--[if lte IE 7]>
<div style="text-align:center;">
Your version of Internet Explorer is not supported. Try a browser that
contributes to open source, such as <a href="http://www.firefox.com">Firefox</a>,
<a href="http://www.google.com/chrome">Google Chrome</a>, or
<a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a>.
</div>
<![endif]-->
<table style="padding: 0px; margin: 0px 0px 10px; width: 1211.818115234375px; border: 0px none rgb(128, 128, 128); display: table; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 60.909088134765625px; text-decoration: initial;" cellpadding="0" cellspacing="0" itemscope="" itemtype="http://schema.org/CreativeWork">
<tbody style="border: 0px none rgb(128, 128, 128); display: table-row-group; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 60.909088134765625px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1211.818115234375px;"><tr style="height: 60.909088134765625px; border: 0px none rgb(128, 128, 128); display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1211.818115234375px;">
<td style="display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 60.909088134765625px; margin: 0px; padding: 0px; text-align: center; text-decoration: initial; vertical-align: bottom; width: 54.54545211791992px;">
<a href="http://code.google.com/p/xbmc-addons-chinese/" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: center; text-decoration: underline;">
<img src="http://files.note.sdo.com/M5cEN~kgcIj0LX0dE00paJ" alt="Logo" itemprop="image" style="width: 47.99715805053711px; height: 47.99715805053711px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="padding: 0px 0px 0px 6.548295497894287px; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 60.909088134765625px; margin: 0px; text-decoration: initial; vertical-align: middle; width: 720.7244262695313px;">
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 39.09090805053711px; line-height: normal; font-family: arial, sans-serif; height: 46.3636360168457px; margin: 0px; padding: 0px; text-decoration: initial; width: 720.9090576171875px;">
<a href="http://code.google.com/p/xbmc-addons-chinese/" style="border: 0px none rgb(102, 102, 102); color: rgb(102, 102, 102); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 39.09090805053711px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(102, 102, 102) none 0px; padding: 0px; text-decoration: initial;"><span itemprop="name" style="border: 0px none rgb(102, 102, 102); color: rgb(102, 102, 102); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 39.09090805053711px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(102, 102, 102) none 0px; padding: 0px; text-decoration: initial;">xbmc-addons-chinese</span></a>
</div>
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 0px; padding: 0px; text-decoration: initial; width: 720.9090576171875px;">
<a href="http://code.google.com/p/xbmc-addons-chinese/" style="border: 0px none rgb(68, 68, 68); color: rgb(68, 68, 68); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(68, 68, 68) none 0px; padding: 0px; text-decoration: initial;"><span itemprop="description" style="border: 0px none rgb(68, 68, 68); color: rgb(68, 68, 68); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(68, 68, 68) none 0px; padding: 0px; text-decoration: initial;">XBMC媒体中心的中文扩展功能脚本、插件、皮肤(Addon scripts, plugins, and skins for XBMC Media Center)</span></a>
</div>
</td>
<td style="white-space: nowrap; text-align: right; vertical-align: bottom; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 60.909088134765625px; margin: 0px; padding: 0px; text-decoration: initial; width: 429.0909118652344px;">
<form action="/hosting/search" style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 24.545454025268555px; margin: 0px; padding: 0px; text-align: right; text-decoration: initial; white-space: nowrap; width: 429.0909118652344px;">
</form>
</td></tr>
</tbody></table>
</div>
<div style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(235, 239, 249); background-size: auto; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 25.539772033691406px; margin: 0px; padding: 5px 10px 0px 5px; text-decoration: initial; white-space: nowrap; width: 1213.1817626953125px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); cursor: pointer; display: block; float: left; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 5px 15px 6px 10px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap; width: 78.18181610107422px;">Project Home</a>
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: default; display: block; float: left; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 0px 5px -1px 0px; padding: 5px 8.991477012634277px 5.994318008422852px; text-decoration: initial; white-space: nowrap; width: 70px; background-position: 0% 0%; background-repeat: repeat repeat;">Downloads</a>
<a href="http://code.google.com/p/xbmc-addons-chinese/w/list" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); cursor: pointer; display: block; float: left; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 5px 15px 6px 10px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap; width: 23.636363983154297px;">Wiki</a>
<a href="http://code.google.com/p/xbmc-addons-chinese/issues/list" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); cursor: pointer; display: block; float: left; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 5px 15px 6px 10px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap; width: 37.272727966308594px;">Issues</a>
<a href="http://code.google.com/p/xbmc-addons-chinese/source/checkout" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); cursor: pointer; display: block; float: left; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 5px 15px 6px 10px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap; width: 40.909088134765625px;">Source</a>
<div style="clear: left; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 0px; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap; width: 1213.1817626953125px;"></div>
</div>
<table cellspacing="0" cellpadding="0" align="center" border="0" style="border: 0px none rgb(128, 128, 128); display: table; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 33.6363639831543px; margin: 0px; padding: 0px; text-decoration: initial; width: 1228.1817626953125px;">
<tbody style="border: 0px none rgb(128, 128, 128); display: table-row-group; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 33.6363639831543px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1228.1817626953125px;"><tr style="border: 0px none rgb(128, 128, 128); display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 33.6363639831543px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1228.1817626953125px;">
<td style="background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255, 255, 255)), to(rgb(241, 241, 241))); background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 32.727272033691406px; margin: 0px; padding: 0px 0px 0px 13.991477012634277px; text-decoration: initial; vertical-align: middle; width: 1214.1903076171875px; background-position: 0% 0%; background-repeat: repeat repeat;">
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 22.727272033691406px; margin: 0px; padding: 0px; text-decoration: initial; width: 1214.54541015625px;">
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 22.727272033691406px; margin: 0px; padding: 0px; text-decoration: initial; width: 1214.54541015625px;">
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">Search</span>
<form action="list" method="GET" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">for</span>
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;"></span>
<span style="display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;"></span>
</form>
</span>
</div>
</div>
</td>
<td align="right" valign="top" style="display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 33.6363639831543px; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 0px;"></td>
</tr>
</tbody></table>
<div style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 339.1761169433594px; margin: 0px; padding: 2.997159004211426px; text-decoration: initial; width: 1222.1875px; background-position: 0% 0%; background-repeat: repeat repeat;">
<div style="display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 329.1761169433594px; margin: 0px; padding: 5px; text-decoration: initial; width: 1212.1875px;">
<div style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(235, 239, 249); background-size: auto; display: block; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 0px; padding: 5px; text-decoration: initial; width: 1200.3692626953125px; background-position: 0% 0%; background-repeat: repeat repeat;">
<div style="display: block; float: right; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.545454025268555px; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap; width: 51.818180084228516px;">
1 - 9
of 9
</div>
<form action="list" method="GET" autocomplete="off" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
<span style="display: none; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;"><span style="font-size: 12.727272033691406px; display: inline; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">Columns: </span><span style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;"></span>
</span>
</form>
</div>
<table cellspacing="0" cellpadding="2" border="0" style="display: table; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 257.2727355957031px; margin: 0px; padding: 0px; text-decoration: initial; width: 1210px;">
<thead style="display: table-header-group; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 20px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<tr style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 20px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<th style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; width: 47.01704406738281px; background-position: 0% 0%; background-repeat: repeat repeat;"> </th>
<th nowrap="nowrap" onclick="return _showBelow('pop_0',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 335.1988525390625px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">Filename <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th nowrap="nowrap" onclick="return _showBelow('pop_1',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 432.4715881347656px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">Summary + Labels <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th nowrap="nowrap" onclick="return _showBelow('pop_2',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 82.47158813476563px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">Uploaded <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th nowrap="nowrap" onclick="return _showBelow('pop_3',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 99.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">ReleaseDate <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th nowrap="nowrap" onclick="return _showBelow('pop_4',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 48.835227966308594px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">Size <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th nowrap="nowrap" onclick="return _showBelow('pop_5',this)" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; white-space: nowrap; width: 123.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#" style="text-decoration: initial; border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px 4px 0px 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px 4px 0px 0px; text-align: left; white-space: nowrap;">DownloadCount <span style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 10.909090995788574px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial; white-space: nowrap;">▼</span></a></th>
<th onclick="return _showBelow('pop__dot',this)" style="width: 10.653409004211426px; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(238, 238, 238); background-size: auto; display: table-cell; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 14.204545021057129px; margin: 0px; padding: 1.9886363744735718px 0.9943181872367859px 1.9886363744735718px 1.9886363744735718px; text-align: left; text-decoration: initial; vertical-align: middle; background-position: 0% 0%; background-repeat: repeat repeat;"><a href="http://code.google.com/p/xbmc-addons-chinese/downloads/list#columnprefs" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: bold; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-align: left; text-decoration: initial;">...</a></th>
</tr>
</thead>
<tbody style="display: table-row-group; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 237.27272033691406px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;"><tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://files.note.sdo.com/M5cEN~kgcIiMLX0dE00paA" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'script.xbmc.subtitles-frodo-pre.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/script.xbmc.subtitles-frodo-pre.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/script.xbmc.subtitles-frodo-pre.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://files.note.sdo.com/M5cEN~kgcIj0LX0dE00paH" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
script.xbmc.subtitles-frodo-pre.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
支持smb共享和NFS等网络文件电影字幕从射手网获取的XBMC官方字幕插件
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Oct 22
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Oct 22
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
1.2 MB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-frodo-pre.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
3967
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'script.module.keyboard.chinese-1.2.4-eden.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.2.4-eden.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.2.4-eden.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
script.module.keyboard.chinese-1.2.4-eden.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Chinese keyboard addon module for Eden
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Mar 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Mar 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
94.0 KB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.2.4-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
4729
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'script.xbmc.subtitles-2.9.36fix.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/script.xbmc.subtitles-2.9.36fix.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/script.xbmc.subtitles-2.9.36fix.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
script.xbmc.subtitles-2.9.36fix.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
script.xbmc.subtitles-2.9.36fix
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Mar 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Mar 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
1.1 MB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.xbmc.subtitles-2.9.36fix.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
6592
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'script.module.keyboard.chinese-1.1.1-eden.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.1.1-eden.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.1.1-eden.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
script.module.keyboard.chinese-1.1.1-eden.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Chinese keyboard addon module for Eden
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Feb 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Feb 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
93.7 KB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.1.1-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
2558
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'script.module.keyboard.chinese-1.0.4-dharma.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.0.4-dharma.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/script.module.keyboard.chinese-1.0.4-dharma.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
script.module.keyboard.chinese-1.0.4-dharma.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Chinese keyboard addon module for Dharma
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Feb 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Feb 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
93.7 KB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=script.module.keyboard.chinese-1.0.4-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
1406
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'pps4xbmc.rar');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/pps4xbmc.rar" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/pps4xbmc.rar', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
pps4xbmc.rar
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=pps4xbmc.rar&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Source code for pps4xbmc
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=pps4xbmc.rar&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=pps4xbmc.rar&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=pps4xbmc.rar&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
135 KB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=pps4xbmc.rar&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=pps4xbmc.rar&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
4142
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'repository.googlecode.xbmc-addons-chinese-eden.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/repository.googlecode.xbmc-addons-chinese-eden.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/repository.googlecode.xbmc-addons-chinese-eden.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
repository.googlecode.xbmc-addons-chinese-eden.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Chinese Add-on Repository for XBMC Eden
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
29.7 KB
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 119.2897720336914px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-eden.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
30494
</a></td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: middle; width: 5.653409004211426px; background-position: 0% 0%; background-repeat: repeat repeat;"> </td>
</tr>
<tr onmouseover="_rowRolloverOn(this)" onmouseout="_rowRolloverOff(this); cancelBubble=false" style="display: table-row; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 26.363636016845703px; margin: 0px; padding: 0px; text-decoration: initial; vertical-align: middle; width: 1210px;">
<td nowrap="nowrap" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; white-space: nowrap; width: 42.9261360168457px; background-position: 0% 0%; background-repeat: repeat repeat;">
<img width="15" height="15" id="star_img" src="http://www.gstatic.com/codesite/ph/images/star_off.gif" style="cursor: pointer; width: 15px; height: 15px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;" onclick="starClick(this, 'repository.googlecode.xbmc-addons-chinese-dharma.zip');">
<a href="http://xbmc-addons-chinese.googlecode.com/files/repository.googlecode.xbmc-addons-chinese-dharma.zip" onclick="_gaq.push(['siteTracker._trackEvent', 'Download - Downloaded', '//xbmc-addons-chinese.googlecode.com/files/repository.googlecode.xbmc-addons-chinese-dharma.zip', '']);" title="Download" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial; white-space: nowrap;">
<img src="http://www.gstatic.com/codesite/ph/images/dl_arrow.gif" style="width: 25px; height: 15.994318008422852px; float: none; background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgba(0, 0, 0, 0); background-size: auto; background-position: 0% 0%; background-repeat: repeat repeat;">
</a>
</td>
<td style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 331.1079406738281px; background-position: 0% 0%; background-repeat: repeat repeat;">
<a href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=" style="border: 0px none rgb(0, 0, 204); color: rgb(0, 0, 204); display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; outline: rgb(0, 0, 204) none 0px; padding: 0px; text-decoration: underline; white-space: nowrap;">
repository.googlecode.xbmc-addons-chinese-dharma.zip
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 428.38067626953125px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=" style="display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Chinese Add-on Repository for XBMC Dharma
</a>
</td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 78.38068389892578px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=')" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-decoration: initial; vertical-align: top; width: 95.65340423583984px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-decoration: initial;">
Jan 2012
</a></td>
<td onclick="if (!cancelBubble) _go('detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=')" align="right" style="background-image: none; background-attachment: scroll; background-origin: padding-box; background-clip: border-box; background-color: rgb(255, 255, 255); background-size: auto; cursor: pointer; display: table-cell; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; height: 17.471590042114258px; margin: 0px; padding: 3.9914772510528564px; text-align: -webkit-right; text-decoration: initial; vertical-align: top; width: 44.74431610107422px; background-position: 0% 0%; background-repeat: repeat repeat;"><a onclick="cancelBubble=true;" href="http://code.google.com/p/xbmc-addons-chinese/downloads/detail?name=repository.googlecode.xbmc-addons-chinese-dharma.zip&can=2&q=" style="white-space: nowrap; display: inline; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12.727272033691406px; line-height: normal; font-family: arial, sans-serif; margin: 0px; padding: 0px; text-align: -webkit-right; text-decoration: initial;">
29.7 KB