{if $error} {if $error eq 'missing_name'} <h1>Missing package name</h1> <form action="?" method="get"> <p>You have not specified any package name.</p> <p><label for="rpm">Please enter one package name: </label><input type="text" name="rpm" id="rpm"/> <input type="submit"/></p> </form> {else} <p id="error"><strong>Ooops, an error occured:</strong><br/>{$error}</p> {/if} {/if} {if $pkgdb} <p id="pkgdb-link"><a href="?rpm={$name}">Hide pkgdb informations</a></p> {else} <p id="pkgdb-link"><a href="?rpm={$name}&pkgdb=1">Show more informations from pkgdb</a></p> {/if} <table id="upstream"> <caption>Upstream info</caption> {foreach from=$summary key=k item=v} <tr> <th>{$k}:</th> <td{if $k eq 'Description'} id="{$name}_desc"{/if}> {if $k eq 'URL' or $k eq 'ViewVC'} <a href="{$v}">{$v}</a> {else} {$v} {/if} </td> </tr> {/foreach} </table> {if is_array($packages) and count($packages) > 0} <table id="list-packages"> <caption>Packages available in Fedora Repositories</caption> <thead> <tr> <th>Branch</th> <th>Repository</th> <th>Version-Release</th> <th>Owner</th> <th>Co-maintainers</th> </tr> </thead> <tbody> {assign var='prev' value=''} {foreach from=$packages item=p name=plist} <tr class="{if $smarty.foreach.plist.iteration % 2 eq 0}even{else}odd{/if}"> <td>{if $p->repo_main neq $prev}<strong>{$p->repo_main}</strong>{/if}</td> <td>{$p->repo_sub}</td> <td> {if $p->epoch}{$p->epoch}:{/if} {$p->ver}-{$p->rel} </td> <td{if $p->repo_main neq $prev} id="pkgdb_{$p->repo_main}_owner"{/if}> {if $p->repo_main neq $prev} {if $fedpkg} {getBranchPeople branch=$p->repo_main people='owner'} {else} {$ajax_infos} {/if} {/if} </td> <td{if $p->repo_main neq $prev} id="pkgdb_{$p->repo_main}_maintainers"{/if}> {if $p->repo_main neq $prev} {if $fedpkg} {getBranchPeople branch=$p->repo_main people='people'} {else} {$ajax_infos} {/if} {/if} </td> </tr> {assign var='prev' value=$p->repo_main} {/foreach} </tbody> </table> {/if}