-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfs.json
2339 lines (2339 loc) · 564 KB
/
pdfs.json
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
[
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/emechinochloaem_millet_descriptors.html",
"title": "Echinochloa millet descriptors",
"subtitle": "",
"image": "1ab78b77fb.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1983\n\n\n\n\n\nPages: 17 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: EN",
"pdf": "394_Echinochloa_millet_descriptors.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1983",
"pages": "17 p.",
"format": "17x24.5 Softcover; PDF",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/394_Echinochloa_millet_descriptors.pdf?cache=1372930848\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/394_Echinochloa_millet_descriptors']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 252Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/394_Echinochloa_millet_descriptors.pdf?cache=1372930848\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1983<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 17 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/emphaseolus_coccineusem_descriptors.html",
"title": "Phaseolus coccineus descriptors",
"subtitle": "",
"image": "dfd3befaf8.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources (IBPGR), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1983\n\n\n\n\n\nPages: 34 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN",
"pdf": "Descriptor_for_phaseolus_coccineus_159.pdf",
"corporate_author": "International Board for Plant Genetic Resources (IBPGR), Rome (Italy)",
"publication_year": "1983",
"pages": "34 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/Descriptor_for_phaseolus_coccineus_159.pdf?cache=1372930848\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/Descriptor_for_phaseolus_coccineus_159']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 100Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/Descriptor_for_phaseolus_coccineus_159.pdf?cache=1372930848\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources (IBPGR), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources (IBPGR), Rome (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources (IBPGR), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1983<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 34 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/almond_descriptors_revised.html",
"title": "Almond descriptors (revised)",
"subtitle": "",
"image": "676d4a22e2.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources (IBPGR), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1981\n\n\n\n\n\nPages: 30 p.\n\n\n\n\n\nFormat: 21x29.7 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: EN",
"pdf": "470_International_Plant_Genetic_Resources_Instit.___IPGRI___Rome__Italy_.pdf",
"corporate_author": "International Board for Plant Genetic Resources (IBPGR), Rome (Italy)",
"publication_year": "1981",
"pages": "30 p.",
"format": "21x29.7 Softcover; PDF",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/470_International_Plant_Genetic_Resources_Instit.___IPGRI___Rome__Italy_.pdf?cache=1372930848\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/470_International_Plant_Genetic_Resources_Instit.___IPGRI___Rome__Italy_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1314Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/470_International_Plant_Genetic_Resources_Instit.___IPGRI___Rome__Italy_.pdf?cache=1372930848\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources (IBPGR), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources (IBPGR), Rome (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources (IBPGR), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1981<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 30 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 21x29.7 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/emphaseolus_acutifoliusem_descriptors.html",
"title": "Phaseolus acutifolius descriptors",
"subtitle": "",
"image": "7cec292cb3.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources (IBPGR)\n\n\n\n\n\n\n\n\n\nPublication Year: 1985\n\n\n\n\n\nPages: 26 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources (IBPGR)",
"publication_year": "1985",
"pages": "26 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources (IBPGR) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources (IBPGR)<br>\n\n<!-- International Board for Plant Genetic Resources (IBPGR) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 26 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/158\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/apricot_descriptors_revised.html",
"title": "Apricot descriptors (Revised)",
"subtitle": "",
"image": "91534a9822.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)\n\n\n\n\n\n\n\n\n\nPublication Year: 1984\n\n\n\n\n\nPages: 36 p.\n\n\n\n\n\nFormat: 21x29.7 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)",
"publication_year": "1984",
"pages": "36 p.",
"format": "21x29.7 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1984<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 36 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 21x29.7 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/321\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/apple_descriptors.html",
"title": "Apple descriptors",
"subtitle": "",
"image": "cb71399400.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)\n\n\n\n\n\n\n\n\n\nPublication Year: 1982\n\n\n\n\n\nPages: 46 p.\n\n\n\n\n\nFormat: 21.2x29.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-104-0\n\n\n\n\n\nISBN-13: 978-92-9043-104-6\n\n\n\n\n\nLanguage: EN",
"pdf": "320_Apple_descriptors.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)",
"publication_year": "1982",
"pages": "46 p.",
"format": "21.2x29.5 Softcover; PDF",
"isbn-10": "92-9043-104-0",
"isbn-13": "978-92-9043-104-6",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/320_Apple_descriptors.pdf?cache=1372930849\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/320_Apple_descriptors']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 411Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/320_Apple_descriptors.pdf?cache=1372930849\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1982<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 46 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 21.2x29.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-104-0<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-104-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/chirimoyo.html",
"title": "Chirimoyo",
"subtitle": "Descriptores para chirimoyo (Annona cherimola Mill.)",
"image": "bde8d0e69f.jpg",
"description": "Corporate Author: Bioversity International; CHERLA\n\n\n\n\n\n\n\n\n\nPublication Year: 2008\n\n\n\n\n\nPages: 51 p.\n\n\n\n\n\nFormat: B5\n\n\n\n\n\n\n\nISBN-13: 978-92-9043-780-2\n\n\n\n\n\nLanguage: ES",
"pdf": "1295_Chirimoyo.pdf",
"corporate_author": "Bioversity International; CHERLA",
"publication_year": "2008",
"pages": "51 p.",
"format": "B5",
"isbn-13": "978-92-9043-780-2",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1295_Chirimoyo.pdf?cache=1372930850\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1295_Chirimoyo']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1120Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1295_Chirimoyo.pdf?cache=1372930850\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- Bioversity International; CHERLA -->\n\n<b>Corporate Author:</b> Bioversity International; CHERLA<br>\n\n<!-- Bioversity International; CHERLA -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2008<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 51 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-780-2<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 10 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/cashew_descriptors.html",
"title": "Cashew descriptors",
"subtitle": "",
"image": "57e4ef6f5d.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1986\n\n\n\n\n\nPages: 33 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1986",
"pages": "33 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1986<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 33 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/348\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/cherry_descriptors.html",
"title": "Cherry descriptors",
"subtitle": "",
"image": "85e013e703.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)\n\n\n\n\n\n\n\n\n\nPublication Year: 1985\n\n\n\n\n\nPages: 33 p.\n\n\n\n\n\nFormat: 21x29.7 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)",
"publication_year": "1985",
"pages": "33 p.",
"format": "21x29.7 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy); Commission of the European Communities (CEC) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 33 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 21x29.7 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/357\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/cherimoya.html",
"title": "Cherimoya",
"subtitle": "Descriptors for Cherimoya (Annona cherimola Mill.)",
"image": "74b92f17af.jpg",
"description": "Corporate Author: Bioversity International; CHERLA\n\n\n\n\n\n\n\n\n\nPublication Year: 2008\n\n\n\n\n\nPages: 49 p.\n\n\n\n\n\nFormat: B5\n\n\n\n\n\n\n\nISBN-13: 978-92-9043-779-6\n\n\n\n\n\nLanguage: EN",
"pdf": "1303.pdf",
"corporate_author": "Bioversity International; CHERLA",
"publication_year": "2008",
"pages": "49 p.",
"format": "B5",
"isbn-13": "978-92-9043-779-6",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1303.pdf?cache=1372930850\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1303']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1181Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1303.pdf?cache=1372930850\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- Bioversity International; CHERLA -->\n\n<b>Corporate Author:</b> Bioversity International; CHERLA<br>\n\n<!-- Bioversity International; CHERLA -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2008<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 49 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-779-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 0 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_de_la_tomate_emlycopersiconem_spp.html",
"title": "Descripteurs de la tomate (Lycopersicon spp.)",
"subtitle": "",
"image": "ec8835c187.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 44 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: FR",
"pdf": "488_Descripteurs_de_la_tomate__Lycopersicon_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1996",
"pages": "44 p.",
"format": "17x24 Softcover; PDF",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/488_Descripteurs_de_la_tomate__Lycopersicon_spp._.pdf?cache=1372930851\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/488_Descripteurs_de_la_tomate__Lycopersicon_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 211Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/488_Descripteurs_de_la_tomate__Lycopersicon_spp._.pdf?cache=1372930851\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 44 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_de_ligname_emdioscoreaem_spp.html",
"title": "Descripteurs de l'igname (Dioscorea spp.)",
"subtitle": "",
"image": "d45d3bde36.jpg",
"description": "Corporate Author: International Plant Genetic Resources Institute (IPGRI); International Institute of Tropical Agriculture (IITA)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 61 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-355-8\n\n\n\n\n\nISBN-13: 978-92-9043-355-2\n\n\n\n\n\nLanguage: FR",
"pdf": "480.pdf",
"corporate_author": "International Plant Genetic Resources Institute (IPGRI); International Institute of Tropical Agriculture (IITA)",
"publication_year": "1997",
"pages": "61 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-355-8",
"isbn-13": "978-92-9043-355-2",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/480.pdf?cache=1372930851\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/480']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 3726Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/480.pdf?cache=1372930851\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Institute (IPGRI); International Institute of Tropical Agriculture (IITA) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Institute (IPGRI); International Institute of Tropical Agriculture (IITA)<br>\n\n<!-- International Plant Genetic Resources Institute (IPGRI); International Institute of Tropical Agriculture (IITA) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 61 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-355-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-355-2<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 8 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_de_la_vigne_emvitisem_spp.html",
"title": "Descripteurs de la vigne (Vitis spp.)",
"subtitle": "",
"image": "be3d272587.jpg",
"description": "Corporate Author: International Plant Genetic Resources Institute (IPGRI); International Union for the Protection of New Varieties of Plants (UPOV); Office International de la Vigne et du Vin (OIV)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 62 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-356-6\n\n\n\n\n\nISBN-13: 978-92-9043-356-9\n\n\n\n\n\nLanguage: FR",
"pdf": "395_Descripteurs_de_la_vigne__Vitis_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Institute (IPGRI); International Union for the Protection of New Varieties of Plants (UPOV); Office International de la Vigne et du Vin (OIV)",
"publication_year": "1997",
"pages": "62 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-356-6",
"isbn-13": "978-92-9043-356-9",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/395_Descripteurs_de_la_vigne__Vitis_spp._.pdf?cache=1372930851\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/395_Descripteurs_de_la_vigne__Vitis_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 3218Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/395_Descripteurs_de_la_vigne__Vitis_spp._.pdf?cache=1372930851\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Institute (IPGRI); International Union for the Protection of New Varieties of Plants (UPOV); Office International de la Vigne et du Vin (OIV) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Institute (IPGRI); International Union for the Protection of New Varieties of Plants (UPOV); Office International de la Vigne et du Vin (OIV)<br>\n\n<!-- International Plant Genetic Resources Institute (IPGRI); International Union for the Protection of New Varieties of Plants (UPOV); Office International de la Vigne et du Vin (OIV) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 62 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-356-6<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-356-9<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/cotton_descriptors_revised.html",
"title": "Cotton descriptors (Revised)",
"subtitle": "",
"image": "042996d660.jpg",
"description": "This descriptor list, which has been prepared according to a standard IBPGR format, supersedes the list published in 1980. Descriptors are grouped under the following headings: (1) accession data, dealing with identification; (2) collection data, including details recorded by collectors; (3) date relating to site at which preliminary evaluation is carried out; (4) plant data, including vegetative, inflorescence and fruit traits; (5) and (6) similar data recorded during further evaluation; (7) stress susceptibility; (8) pest and disease susceptibility; (9) alloenzyme composition; (10) cytological characters and identified genes; and (11) notes. The information in categories (1) to (4) is considered the minimum that should be available for any one accession. A list of Gossypium species, including tetraploids, and their genome designations are given in an appendix. (Abstract © CAB ABSTRACTS, CAB International)",
"pdf": "376_Cotton_descriptors.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1985",
"pages": "17 p.",
"format": "17x24.5 Softcover; PDF",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/376_Cotton_descriptors.pdf?cache=1372930851\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/376_Cotton_descriptors']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 178Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/376_Cotton_descriptors.pdf?cache=1372930851\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>This descriptor list, which has been prepared according to a standard IBPGR format, supersedes the list published in 1980. Descriptors are grouped under the following headings: (1) accession data, dealing with identification; (2) collection data, including details recorded by collectors; (3) date relating to site at which preliminary evaluation is carried out; (4) plant data, including vegetative, inflorescence and fruit traits; (5) and (6) similar data recorded during further evaluation; (7) stress susceptibility; (8) pest and disease susceptibility; (9) alloenzyme composition; (10) cytological characters and identified genes; and (11) notes. The information in categories (1) to (4) is considered the minimum that should be available for any one accession. A list of Gossypium species, including tetraploids, and their genome designations are given in an appendix. (Abstract © CAB ABSTRACTS, CAB International)</p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 17 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/core_descriptors_for_emin_situ_emconservation_of_crop_wild_relatives_v1.html",
"title": "Core descriptors for in situ conservation of crop wild relatives v.1.",
"subtitle": "",
"image": "786ca737dc.jpg",
"description": "Crop wild relatives (CWR) are wild plant species that are more or less closely related to domesticated species, include crop progenitors and are a potential source of traits beneficial to our crops. Given their importance for agricultural research and development, their conservation is of high priority, in particular their in situ conservation that allows continued evolution of new adaptive traits as well as the maintenance of the breadth of genetic diversity present in the many CWR species. The core descriptors for in situ conservation of CWR are designed to facilitate the compilation and exchange of data, which are needed to develop and implement in situ conservation activities. They are compatible with Bioversity’s crop descriptor lists, the ‘FAO/Bioversity List of Multi-Crop Passport Descriptors V.2’ and IUCN red listing categories and criteria.",
"pdf": "Core_descriptors_for_in_situ_conservation_of_crop_wild_relatives_v_1_1619.pdf",
"author": "Thormann, I.; Alercia, A.; Dulloo, M.E.",
"corporate_author": "Bioversity International, Rome (Italy)",
"publication_year": "2013",
"pages": "28 p.",
"format": "PDF",
"isbn-13": "978-92-9043-935-6",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/Core_descriptors_for_in_situ_conservation_of_crop_wild_relatives_v_1_1619.pdf?cache=1372930851\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/Core_descriptors_for_in_situ_conservation_of_crop_wild_relatives_v_1_1619']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 655Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/Core_descriptors_for_in_situ_conservation_of_crop_wild_relatives_v_1_1619.pdf?cache=1372930851\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Crop wild relatives (CWR) are wild plant species that are more or less closely related to domesticated species, include crop progenitors and are a potential source of traits beneficial to our crops. Given their importance for agricultural research and development, their conservation is of high priority, in particular their <em>in situ</em> conservation that allows continued evolution of new adaptive traits as well as the maintenance of the breadth of genetic diversity present in the many CWR species. The core descriptors for <em>in situ</em> conservation of CWR are designed to facilitate the compilation and exchange of data, which are needed to develop and implement <em>in situ</em> conservation activities. They are compatible with Bioversity’s crop descriptor lists, the ‘FAO/Bioversity List of Multi-Crop Passport Descriptors V.2’ and IUCN red listing categories and criteria.</p><p></p>\n\n<p>\n\n<!-- ###SUBPART_AUTHOR### -->\n\n<b>Author:</b> Thormann, I.; Alercia, A.; Dulloo, M.E.<br>\n\n<!-- ###SUBPART_AUTHOR### -->\n\n<!-- Bioversity International, Rome (Italy) -->\n\n<b>Corporate Author:</b> Bioversity International, Rome (Italy)<br>\n\n<!-- Bioversity International, Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2013<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 28 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-935-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www.cropwildrelatives.org/resources/in_situ_conservation_manual.html\">Crop Wild Relatives - A Manual of in situ Conservation</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>\n\n<!-- ###SUBPART_INT_LINKS_CONTAINER### -->\n\n<p style=\"font-weight:bold;\">Additional links:</p>\n\n<ul style=\"margin-top:9px;\">\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=1831\" title=\"Conservation\">Conservation</a></li>\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=2315\" title=\"Crop Wild Relatives\">Crop Wild Relatives</a></li>\n\n\t\n\n</ul>\n\n<!-- ###SUBPART_INT_LINKS_CONTAINER### -->\n\n\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->\n\n<!-- **** publications ****-->\n\n<p style=\"font-weight:bold;\">Links to other publications:</p>\n\n<ul style=\"margin-top:9px;\">\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=3070\" title=\"Guidelines for developers\">Developing crop descriptor lists - Guidelines for developers</a> \n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=6901\" title=\"June 2012\">FAO/Bioversity Multi-Crop Passport Descriptors V.2 [MCPD V.2]. - June 2012</a> - Alercia, A; Diulgheroff, S; Mackay, M.\n\n</li>\n\n\n\n</ul>\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_de_passeport_multi_cultures.html",
"title": "Descripteurs de passeport multi-cultures",
"subtitle": "",
"image": "5a2c252b35.jpg",
"description": "La liste des descripteurs de passeport ‘multi-cultures’ est élaborée conjointement par l’IPGRI et la FAO afin de fournir des normes internationales permettant de faciliter l'échange de données passeport du matériel génétique. Ces descripteurs ont pour objectif d’être compatibles à la fois avec les listes de descripteurs des plantes cultivées de l’IPGRI et avec les descripteurs utilisés par le Système d’information mondial et alerte rapide sur les ressources phytogénétiques (WIEWS) de la FAO.Chaque descripteur de passeport multi-cultures est accompagné d'une brève explication du contenu, du système de codage et du nom de champ suggéré (entre parenthèses) afin de faciliter l'échange informatisé de ce type de données.",
"pdf": "3932",
"author": "Alercia, A.; Diulgheroff, S.; Metz, T.",
"publication_year": "2001",
"format": "PDF",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"3932\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/###TRACKER_PUBLICATION_NAME###']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 185Kb</a><a href=\"3932\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>La liste des descripteurs de passeport ‘multi-cultures’ est élaborée conjointement par l’IPGRI et la FAO afin de fournir des normes internationales permettant de faciliter l'échange de données passeport du matériel génétique. Ces descripteurs ont pour objectif d’être compatibles à la fois avec les listes de descripteurs des plantes cultivées de l’IPGRI et avec les descripteurs utilisés par le Système d’information mondial et alerte rapide sur les ressources phytogénétiques (WIEWS) de la FAO.<br><br>Chaque descripteur de passeport multi-cultures est accompagné d'une brève explication du contenu, du système de codage et du nom de champ suggéré (entre parenthèses) afin de faciliter l'échange informatisé de ce type de données. </p><p></p>\n\n<p>\n\n<!-- ###SUBPART_AUTHOR### -->\n\n<b>Author:</b> Alercia, A.; Diulgheroff, S.; Metz, T.<br>\n\n<!-- ###SUBPART_AUTHOR### -->\n\n<!-- ###SUBPART_COAUTHOR### -->\n\n<b></b> <br>\n\n<!-- ###SUBPART_COAUTHOR### -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2001<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_des_agrumes_emcitrusem_spp.html",
"title": "Descripteurs des agrumes (Citrus spp.)",
"subtitle": "",
"image": "ec75ce0a98.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1999\n\n\n\n\n\nPages: 66 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-433-3\n\n\n\n\n\nISBN-13: 978-92-9043-433-7\n\n\n\n\n\nLanguage: FR",
"pdf": "540_Descripteurs_des_agrumes__Citrus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1999",
"pages": "66 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-433-3",
"isbn-13": "978-92-9043-433-7",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/540_Descripteurs_des_agrumes__Citrus_spp._.pdf?cache=1372930853\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/540_Descripteurs_des_agrumes__Citrus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 563Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/540_Descripteurs_des_agrumes__Citrus_spp._.pdf?cache=1372930853\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1999<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 66 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-433-3<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-433-7<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_du_cafeier_emcoffeaem_spp_et_empsilanthusem_spp.html",
"title": "Descripteurs du caféier (Coffea spp. et Psilanthus spp.)",
"subtitle": "",
"image": "721139c5fe.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 36 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: FR",
"pdf": "486_Descripteurs_du_caféier__Coffea_spp._et_Psilanthus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1996",
"pages": "36 p.",
"format": "17x24 Softcover; PDF",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/486_Descripteurs_du_caféier__Coffea_spp._et_Psilanthus_spp._.pdf?cache=1372930853\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/486_Descripteurs_du_caféier__Coffea_spp._et_Psilanthus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 172Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/486_Descripteurs_du_caféier__Coffea_spp._et_Psilanthus_spp._.pdf?cache=1372930853\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 36 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_des_carottes_sauvages_et_cultivees_daucus_carota_l.html",
"title": "Descripteurs des carottes sauvages et cultivees (Daucus carota L.)",
"subtitle": "",
"image": "2ea4411705.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1998\n\n\n\n\n\nPages: 65 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-396-5\n\n\n\n\n\nISBN-13: 978-92-9043-396-5\n\n\n\n\n\nLanguage: FR",
"pdf": "44__Descripteurs_des_carottes_sauvages_et_cultivees__Daucus_carota_L._pdf.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1998",
"pages": "65 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-396-5",
"isbn-13": "978-92-9043-396-5",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/44__Descripteurs_des_carottes_sauvages_et_cultivees__Daucus_carota_L._pdf.pdf?cache=1372930853\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/44__Descripteurs_des_carottes_sauvages_et_cultivees__Daucus_carota_L._pdf']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 2767Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/44__Descripteurs_des_carottes_sauvages_et_cultivees__Daucus_carota_L._pdf.pdf?cache=1372930853\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1998<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 65 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-396-5<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-396-5<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_du_palmier_dattier_emphoenix_dactyliferaem_l.html",
"title": "Descripteurs du palmier dattier (Phoenix dactylifera L.)",
"subtitle": "",
"image": "6f770b2354.jpg",
"description": "Corporate Author: International Plant Genetic Resources Institute (IPGRI); Fonds pour l'Environment Mondial (FEM); Programme des Nations Unies pour le Développement (PNUD); Institut National de la Recherche Agronomique, d'Algérie, du Maroc et de Tunisie (INRAM) (INRAT)\n\n\n\n\n\n\n\n\n\nPublication Year: 2005\n\n\n\n\n\nPages: 71 p.\n\n\n\n\n\nFormat: B5\n\n\n\n\n\nISBN-10: 92-9043-676-X\n\n\n\n\n\nISBN-13: 978-92-9043-676-8\n\n\n\n\n\nLanguage: FR",
"pdf": "1086_Descripteurs_du_Palmier_dattier__Phoenix_dactylifera_L._.pdf",
"corporate_author": "International Plant Genetic Resources Institute (IPGRI); Fonds pour l'Environment Mondial (FEM); Programme des Nations Unies pour le Développement (PNUD); Institut National de la Recherche Agronomique, d'Algérie, du Maroc et de Tunisie (INRAM) (INRAT)",
"publication_year": "2005",
"pages": "71 p.",
"format": "B5",
"isbn-10": "92-9043-676-X",
"isbn-13": "978-92-9043-676-8",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1086_Descripteurs_du_Palmier_dattier__Phoenix_dactylifera_L._.pdf?cache=1372930853\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1086_Descripteurs_du_Palmier_dattier__Phoenix_dactylifera_L._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1515Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1086_Descripteurs_du_Palmier_dattier__Phoenix_dactylifera_L._.pdf?cache=1372930853\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Institute (IPGRI); Fonds pour l'Environment Mondial (FEM); Programme des Nations Unies pour le Développement (PNUD); Institut National de la Recherche Agronomique, d'Algérie, du Maroc et de Tunisie (INRAM) (INRAT) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Institute (IPGRI); Fonds pour l'Environment Mondial (FEM); Programme des Nations Unies pour le Développement (PNUD); Institut National de la Recherche Agronomique, d'Algérie, du Maroc et de Tunisie (INRAM) (INRAT)<br>\n\n<!-- International Plant Genetic Resources Institute (IPGRI); Fonds pour l'Environment Mondial (FEM); Programme des Nations Unies pour le Développement (PNUD); Institut National de la Recherche Agronomique, d'Algérie, du Maroc et de Tunisie (INRAM) (INRAT) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2005<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 71 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-676-X<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-676-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_du_pois_bambara_emvigna_subterraneaem.html",
"title": "Descripteurs du pois bambara (Vigna subterranea)",
"subtitle": "",
"image": "7ee6359500.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 2000\n\n\n\n\n\nPages: 48 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-462-7\n\n\n\n\n\nISBN-13: 978-92-9043-462-7\n\n\n\n\n\nLanguage: FR",
"pdf": "622_Descripteurs_du_pois_bambara__Vigna_subterranea_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2000",
"pages": "48 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-462-7",
"isbn-13": "978-92-9043-462-7",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/622_Descripteurs_du_pois_bambara__Vigna_subterranea_.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/622_Descripteurs_du_pois_bambara__Vigna_subterranea_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 629Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/622_Descripteurs_du_pois_bambara__Vigna_subterranea_.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2000<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 48 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-462-7<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-462-7<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_pour_le_bananier_emmusaem_spp.html",
"title": "Descripteurs pour le bananier (Musa spp.)",
"subtitle": "",
"image": "b242e2b4ae.jpg",
"description": "Corporate Author: International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 55 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-307-8\n\n\n\n\n\nISBN-13: 978-92-9043-307-1\n\n\n\n\n\nLanguage: FR",
"pdf": "484_Descripteurs_pour_le_bananier__Musa_spp._.pdf",
"corporate_author": "International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)",
"publication_year": "1996",
"pages": "55 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-307-8",
"isbn-13": "978-92-9043-307-1",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/484_Descripteurs_pour_le_bananier__Musa_spp._.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/484_Descripteurs_pour_le_bananier__Musa_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 430Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/484_Descripteurs_pour_le_bananier__Musa_spp._.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France) -->\n\n<b>Corporate Author:</b> International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)<br>\n\n<!-- International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 55 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-307-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-307-1<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 8 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_pour_le_theier_emcamellia_sinensisem.html",
"title": "Descripteurs pour le théier (Camellia sinensis)",
"subtitle": "",
"image": "0a087717f0.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 50 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-344-2\n\n\n\n\n\nISBN-13: 978-92-9043-344-6\n\n\n\n\n\nLanguage: FR",
"pdf": "397_Descripteurs_pour_le_théier__Camellia_sinensis_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1997",
"pages": "50 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-344-2",
"isbn-13": "978-92-9043-344-6",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/397_Descripteurs_pour_le_théier__Camellia_sinensis_.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/397_Descripteurs_pour_le_théier__Camellia_sinensis_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 275Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/397_Descripteurs_pour_le_théier__Camellia_sinensis_.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 50 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-344-2<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-344-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptopres_para_el_taro_emcolocasia_esculentaem.html",
"title": "Descriptopres para el taró (Colocasia esculenta)",
"subtitle": "",
"image": "fc5b3cd6ff.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1999\n\n\n\n\n\nPages: 58 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-407-4\n\n\n\n\n\nISBN-13: 978-92-9043-407-8\n\n\n\n\n\nLanguage: ES",
"pdf": "22_Descriptopres_para_el_Taro___Colocasia_esculenta_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1999",
"pages": "58 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-407-4",
"isbn-13": "978-92-9043-407-8",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/22_Descriptopres_para_el_Taro___Colocasia_esculenta_.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/22_Descriptopres_para_el_Taro___Colocasia_esculenta_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 658Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/22_Descriptopres_para_el_Taro___Colocasia_esculenta_.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1999<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 58 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-407-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-407-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_du_pistachier_empistacia_veraem_l.html",
"title": "Descripteurs du pistachier (Pistacia vera L.)",
"subtitle": "",
"image": "5647327ce0.jpg",
"description": "To download the PDF file, right-click on the link and choose Save as/Save link as.Download and install \n\nAcrobat Reader to view PDF files.",
"pdf": "494_Descripteurs_du_pistachier__Pistacia_vera_L._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2000",
"pages": "51 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-333-7",
"isbn-13": "978-92-9043-333-0",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/494_Descripteurs_du_pistachier__Pistacia_vera_L._.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/386_Descripteurs_du_pistachier__Pistacia_vera_L._.AR']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 519Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/494_Descripteurs_du_pistachier__Pistacia_vera_L._.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n<!-- ###SUBPART_FILE_CONTAINER_RU### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/386_Descripteurs_du_pistachier__Pistacia_vera_L._.RU.pdf\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/386_Descripteurs_du_pistachier__Pistacia_vera_L._.AR']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> Russian version available</a><br><br>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER_RU### -->\n\n<!-- ###SUBPART_FILE_CONTAINER_AR### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/386_Descripteurs_du_pistachier__Pistacia_vera_L._.AR.pdf\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/386_Descripteurs_du_pistachier__Pistacia_vera_L._.AR']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> Arabic version available</a><br><br>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER_AR### -->\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2000<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 51 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-333-7<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-333-0<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 8 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descripteurs_du_taro_emcolocasia_esculentaem.html",
"title": "Descripteurs du taro (Colocasia esculenta)",
"subtitle": "",
"image": "77c62025cd.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1999\n\n\n\n\n\nPages: 56 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-410-4\n\n\n\n\n\nISBN-13: 978-92-9043-410-8\n\n\n\n\n\nLanguage: FR",
"pdf": "23_Descripteurs_du_Taro__Colocasia_esculenta_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1999",
"pages": "56 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-410-4",
"isbn-13": "978-92-9043-410-8",
"language": "FR",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/23_Descripteurs_du_Taro__Colocasia_esculenta_.pdf?cache=1372930854\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/23_Descripteurs_du_Taro__Colocasia_esculenta_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 658Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/23_Descripteurs_du_Taro__Colocasia_esculenta_.pdf?cache=1372930854\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1999<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 56 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-410-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-410-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_de_oca_emoxalis_tuberosaem_mol.html",
"title": "Descriptores de oca (Oxalis tuberosa Mol.)",
"subtitle": "",
"image": "799cf619f6.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Potato Center, (CIP), Lima (Peru)\n\n\n\n\n\n\n\n\n\nPublication Year: 2001\n\n\n\n\n\nPages: 52 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-477-5\n\n\n\n\n\nISBN-13: 978-92-9043-477-1\n\n\n\n\n\nLanguage: ES",
"pdf": "143_Descriptores_de_Oca__Oxalis_tuberosa_Mol._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Potato Center, (CIP), Lima (Peru)",
"publication_year": "2001",
"pages": "52 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-477-5",
"isbn-13": "978-92-9043-477-1",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/143_Descriptores_de_Oca__Oxalis_tuberosa_Mol._.pdf?cache=1372930856\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/143_Descriptores_de_Oca__Oxalis_tuberosa_Mol._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 701Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/143_Descriptores_de_Oca__Oxalis_tuberosa_Mol._.pdf?cache=1372930856\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Potato Center, (CIP), Lima (Peru) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Potato Center, (CIP), Lima (Peru)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Potato Center, (CIP), Lima (Peru) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2001<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 52 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-477-5<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-477-1<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_del_allium_emalliumem_spp.html",
"title": "Descriptores del Allium (Allium spp.)",
"subtitle": "",
"image": "290c691b3a.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); European Cooperative Programme for Crop Genetic Resources Networks (ECPGR); Asian Vegetable Research and Development Center, (AVRDC), Taiwan (China)\n\n\n\n\n\n\n\n\n\nPublication Year: 2001\n\n\n\n\n\nPages: 42 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-507-0\n\n\n\n\n\nISBN-13: 978-92-9043-507-5\n\n\n\n\n\nLanguage: ES",
"pdf": "759_Descriptores_del_Allium.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); European Cooperative Programme for Crop Genetic Resources Networks (ECPGR); Asian Vegetable Research and Development Center, (AVRDC), Taiwan (China)",
"publication_year": "2001",
"pages": "42 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-507-0",
"isbn-13": "978-92-9043-507-5",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/759_Descriptores_del_Allium.pdf?cache=1372930856\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/759_Descriptores_del_Allium']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 537Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/759_Descriptores_del_Allium.pdf?cache=1372930856\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); European Cooperative Programme for Crop Genetic Resources Networks (ECPGR); Asian Vegetable Research and Development Center, (AVRDC), Taiwan (China) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); European Cooperative Programme for Crop Genetic Resources Networks (ECPGR); Asian Vegetable Research and Development Center, (AVRDC), Taiwan (China)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); European Cooperative Programme for Crop Genetic Resources Networks (ECPGR); Asian Vegetable Research and Development Center, (AVRDC), Taiwan (China) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2001<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 42 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-507-0<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-507-5<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 10 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_de_la_zanahoria_silvestre_y_cultivada_emdaucus_carotaem_l.html",
"title": "Descriptores de la zanahoria silvestre y cultivada (Daucus carota L.)",
"subtitle": "",
"image": "db3445ffe7.jpg",
"description": "Corporate Author: International Plant Genetic Resources Institute (IPGRI)\n\n\n\n\n\n\n\n\n\nPublication Year: 1998\n\n\n\n\n\nPages: 65 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-395-7\n\n\n\n\n\nISBN-13: 978-92-9043-395-8\n\n\n\n\n\nLanguage: ES",
"pdf": "18_Descriptores_de_la_zanahoria_silvestre_y_cultivada__Daucus_carota_L._.pdf",
"corporate_author": "International Plant Genetic Resources Institute (IPGRI)",
"publication_year": "1998",
"pages": "65 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-395-7",
"isbn-13": "978-92-9043-395-8",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/18_Descriptores_de_la_zanahoria_silvestre_y_cultivada__Daucus_carota_L._.pdf?cache=1372930856\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/18_Descriptores_de_la_zanahoria_silvestre_y_cultivada__Daucus_carota_L._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 2660Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/18_Descriptores_de_la_zanahoria_silvestre_y_cultivada__Daucus_carota_L._.pdf?cache=1372930856\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Institute (IPGRI) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Institute (IPGRI)<br>\n\n<!-- International Plant Genetic Resources Institute (IPGRI) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1998<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 65 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-395-7<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-395-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_de_quinua.html",
"title": "Descriptores de quinua",
"subtitle": "",
"image": "ae146b0061.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1981\n\n\n\n\n\nPages: 18 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: ES\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"pdf": "Descriptores_de_Quinua_203.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1981",
"pages": "18 p.",
"format": "17x24.5 Softcover",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/Descriptores_de_Quinua_203.pdf?cache=1372930856\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/Descriptores_de_Quinua_203']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 634Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/Descriptores_de_Quinua_203.pdf?cache=1372930856\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1981<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 18 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/203\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_del_cafe_emcoffeaem_spp_y_empsilanthusem_spp.html",
"title": "Descriptores del café (Coffea spp. y Psilanthus spp.)",
"subtitle": "",
"image": "6c363965d6.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 36 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: ES",
"pdf": "487_Descriptores_del_café__Coffea_spp._y_Psilanthus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1996",
"pages": "36 p.",
"format": "17x24 Softcover; PDF",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/487_Descriptores_del_café__Coffea_spp._y_Psilanthus_spp._.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/487_Descriptores_del_café__Coffea_spp._y_Psilanthus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 172Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/487_Descriptores_del_café__Coffea_spp._y_Psilanthus_spp._.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 36 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_el_name_emdioscoreaem_spp.html",
"title": "Descriptores para el ñame (Dioscorea spp.)",
"subtitle": "",
"image": "83ea7ca822.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 61 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-354-X\n\n\n\n\n\nISBN-13: 978-92-9043-354-5\n\n\n\n\n\nLanguage: ES",
"pdf": "481_Descriptores_para_el_ñame__Dioscorea_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1997",
"pages": "61 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-354-X",
"isbn-13": "978-92-9043-354-5",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/481_Descriptores_para_el_ñame__Dioscorea_spp._.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/481_Descriptores_para_el_ñame__Dioscorea_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 3620Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/481_Descriptores_para_el_ñame__Dioscorea_spp._.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 61 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-354-X<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-354-5<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_del_ulluco_emullucus_tuberosusem.html",
"title": "Descriptores del ulluco (Ullucus tuberosus)",
"subtitle": "",
"image": "028cf24e20.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 2003\n\n\n\n\n\nPages: 42 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-584-4\n\n\n\n\n\nISBN-13: 978-92-9043-584-6\n\n\n\n\n\nLanguage: ES",
"pdf": "904_Descriptores_del_Ulluco__Ullucus_tuberosus_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2003",
"pages": "42 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-584-4",
"isbn-13": "978-92-9043-584-6",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/904_Descriptores_del_Ulluco__Ullucus_tuberosus_.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/904_Descriptores_del_Ulluco__Ullucus_tuberosus_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 452Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/904_Descriptores_del_Ulluco__Ullucus_tuberosus_.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2003<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 42 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-584-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-584-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_el_banano_emmusaem_spp.html",
"title": "Descriptores para el banano (Musa spp.)",
"subtitle": "",
"image": "cc2bd2f906.jpg",
"description": "Corporate Author: International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 55 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-307-8\n\n\n\n\n\nISBN-13: 978-92-9043-307-1\n\n\n\n\n\nLanguage: ES",
"pdf": "485_Descriptores_para_el_banano__Musa_spp._.pdf",
"corporate_author": "International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)",
"publication_year": "1996",
"pages": "55 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-307-8",
"isbn-13": "978-92-9043-307-1",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/485_Descriptores_para_el_banano__Musa_spp._.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/485_Descriptores_para_el_banano__Musa_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 516Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/485_Descriptores_para_el_banano__Musa_spp._.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France) -->\n\n<b>Corporate Author:</b> International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France)<br>\n\n<!-- International Network for the Improvement of Banana and Plantain (INIBAP), Montpellier (France) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 55 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-307-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-307-1<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_del_conocimiento_que_los_agricultores_tienen_de_las_plantas.html",
"title": "Descriptores del conocimiento que los agricultores tienen de las plantas",
"subtitle": "",
"image": "1387.jpg",
"description": "Esta lista de descriptores ha sido desarrollada por Bioversity International con el fin de ofrecer un formato estándar que permita recopilar, almacenar, recuperar e intercambiar información sobre el conocimiento tradicional que los agricultores tienen de las plantas. La lista pretende captar las caracterÃsticas clave, los usos y los valores de las plantas cultivadas y silvestres, en la forma en que los describen los agricultores y demás miembros de las comunidades agrÃcolas.",
"pdf": "1387_Descriptores%20del%20conocimiento%20que%20los%20agricultores%20tienen%20de%20las%20plantas.pdf",
"corporate_author": "Bioversity International, Rome (Italy)",
"publication_year": "2010",
"pages": "24 p.",
"format": "PDF; on-line",
"isbn-13": "978-92-9043-818-2",
"language": "SP",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1387_Descriptores del conocimiento que los agricultores tienen de las plantas.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1387_Descriptores del conocimiento que los agricultores tienen de las plantas']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 412Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1387_Descriptores del conocimiento que los agricultores tienen de las plantas.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Esta lista de descriptores ha sido desarrollada por Bioversity International con el fin de ofrecer un formato estándar que permita recopilar, almacenar, recuperar e intercambiar información sobre el conocimiento tradicional que los agricultores tienen de las plantas. La lista pretende captar las caracterÃsticas clave, los usos y los valores de las plantas cultivadas y silvestres, en la forma en que los describen los agricultores y demás miembros de las comunidades agrÃcolas.\n</p>\n<p>Muchos de estos descriptores no están incluidos en las listas convencionales de descriptores. En esta lista también se incluyen las plantas silvestres y arvenses, que a menudo desempeñan un papel importante en las comunidades agrÃcolas, por su utilidad socioeconómica y ecológica.\n</p>\n<p>Esta lista es el primer intento de combinar un sistema de documentación utilizado tradicionalmente en ambientes controlados (bancos de germoplasma, institutos defitomejoramiento) con un enfoque que involucra a las personas y lo que ellas conocen sobre el campo. La lista es producto de muchos años de revisión del trabajo de campo realizado por cientÃficos y profesionales, pero esperamos que se convierta en una herramienta que integre la biologÃa y el conocimiento tradicional. Si bien está orientada a la comunidad de recursos fitogenéticos, para ampliar la gama de conocimientos que se documentan durante la colecta de plantas, cualquier comunidad u organización la puede usar, dado su formato práctico, incluyente y conciso, y de fácil aplicación. \n</p>\n<p>Cualquier sugerencia para mejorar este documento será bien recibida por Bioversity y debe dirigirse a Adriana Alercia (<img src=\"typo3conf/ext/ml_links/Resources/Public/Icons/mailto.gif\" alt=\"\"> <a href=\"javascript:linkTo_UnCryptMailto('nbjmup+b/bmfsdjbAdhjbs/psh');\">a.alercia(at)cgiar.org</a>).</p><p></p>\n\n<p>\n\n\n\n<!-- Bioversity International, Rome (Italy) -->\n\n<b>Corporate Author:</b> Bioversity International, Rome (Italy)<br>\n\n<!-- Bioversity International, Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2010<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 24 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> PDF; on-line<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-818-2<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> SP<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>\n\n\n\n\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->\n\n<!-- **** publications ****-->\n\n<p style=\"font-weight:bold;\">Links to other publications:</p>\n\n<ul style=\"margin-top:9px;\">\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=3191\" title=\"\">Descriptors for farmers' knowledge of plants</a> \n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=3070\" title=\"Guidelines for developers\">Developing crop descriptor lists - Guidelines for developers</a> \n\n</li>\n\n\n\n</ul>\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_canahua_emchenopodium_pallidicauleem_aellen.html",
"title": "Descriptores para Cañahua (Chenopodium pallidicaule Aellen)",
"subtitle": "",
"image": "9b23492f8c.jpg",
"description": "Corporate Author: International Plant Genetic Resources Institute (IPGRI); Fundación PROINPA; International Fund for Agricultural Development (IFAD)\n\n\n\n\n\n\n\n\n\nPublication Year: 2005\n\n\n\n\n\nPages: 45 p.\n\n\n\n\n\nFormat: B5; pdf\n\n\n\n\n\nISBN-10: 92-9043-680-8\n\n\n\n\n\nISBN-13: 978-92-9043-680-5\n\n\n\n\n\nLanguage: SP",
"pdf": "1071_Descriptores_para_Cañahua__Chenopodium_pallidicaule_Aellen_.pdf",
"corporate_author": "International Plant Genetic Resources Institute (IPGRI); Fundación PROINPA; International Fund for Agricultural Development (IFAD)",
"publication_year": "2005",
"pages": "45 p.",
"format": "B5; pdf",
"isbn-10": "92-9043-680-8",
"isbn-13": "978-92-9043-680-5",
"language": "SP",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1071_Descriptores_para_Cañahua__Chenopodium_pallidicaule_Aellen_.pdf?cache=1372930857\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1071_Descriptores_para_Cañahua__Chenopodium_pallidicaule_Aellen_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 619Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1071_Descriptores_para_Cañahua__Chenopodium_pallidicaule_Aellen_.pdf?cache=1372930857\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Institute (IPGRI); Fundación PROINPA; International Fund for Agricultural Development (IFAD) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Institute (IPGRI); Fundación PROINPA; International Fund for Agricultural Development (IFAD)<br>\n\n<!-- International Plant Genetic Resources Institute (IPGRI); Fundación PROINPA; International Fund for Agricultural Development (IFAD) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2005<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 45 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; pdf<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-680-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-680-5<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> SP<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_la_vid_emvitisem_spp.html",
"title": "Descriptores para la vid (Vitis spp.)",
"subtitle": "",
"image": "005222e69a.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 62 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-357-4\n\n\n\n\n\nISBN-13: 978-92-9043-357-6\n\n\n\n\n\nLanguage: ES",
"pdf": "396_Descriptores_para_la_vid__Vitis_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1997",
"pages": "62 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-357-4",
"isbn-13": "978-92-9043-357-6",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/396_Descriptores_para_la_vid__Vitis_spp._.pdf?cache=1372930858\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/396_Descriptores_para_la_vid__Vitis_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 2769Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/396_Descriptores_para_la_vid__Vitis_spp._.pdf?cache=1372930858\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 62 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-357-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-357-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 10 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_el_te_emcamellia_sinensisem.html",
"title": "Descriptores para el té (Camellia sinensis)",
"subtitle": "",
"image": "3783640987.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1997\n\n\n\n\n\nPages: 50 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-343-4\n\n\n\n\n\nISBN-13: 978-92-9043-343-9\n\n\n\n\n\nLanguage: ES",
"pdf": "398_Descriptores_para_el_té__Camellia_sinensis_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1997",
"pages": "50 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-343-4",
"isbn-13": "978-92-9043-343-9",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/398_Descriptores_para_el_té__Camellia_sinensis_.pdf?cache=1372930859\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/398_Descriptores_para_el_té__Camellia_sinensis_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 284Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/398_Descriptores_para_el_té__Camellia_sinensis_.pdf?cache=1372930859\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1997<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 50 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-343-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-343-9<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_el_tomate_emlycopersiconem_spp.html",
"title": "Descriptores para el tomate (Lycopersicon spp.)",
"subtitle": "",
"image": "92a272ee15.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 44 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\n\n\n\n\nLanguage: ES",
"pdf": "489_Descriptores_para_el_tomate__Lycopersicon_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1996",
"pages": "44 p.",
"format": "17x24 Softcover; PDF",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/489_Descriptores_para_el_tomate__Lycopersicon_spp._.pdf?cache=1372930859\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/489_Descriptores_para_el_tomate__Lycopersicon_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 214Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/489_Descriptores_para_el_tomate__Lycopersicon_spp._.pdf?cache=1372930859\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 44 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_los_citricos_emcitrusem_spp.html",
"title": "Descriptores para los cÃtricos (Citrus spp.)",
"subtitle": "",
"image": "230bbd039a.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 2000\n\n\n\n\n\nPages: 66 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-425-2\n\n\n\n\n\nISBN-13: 978-92-9043-425-2\n\n\n\n\n\nLanguage: ES",
"pdf": "539_Descriptores_para_los_cÃtricos__Citrus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2000",
"pages": "66 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-425-2",
"isbn-13": "978-92-9043-425-2",
"language": "ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/539_Descriptores_para_los_cÃtricos__Citrus_spp._.pdf?cache=1372930859\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/539_Descriptores_para_los_cÃtricos__Citrus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 566Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/539_Descriptores_para_los_cÃtricos__Citrus_spp._.pdf?cache=1372930859\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2000<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 66 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-425-2<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-425-2<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_embrassica_campestrisem_l.html",
"title": "Descriptors for Brassica campestris L.",
"subtitle": "",
"image": "d56b35c4ee.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1987\n\n\n\n\n\nPages: 27 p.\n\n\n\n\n\nFormat: B5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1987",
"pages": "27 p.",
"format": "B5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1987<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 27 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/340\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_embetaem_spp.html",
"title": "Descriptors for Beta spp.",
"subtitle": "",
"image": "080fa1681e.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1991\n\n\n\n\n\nPages: 37 p.\n\n\n\n\n\nFormat: 17x24 Softcover\n\n\n\n\n\nISBN-10: 92-9043-202-0\n\n\n\n\n\nISBN-13: 978-92-9043-202-9\n\n\n\n\n\nLanguage: EN",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1991",
"pages": "37 p.",
"format": "17x24 Softcover",
"isbn-10": "92-9043-202-0",
"isbn-13": "978-92-9043-202-9",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1991<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 37 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-202-0<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-202-9<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_emlathyrusem_spp.html",
"title": "Descriptors for Lathyrus spp.",
"subtitle": "",
"image": "f72d1acfc9.jpg",
"description": "Descriptors for Lathyrus spp. was developed by Dr R.L. Pandey, Dr P.N. Mathur, Dr Stefano Padulosi and Dr R.N. Sharma with inputs from Dr K.W. Riley, Dr V. Ramanatha Rao, Dr Larry Robertson and Dr. Bhag Mal. The development of this descriptor list has been coordinated by Dr P.N. Mathur. A draft version prepared in the internationally accepted IPGRI format for descriptor lists was subsequently sent to a number of international experts for their comments and amendments. A full list of the names and addresses of those involved is given in 'Contributors'.",
"pdf": "547_Descriptors_for_Lathyrus_spp..pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2000",
"pages": "60 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-436-8",
"isbn-13": "978-92-9043-436-8",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/547_Descriptors_for_Lathyrus_spp..pdf?cache=1372930860\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/547_Descriptors_for_Lathyrus_spp.']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 594Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/547_Descriptors_for_Lathyrus_spp..pdf?cache=1372930860\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Descriptors for Lathyrus spp. was developed by Dr R.L. Pandey, Dr P.N. Mathur, Dr Stefano Padulosi and Dr R.N. Sharma with inputs from Dr K.W. Riley, Dr V. Ramanatha Rao, Dr Larry Robertson and Dr. Bhag Mal. The development of this descriptor list has been coordinated by Dr P.N. Mathur. A draft version prepared in the internationally accepted IPGRI format for descriptor lists was subsequently sent to a number of international experts for their comments and amendments. A full list of the names and addresses of those involved is given in 'Contributors'. \n</p>\n<p> </p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2000<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 60 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-436-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-436-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_empistaciaem_spp_excluding_empistacia_veraem_l.html",
"title": "Descriptors for Pistacia spp. (excluding Pistacia vera L.)",
"subtitle": "",
"image": "c729520aaa.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1998\n\n\n\n\n\nPages: 48 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-374-4\n\n\n\n\n\nISBN-13: 978-92-9043-374-3\n\n\n\n\n\nLanguage: EN",
"pdf": "169_Descriptors_for_Pistacia_spp.__excluding_Pistacia_vera_L._.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1998",
"pages": "48 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-374-4",
"isbn-13": "978-92-9043-374-3",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/169_Descriptors_for_Pistacia_spp.__excluding_Pistacia_vera_L._.pdf?cache=1372930860\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/169_Descriptors_for_Pistacia_spp.__excluding_Pistacia_vera_L._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 2227Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/169_Descriptors_for_Pistacia_spp.__excluding_Pistacia_vera_L._.pdf?cache=1372930860\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1998<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 48 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-374-4<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-374-3<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptores_para_quinua_emchenopodium_quinoa_emwilld_y_sus_parientes_silvestres.html",
"title": "Descriptores para quinua (Chenopodium quinoa Willd.) y sus parientes silvestres",
"subtitle": "",
"image": "c2b29ae8c0.jpg",
"description": "La lista de descriptores para quinua (Chenopodium quinoa Willd.) y sus parientes silvestres es una revisión de la publicación original del CIRF (actualmente Bioversity International), titulada “Descriptores de quinua†(AGP:IBPGR/81 /104). Esta revisión, se amplió para acomodar los parientes silvestres, y es el resultado de una colaboración conjunta entre Bioversity International, la FAO, PROINPA, INIAF y el FIDA. Durante el proceso de revisión, participaron más de 50 expertos en quinua pertenecientes a 11 paÃses y organizaciones diferentes.",
"pdf": "Descriptores_para_quinua_y_sus_parientes_silvestres__Chenopodium_quinoa_Willd___web_1630.1.pdf",
"corporate_author": "Bioversity International, Roma (Italia); FAO, Oficina Regional para América Latina y el Caribe, Santiago de Chile (Chile); PROINPA, La Paz (Bolivia); Instituto Nacional de Innovación Agropecuaria y Forestal (INIAF), La Paz (Bolivia)",
"publication_year": "2013",
"pages": "52 p.",
"format": "PDF",
"isbn-13": "978-92-9043-927-1",
"language": "SP",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/Descriptores_para_quinua_y_sus_parientes_silvestres__Chenopodium_quinoa_Willd___web_1630.1.pdf?cache=1372930860\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/Descriptores_para_quinua_y_sus_parientes_silvestres__Chenopodium_quinoa_Willd___web_1630.1']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 668Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/Descriptores_para_quinua_y_sus_parientes_silvestres__Chenopodium_quinoa_Willd___web_1630.1.pdf?cache=1372930860\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p> La lista de descriptores para quinua (<em>Chenopodium quinoa </em>Willd.) y sus parientes silvestres es una revisión de la publicación original del CIRF (actualmente Bioversity International), titulada “Descriptores de quinua†(AGP:IBPGR/81 /104). Esta revisión, se amplió para acomodar los parientes silvestres, y es el resultado de una colaboración conjunta entre Bioversity International, la FAO, PROINPA, INIAF y el FIDA. Durante el proceso de revisión, participaron más de 50 expertos en quinua pertenecientes a 11 paÃses y organizaciones diferentes. \n</p>\n<p>El presente trabajo de actualización de los descriptores de la quinua, ha sido financiado por el Proyecto Semillas Andinas de la FAO (GCP/RLA/183/SPA), que se ejecuta con recursos de la Cooperación Española. \n</p>\n<p>Este trabajo tiene por objeto aumentar la utilización y conservación de los recursos fitogenéticos y se espera que contribuya a los estudios sobre el análisis de la diversidad genética, el manejo del germoplasma, la definición de variedades nuevas y caracterÃsticas útiles para el mejoramiento de los cultivos y de la nutrición.</p><p></p>\n\n<p>\n\n\n\n<!-- Bioversity International, Roma (Italia); FAO, Oficina Regional para América Latina y el Caribe, Santiago de Chile (Chile); PROINPA, La Paz (Bolivia); Instituto Nacional de Innovación Agropecuaria y Forestal (INIAF), La Paz (Bolivia) -->\n\n<b>Corporate Author:</b> Bioversity International, Roma (Italia); FAO, Oficina Regional para América Latina y el Caribe, Santiago de Chile (Chile); PROINPA, La Paz (Bolivia); Instituto Nacional de Innovación Agropecuaria y Forestal (INIAF), La Paz (Bolivia)<br>\n\n<!-- Bioversity International, Roma (Italia); FAO, Oficina Regional para América Latina y el Caribe, Santiago de Chile (Chile); PROINPA, La Paz (Bolivia); Instituto Nacional de Innovación Agropecuaria y Forestal (INIAF), La Paz (Bolivia) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2013<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 52 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-927-1<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> SP<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://cropgenebank.sgrp.cgiar.org\">Crop Genebank Knowledge Base </a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>\n\n<!-- ###SUBPART_INT_LINKS_CONTAINER### -->\n\n<p style=\"font-weight:bold;\">Additional links:</p>\n\n<ul style=\"margin-top:9px;\">\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=1831\" title=\"Conservation\">Conservation</a></li>\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=2321\" title=\"Neglected & Underutilized Species\">Neglected & Underutilized Species</a></li>\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=2323\" title=\"Genebanks\">Genebanks</a></li>\n\n\t\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a href=\"http://www.bioversityinternational.org/index.php?id=3737\" title=\"Descriptor lists and derived standards\">Descriptor lists and derived standards</a></li>\n\n\t\n\n</ul>\n\n<!-- ###SUBPART_INT_LINKS_CONTAINER### -->\n\n\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->\n\n<!-- **** publications ****-->\n\n<p style=\"font-weight:bold;\">Links to other publications:</p>\n\n<ul style=\"margin-top:9px;\">\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=6901\" title=\"June 2012\">FAO/Bioversity Multi-Crop Passport Descriptors V.2 [MCPD V.2]. - June 2012</a> - Alercia, A; Diulgheroff, S; Mackay, M.\n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=3070\" title=\"Guidelines for developers\">Developing crop descriptor lists - Guidelines for developers</a> \n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=5097\" title=\"Methodologies for the assessment of 22 crops\">Key characterization and evaluation descriptors: - Methodologies for the assessment of 22 crops</a> - Alercia, A.\n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=2404\" title=\"A self-teaching approach to the understanding, analysis and development of genetic resources documentation\">Guidebook for genetic resources documentation - A self-teaching approach to the understanding, analysis and development of genetic resources documentation</a> - Painting, K.A.; Perry, M.C.; Denning, R.A.; Ayad, W.G.\n\n</li>\n\n\n\n<li style=\"margin-top:5px;margin-bottom:5px;\">\n\n <a href=\"http://www.bioversityinternational.org/index.php?id=19&user_bioversitypublications_pi1[showUid]=4649\" title=\"\">Descriptores del conocimiento que los agricultores tienen de las plantas</a> \n\n</li>\n\n\n\n</ul>\n\n<!-- ###SUBPART_EXTERNAL_LINKS_CONTAINER### -->"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_emalliumem_emalliumem_spp.html",
"title": "Descriptors for Allium (Allium spp.)",
"subtitle": "",
"image": "b604de5d73.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 2001\n\n\n\n\n\nPages: 42 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-506-2\n\n\n\n\n\nISBN-13: 978-92-9043-506-8\n\n\n\n\n\nLanguage: EN",
"pdf": "728_Descriptors_for_Allium__Allium_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "2001",
"pages": "42 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-506-2",
"isbn-13": "978-92-9043-506-8",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/728_Descriptors_for_Allium__Allium_spp._.pdf?cache=1372930860\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/728_Descriptors_for_Allium__Allium_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 572Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/728_Descriptors_for_Allium__Allium_spp._.pdf?cache=1372930860\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2001<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 42 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-506-2<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-506-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 10 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_emvigna_mungoem_and_emv_radiataem.html",
"title": "Descriptors for Vigna mungo and V. radiata",
"subtitle": "",
"image": "540a228f24.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1985\n\n\n\n\n\nPages: 23 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1985",
"pages": "23 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 23 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/299\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_emvigna_aconitifoliaem_and_emv_trilobataem.html",
"title": "Descriptors for Vigna aconitifolia and V. trilobata",
"subtitle": "",
"image": "14dae7c8e0.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1985\n\n\n\n\n\nPages: 39 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1985",
"pages": "39 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 39 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/298\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_emsetaria_italicaem_and_ems_pumilaem.html",
"title": "Descriptors for Setaria italica and S. pumila",
"subtitle": "",
"image": "1ac63c5414.jpg",
"description": "Corporate Author: International Board for Plant Genetic Resources, (IBPGR), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1985\n\n\n\n\n\nPages: 18 p.\n\n\n\n\n\nFormat: 17x24.5 Softcover\n\n\n\n\n\n\n\n\n\nLanguage: EN\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRelated Links:",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome (Italy)",
"publication_year": "1985",
"pages": "18 p.",
"format": "17x24.5 Softcover",
"language": "EN",
"descriptionHTML": "<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1985<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 18 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/247\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_annual_medicagodescripteurs_pour_medicago_annuelles.html",
"title": "Descriptors for annual medicago/Descripteurs pour medicago annuelles",
"subtitle": "",
"image": "1d145438ae.jpg",
"description": "Bilingual publication: English/French.",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1991",
"pages": "66 p.",
"format": "B5 Softcover",
"isbn-10": "92-9043-203-9",
"isbn-13": "978-92-9043-203-6",
"language": "EN;FR",
"descriptionHTML": "<p class=\"bodytext\"></p><p>Bilingual publication: English/French.</p><p></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1991<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 66 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5 Softcover<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-203-9<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-203-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN;FR<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b>Related Links:</b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"><a target=\"_blank\" href=\"http://www2.bioversityinternational.org/publications/Web_version/116\">Read the HTML version of this publication</a><br></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_banana_emmusaem_spp.html",
"title": "Descriptors for banana (Musa spp.)",
"subtitle": "",
"image": "6b7541539c.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Network for the Improvement of Banana and Plantain, (INIBAP), Montpellier (France)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 55 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-307-8\n\n\n\n\n\nISBN-13: 978-92-9043-307-1\n\n\n\n\n\nLanguage: EN;FR;ES",
"pdf": "326.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Network for the Improvement of Banana and Plantain, (INIBAP), Montpellier (France)",
"publication_year": "1996",
"pages": "55 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-307-8",
"isbn-13": "978-92-9043-307-1",
"language": "EN;FR;ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/326.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/326']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 421Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/326.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Network for the Improvement of Banana and Plantain, (INIBAP), Montpellier (France) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Network for the Improvement of Banana and Plantain, (INIBAP), Montpellier (France)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Network for the Improvement of Banana and Plantain, (INIBAP), Montpellier (France) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 55 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-307-8<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-307-1<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN;FR;ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_black_pepper_empiper_nigrumem_l_descriptores_para_pimienta_negra_empiper.html",
"title": "Descriptors for black pepper (Piper nigrum L.)/ Descriptores para pimienta negra (Piper nigrum L.)",
"subtitle": "",
"image": "83a743e982.jpg",
"description": "",
"pdf": "338_Descriptors_for_black_pepper__Piper_nigrum_L._.Descriptores_para_pimienta_negra__Piper_nigrum_L._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1995",
"pages": "80 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-241-1",
"isbn-13": "978-92-9043-241-8",
"language": "EN;ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/338_Descriptors_for_black_pepper__Piper_nigrum_L._.Descriptores_para_pimienta_negra__Piper_nigrum_L._.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/338_Descriptors_for_black_pepper.ES']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1303Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/338_Descriptors_for_black_pepper__Piper_nigrum_L._.Descriptores_para_pimienta_negra__Piper_nigrum_L._.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n<!-- ###SUBPART_FILE_CONTAINER_ES### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/338_Descriptors_for_black_pepper.ES.pdf\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/338_Descriptors_for_black_pepper.ES']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> Spanish version available</a><br><br>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n <!-- ###SUBPART_FILE_CONTAINER_ES### -->\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Bilingual publication: English/Spanish.</p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1995<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 80 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-241-1<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-241-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN;ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_avocado_emperseaem_sppaguacate_emperseaem_spp.html",
"title": "Descriptors for avocado (Persea spp.)/aguacate (Persea spp.)",
"subtitle": "",
"image": "c8327bef4e.jpg",
"description": "",
"pdf": "323_Descriptors_for_avocado.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1995",
"pages": "106 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-220-9",
"isbn-13": "978-92-9043-220-3",
"language": "EN;ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/323_Descriptors_for_avocado.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/323_Descriptors_for_avocado__Persea_spp._aguacate__Persea_spp._.ES']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1561Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/323_Descriptors_for_avocado.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n<!-- ###SUBPART_FILE_CONTAINER_ES### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/323_Descriptors_for_avocado__Persea_spp._aguacate__Persea_spp._.ES.pdf\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/323_Descriptors_for_avocado__Persea_spp._aguacate__Persea_spp._.ES']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> Spanish version available</a><br><br>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n <!-- ###SUBPART_FILE_CONTAINER_ES### -->\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Bilingual publication: English/Spanish.</p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1995<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 106 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-220-9<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-220-3<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN;ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_barley_emhordeum_vulgareem_l.html",
"title": "Descriptors for barley (Hordeum vulgare L.)",
"subtitle": "",
"image": "4589001693.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1994\n\n\n\n\n\nPages: 46 p. \n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-222-5\n\n\n\n\n\nISBN-13: 978-92-9043-222-7\n\n\n\n\n\nLanguage: EN",
"pdf": "333_Descriptors_for_barley__Hordeum_vulgare_L._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1994",
"pages": "46 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-222-5",
"isbn-13": "978-92-9043-222-7",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/333_Descriptors_for_barley__Hordeum_vulgare_L._.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/333_Descriptors_for_barley__Hordeum_vulgare_L._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1286Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/333_Descriptors_for_barley__Hordeum_vulgare_L._.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1994<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 46 p. <br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-222-5<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-222-7<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_bambara_groundnut_emvigna_subterraneaem.html",
"title": "Descriptors for Bambara groundnut (Vigna subterranea)",
"subtitle": "",
"image": "82cdc85b22.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Institute of Tropical (IITA); International Bambara Groundnut Network (BAMNET)\n\n\n\n\n\n\n\n\n\nPublication Year: 2000\n\n\n\n\n\nPages: 48 p.\n\n\n\n\n\nFormat: B5; PDF\n\n\n\n\n\nISBN-10: 92-9043-461-9\n\n\n\n\n\nISBN-13: 978-92-9043-461-0\n\n\n\n\n\nLanguage: EN",
"pdf": "324_Descriptors_for_Bambara_groundnut.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Institute of Tropical (IITA); International Bambara Groundnut Network (BAMNET)",
"publication_year": "2000",
"pages": "48 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-461-9",
"isbn-13": "978-92-9043-461-0",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/324_Descriptors_for_Bambara_groundnut.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/324_Descriptors_for_Bambara_groundnut']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 622Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/324_Descriptors_for_Bambara_groundnut.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Institute of Tropical (IITA); International Bambara Groundnut Network (BAMNET) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Institute of Tropical (IITA); International Bambara Groundnut Network (BAMNET)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy); International Institute of Tropical (IITA); International Bambara Groundnut Network (BAMNET) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2000<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 48 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-461-9<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-461-0<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_brassica_and_raphanus.html",
"title": "Descriptors for brassica and raphanus",
"subtitle": "",
"image": "2eea005b5d.jpg",
"description": "Brassica and Raphanus spp, are highly polymorphic, exhibiting a wide range of intraspecific variation and utilization. Similar morphotypes exist among several species. The descriptors and descriptor states used in this document have been selected from extensive lists of descriptors prepared by crop experts in various countries. Descriptors have been selected to provide the characterization and preliminary evaluation of the rangeof discrete morphotypes and intergrading morphotypes found in most of the Brassica species and Raphanus. The system is also sufficiently flexible as to accommodate the characterization of wild and weedy species. The greatest variety of descriptor states exists for the mature vegetative state of the various morphotypes. Therefore, for some morphotypes certain desccriptor states will not be applicable and therefore omitted from use, e.g. descriptors for root characteristics would not be used for heading or large stemmed morphotypes, nor would many of the vegetative descriptors be of value in characterizing or evaluating oilseed forms.",
"pdf": "339_Asian_Vegetable_Research_and_Development_Center__AVRDC_.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1990",
"pages": "51 p.",
"format": "B5 Softcover; PDF",
"isbn-10": "92-9043-184-9",
"isbn-13": "978-92-9043-184-8",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/339_Asian_Vegetable_Research_and_Development_Center__AVRDC_.pdf?cache=1372930863\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/339_Asian_Vegetable_Research_and_Development_Center__AVRDC_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1516Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/339_Asian_Vegetable_Research_and_Development_Center__AVRDC_.pdf?cache=1372930863\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Brassica and Raphanus spp, are highly polymorphic, exhibiting a wide range of intraspecific variation and utilization. Similar morphotypes exist among several species. The descriptors and descriptor states used in this document have been selected from extensive lists of descriptors prepared by crop experts in various countries. Descriptors have been selected to provide the characterization and preliminary evaluation of the rangeof discrete morphotypes and intergrading morphotypes found in most of the Brassica species and Raphanus. The system is also sufficiently flexible as to accommodate the characterization of wild and weedy species. The greatest variety of descriptor states exists for the mature vegetative state of the various morphotypes. Therefore, for some morphotypes certain desccriptor states will not be applicable and therefore omitted from use, e.g. descriptors for root characteristics would not be used for heading or large stemmed morphotypes, nor would many of the vegetative descriptors be of value in characterizing or evaluating oilseed forms. \n</p>\n<p> </p><p></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1990<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 51 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-184-9<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-184-8<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_buckwheat_emfagopyrumem_spp.html",
"title": "Descriptors for buckwheat (Fagopyrum spp.)",
"subtitle": "",
"image": "e94161a254.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1994\n\n\n\n\n\nPages: 50 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-221-7\n\n\n\n\n\nISBN-13: 978-92-9043-221-0\n\n\n\n\n\nLanguage: EN",
"pdf": "388_Descriptors_for_buckwheat.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1994",
"pages": "50 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-221-7",
"isbn-13": "978-92-9043-221-0",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/388_Descriptors_for_buckwheat.pdf?cache=1372930864\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/388_Descriptors_for_buckwheat']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1444Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/388_Descriptors_for_buckwheat.pdf?cache=1372930864\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1994<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 50 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-221-7<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-221-0<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_capsicum_emcapsicumem_spp.html",
"title": "Descriptors for capsicum (Capsicum spp.)",
"subtitle": "",
"image": "51a952e4b1.jpg",
"description": "Bilingual publication: English/Spanish.",
"pdf": "345_Descriptors_for_capsicum__Capsicum_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1995",
"pages": "114 p.",
"format": "B5; PDF",
"isbn-10": "92-9043-216-0",
"isbn-13": "978-92-9043-216-6",
"language": "EN;ES",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/345_Descriptors_for_capsicum__Capsicum_spp._.pdf?cache=1372930864\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/345_Descriptors_for_capsicum__Capsicum_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 776Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/345_Descriptors_for_capsicum__Capsicum_spp._.pdf?cache=1372930864\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Bilingual publication: English/Spanish.</p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1995<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 114 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-216-0<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-216-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN;ES<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_cardamom_emelettaria_cardamomumem_maton.html",
"title": "Descriptors for cardamom (Elettaria cardamomum Maton)",
"subtitle": "",
"image": "55ba7bffb1.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1994\n\n\n\n\n\nPages: 52 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-234-9\n\n\n\n\n\nISBN-13: 978-92-9043-234-0\n\n\n\n\n\nLanguage: EN",
"pdf": "346_Descriptors_for_cardamom__Elettaria_cardamomum_Maton_.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1994",
"pages": "52 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-234-9",
"isbn-13": "978-92-9043-234-0",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/346_Descriptors_for_cardamom__Elettaria_cardamomum_Maton_.pdf?cache=1372930865\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/346_Descriptors_for_cardamom__Elettaria_cardamomum_Maton_']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 2599Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/346_Descriptors_for_cardamom__Elettaria_cardamomum_Maton_.pdf?cache=1372930865\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1994<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 52 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-234-9<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-234-0<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_chickpea_emcicer_arietinumem_l.html",
"title": "Descriptors for chickpea (Cicer arietinum L.)",
"subtitle": "",
"image": "304c3dedb6.jpg",
"description": "Published in cooperation with the International Center for Agricultural Research in the Dry Areas and the International Crops Research Institute for the Semi-Arid Tropics",
"pdf": "358_Descriptors_for_chickpea__Cicer_arietinum_L._.pdf",
"corporate_author": "International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)",
"publication_year": "1993",
"pages": "31 p.",
"format": "17x24.5 Softcover; PDF",
"isbn-10": "92-9043-137-7",
"isbn-13": "978-92-9043-137-4",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/358_Descriptors_for_chickpea__Cicer_arietinum_L._.pdf?cache=1372930865\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/358_Descriptors_for_chickpea__Cicer_arietinum_L._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1003Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/358_Descriptors_for_chickpea__Cicer_arietinum_L._.pdf?cache=1372930865\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Published in cooperation with the International Center for Agricultural Research in the Dry Areas and the International Crops Research Institute for the Semi-Arid Tropics</p><p></p>\n\n<p>\n\n\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n<b>Corporate Author:</b> International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy)<br>\n\n<!-- International Board for Plant Genetic Resources, (IBPGR), Rome, (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1993<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 31 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24.5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-137-7<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-137-4<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_citrus_emcitrusem_spp.html",
"title": "Descriptors for Citrus (Citrus spp.)",
"subtitle": "",
"image": "bc079b17bc.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1999\n\n\n\n\n\nPages: 66 p.\n\n\n\n\n\nFormat: B5 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-425-2\n\n\n\n\n\nISBN-13: 978-92-9043-425-2\n\n\n\n\n\nLanguage: EN",
"pdf": "359_Descriptors_for_Citrus__Citrus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1999",
"pages": "66 p.",
"format": "B5 Softcover; PDF",
"isbn-10": "92-9043-425-2",
"isbn-13": "978-92-9043-425-2",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/359_Descriptors_for_Citrus__Citrus_spp._.pdf?cache=1372930866\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/359_Descriptors_for_Citrus__Citrus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 566Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/359_Descriptors_for_Citrus__Citrus_spp._.pdf?cache=1372930866\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1999<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 66 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> B5 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-425-2<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-425-2<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_coconut_emcocos_nuciferaem_l.html",
"title": "Descriptors for coconut (Cocos nucifera L.)",
"subtitle": "",
"image": "2c762806d1.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1995\n\n\n\n\n\nPages: 61 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-215-2\n\n\n\n\n\nISBN-13: 978-92-9043-215-9\n\n\n\n\n\nLanguage: EN",
"pdf": "392_Descriptors_for_coconut.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1995",
"pages": "61 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-215-2",
"isbn-13": "978-92-9043-215-9",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/392_Descriptors_for_coconut.pdf?cache=1372930867\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/392_Descriptors_for_coconut']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1727Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/392_Descriptors_for_coconut.pdf?cache=1372930867\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1995<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 61 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-215-2<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-215-9<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_durian_emdurio_zibethinusem_murr.html",
"title": "Descriptors for durian (Durio zibethinus Murr.)",
"subtitle": "",
"image": "5c5926f8a6.jpg",
"description": "Descriptors for Durian (Durio zibethinus Murr.) were developed by Drs Songpol Somsri, Alfredo T. Corpuz, Salma Idris and Bhag Mal. Dr Bhag Mal coordinated the development of this descriptor list. A draft version prepared in the internationally accepted Bioversity format for descriptor lists was subsequently sent to a number of international experts for their comments and amendments. A full list of the names and addresses of those involved is given in 'Contributors'. Bioversity encourages the collection of data for all five types of descriptors (see Definitions and Use of Descriptors), whereby data from the first four categories - Passport, Management, Environment and Site and Characterization - should be available for any accession. The number of descriptors selected in each of the categories will depend on the crop and the importance of the crop's description. Descriptors listed under Evaluation allow for a more extensive description of accession, but generally require replicated trials over a period of time. Although the suggested coding should not be regarded as the definitive scheme, this format represents an important tool for a standardized characterization system and it is promoted by Bioversity throughout the world. This descriptor list provides an international format and thereby produces a universally understood 'language' for plant genetic resources data. The adoption of this scheme for data encoding, or at least the production of a transformation method to convert other schemes to the Bioversity format, will produce a rapid, reliable and efficient means for information storage, retrieval and communication, and will assist with the utilization of germplasm. It is recommended, therefore, that information should be produced by closely following the descriptor list with regard to ordering and numbering descriptors, using the descriptors specified, and using the descriptor states recommended. This descriptor list is intended to be comprehensive for the descriptors that it contains. This approach assists with the standardization of descriptor definitions. Bioversity does not, however, assumes that each curator will characterize accessions of their collection utilizing all descriptors given. Descriptors should be used when they are useful to the curator for the management and maintenance of the collection and/or to the users of the plant genetic resources. However, highly discriminating descriptors are highlighted in the text to facilitate selection of descriptors.<p.<></p.<> Multicrop passport descriptors were developed jointly by Bioversity (ex IPGRI) and FAO, to provide consistent coding schemes for common passport descriptors across crops. They are marked in the text as [MCPD]. Please note that owing to the generic nature of the multicrop passport descriptors, not all descriptor states for a particular descriptor will be relevant to a specific crop. In Annex I, the reader will find a collecting form for durian that will facilitate data collecting. Any suggestions for improvement on the Descriptors for Durian will be highly appreciated by Bioversity.",
"pdf": "1260_Descriptors_for_Durian__Durio_zibethinus_Murr._.pdf",
"corporate_author": "Bioversity International",
"publication_year": "2007",
"pages": "64 p.",
"format": "PDF, On-line",
"isbn-13": "978-92-9043-753-6",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/1260_Descriptors_for_Durian__Durio_zibethinus_Murr._.pdf?cache=1372930867\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/1260_Descriptors_for_Durian__Durio_zibethinus_Murr._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 1843Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/1260_Descriptors_for_Durian__Durio_zibethinus_Murr._.pdf?cache=1372930867\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>Descriptors for Durian (Durio zibethinus Murr.) were developed by Drs Songpol Somsri, Alfredo T. Corpuz, Salma Idris and Bhag Mal. Dr Bhag Mal coordinated the development of this descriptor list. A draft version prepared in the internationally accepted Bioversity format for descriptor lists was subsequently sent to a number of international experts for their comments and amendments. A full list of the names and addresses of those involved is given in 'Contributors'. Bioversity encourages the collection of data for all five types of descriptors (see Definitions and Use of Descriptors), whereby data from the first four categories - Passport, Management, Environment and Site and Characterization - should be available for any accession. The number of descriptors selected in each of the categories will depend on the crop and the importance of the crop's description. Descriptors listed under Evaluation allow for a more extensive description of accession, but generally require replicated trials over a period of time. Although the suggested coding should not be regarded as the definitive scheme, this format represents an important tool for a standardized characterization system and it is promoted by Bioversity throughout the world. This descriptor list provides an international format and thereby produces a universally understood 'language' for plant genetic resources data. The adoption of this scheme for data encoding, or at least the production of a transformation method to convert other schemes to the Bioversity format, will produce a rapid, reliable and efficient means for information storage, retrieval and communication, and will assist with the utilization of germplasm. It is recommended, therefore, that information should be produced by closely following the descriptor list with regard to ordering and numbering descriptors, using the descriptors specified, and using the descriptor states recommended. This descriptor list is intended to be comprehensive for the descriptors that it contains. This approach assists with the standardization of descriptor definitions. Bioversity does not, however, assumes that each curator will characterize accessions of their collection utilizing all descriptors given. Descriptors should be used when they are useful to the curator for the management and maintenance of the collection and/or to the users of the plant genetic resources. However, highly discriminating descriptors are highlighted in the text to facilitate selection of descriptors.<p.<></p.<> Multicrop passport descriptors were developed jointly by Bioversity (ex IPGRI) and FAO, to provide consistent coding schemes for common passport descriptors across crops. They are marked in the text as [MCPD]. Please note that owing to the generic nature of the multicrop passport descriptors, not all descriptor states for a particular descriptor will be relevant to a specific crop. In Annex I, the reader will find a collecting form for durian that will facilitate data collecting. Any suggestions for improvement on the Descriptors for Durian will be highly appreciated by Bioversity.</p><p></p>\n\n<p>\n\n\n\n<!-- Bioversity International -->\n\n<b>Corporate Author:</b> Bioversity International<br>\n\n<!-- Bioversity International -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 2007<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 64 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> PDF, On-line<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-753-6<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<!-- ###SUBPART_PRICE### -->\n\n<!--<b>###LABEL_PRICE###:</b> 0 <br/>-->\n\n<!-- ###SUBPART_PRICE### -->\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_cowpea.html",
"title": "Descriptors for cowpea",
"subtitle": "",
"image": "985450f4e3.jpg",
"description": "A coded list is given of descriptors and descriptor states for characterizing Vigna unguiculata cultivars in germplasm work. (Abstract © CAB ABSTRACTS, CAB International)",
"pdf": "377_Descriptors_for_cowpea.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1983",
"pages": "29 p.",
"format": "16.8x24.6 Softcover; PDF",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/377_Descriptors_for_cowpea.pdf?cache=1372930867\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/377_Descriptors_for_cowpea']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 182Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/377_Descriptors_for_cowpea.pdf?cache=1372930867\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p><p>A coded list is given of descriptors and descriptor states for characterizing Vigna unguiculata cultivars in germplasm work. (Abstract © CAB ABSTRACTS, CAB International)</p><p></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1983<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 29 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 16.8x24.6 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n\n\n\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_coffee_emcoffeaem_spp_and_empsilanthusem_spp.html",
"title": "Descriptors for coffee (Coffea spp. and Psilanthus spp.)",
"subtitle": "",
"image": "358268de70.jpg",
"description": "Corporate Author: International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)\n\n\n\n\n\n\n\n\n\nPublication Year: 1996\n\n\n\n\n\nPages: 36 p.\n\n\n\n\n\nFormat: 17x24 Softcover; PDF\n\n\n\n\n\nISBN-10: 92-9043-305-1\n\n\n\n\n\nISBN-13: 978-92-9043-305-7\n\n\n\n\n\nLanguage: EN",
"pdf": "365_Descriptors_for_Coffee__Coffea_spp._and_Psilanthus_spp._.pdf",
"corporate_author": "International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)",
"publication_year": "1996",
"pages": "36 p.",
"format": "17x24 Softcover; PDF",
"isbn-10": "92-9043-305-1",
"isbn-13": "978-92-9043-305-7",
"language": "EN",
"descriptionHTML": "<!-- ###SUBPART_FILE_CONTAINER### -->\n\n<a href=\"fileadmin/bioversity/publications/pdfs/365_Descriptors_for_Coffee__Coffea_spp._and_Psilanthus_spp._.pdf?cache=1372930867\" onclick=\"javascript: _gaq.push(['_trackPageview', '/downloads/publication/365_Descriptors_for_Coffee__Coffea_spp._and_Psilanthus_spp._']);\" style=\"font-size:12px;\"><br><img src=\"fileadmin/bioversity/images/icons/pdf.gif\" width=\"17\" border=\"0\" alt=\"\" title=\"\"> PDF free file available - 132Kb</a><a href=\"fileadmin/bioversity/publications/pdfs/365_Descriptors_for_Coffee__Coffea_spp._and_Psilanthus_spp._.pdf?cache=1372930867\"></a>\n\n<p class=\"bodytext noprint\" style=\"font-size:7.5pt;margin-top:5px;\">To download the PDF file, right-click on the link and choose <strong>Save as/Save link as</strong>.<br>Download and install \n\n<span style=\"cursor: pointer\" onclick=\"javascript:window.open('http://get.adobe.com/reader/', 'blank','toolbar=no,width=600,height=600')\"><u>Acrobat Reader</u></span> to view PDF files.<br></p>\n\n<!-- ###SUBPART_FILE_CONTAINER### -->\n\n\n\n\n\n\n\n\n\n<p class=\"bodytext\"></p>\n\n<p>\n\n\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n<b>Corporate Author:</b> International Plant Genetic Resources Instit., (IPGRI), Rome (Italy)<br>\n\n<!-- International Plant Genetic Resources Instit., (IPGRI), Rome (Italy) -->\n\n\n\n\n\n<!-- ###SUBPART_YEAR### -->\n\n<b>Publication Year:</b> 1996<br>\n\n<!-- ###SUBPART_YEAR### -->\n\n<!-- ###SUBPART_PAGES### -->\n\n<b>Pages:</b> 36 p.<br>\n\n<!-- ###SUBPART_PAGES### -->\n\n<!-- ###SUBPART_FORMAT### -->\n\n<b>Format:</b> 17x24 Softcover; PDF<br>\n\n<!-- ###SUBPART_FORMAT### -->\n\n<!-- ###SUBPART_ISBN10### -->\n\n<b>ISBN-10:</b> 92-9043-305-1<br>\n\n<!-- ###SUBPART_ISBN10### -->\n\n<!-- ###SUBPART_ISBN13### -->\n\n<b>ISBN-13:</b> 978-92-9043-305-7<br>\n\n<!-- ###SUBPART_ISBN13### -->\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n<b>Language:</b> EN<br>\n\n<!-- ###SUBPART_LANGUAGE### -->\n\n\n\n<br>\n\n\n\n\n\n\n\n\n\n\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n<b></b><br>\n\n</p><ul style=\"margin-top:9px;\">\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n<li style=\"margin-top:5px;margin-bottom:5px;\"></li>\n\n</ul>\n\n<!-- ###SUBPART_HTMLLINKSNEW### -->\n\n\n\n\n\n\n\n<!-- ###EARTHPRINT### --><p></p>"
},
{
"url": "http://www.bioversityinternational.org/nc/publications/publication/issue/descriptors_for_eggplantdescripteurs_pour_laubergine.html",
"title": "Descriptors for eggplant/Descripteurs pour l'aubergine",
"subtitle": "",
"image": "260cf4b0a2.jpg",
"description": "",
"pdf": "401_Descriptors_for_eggplant.Descripteurs_pour_l_aubergine.pdf",
"corporate_author": "International Board for Plant Genetic Resources (IBPGR), Rome (Italy)",
"publication_year": "1990",
"pages": "46 p.",
"format": "B5 Softcover; PDF",
"isbn-10": "92-9043-200-4",
"isbn-13": "978-92-9043-200-5",