| 327 |
if source_xref: |
if source_xref: |
| 328 |
yield B("Source"), source_xref |
yield B("Source"), source_xref |
| 329 |
|
|
| 330 |
if bug.description: |
nvd = self.db.getNVD(cursor, bug.name) |
| 331 |
|
|
| 332 |
|
if nvd and nvd.cve_desc: |
| 333 |
|
yield B("Description"), nvd.cve_desc |
| 334 |
|
elif bug.description: |
| 335 |
yield B("Description"), bug.description |
yield B("Description"), bug.description |
| 336 |
|
|
| 337 |
xref = list(self.db.getBugXrefs(cursor, bug.name)) |
xref = list(self.db.getBugXrefs(cursor, bug.name)) |
| 338 |
if xref: |
if xref: |
| 339 |
yield B("References"), self.make_xref_list(url, xref) |
yield B("References"), self.make_xref_list(url, xref) |
| 340 |
|
|
|
nvd = self.db.getNVD(cursor, bug.name) |
|
| 341 |
if nvd: |
if nvd: |
| 342 |
nvd_range = nvd.rangeString() |
nvd_range = nvd.rangeString() |
| 343 |
if nvd.severity: |
if nvd.severity: |