index : website | |
Archlinux32 website - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | lib/style.php | 42 |
diff --git a/lib/style.php b/lib/style.php index ee40d10..547e350 100644 --- a/lib/style.php +++ b/lib/style.php @@ -98,15 +98,10 @@ $difflist_sorts = array( "label" => "i686 Version", "mysql" => "`i686_version`" ), - "i486_repo" => array( - "title" => "i486 repository", - "label" => "i486 Repository", - "mysql" => "`i486_repo`" - ), - "i686_repo" => array( - "title" => "i686 repository", - "label" => "i686 Repository", - "mysql" => "`i686_repo`" + "repo" => array( + "title" => "repository", + "label" => "Repository", + "mysql" => "`repo`" ), "i486_last_moved" => array( "title" => "i486 last updated", @@ -120,6 +115,35 @@ $difflist_sorts = array( ) ); +$difflist_print_columns = array( + 'name' => array('$pkgname'), + 'i486_version' => array( + '"<a href="/packages/i486/', + '$repository', + '"/', + '$pkgname', + '"/">', + '$i486_font_pre', + '$i486_version', + '$i486_font_post', + '"</a>' + ), + 'i686_version' => array( + '"<a href="/packages/i686/', + '$repository', + '"/', + '$pkgname', + '"/">', + '$i686_font_pre', + '$i686_version', + '$i686_font_post', + '"</a>' + ), + 'repository' => array('$repository'), + 'i486_move_date' => array('$i486_move_date'), + 'i686_move_date' => array('$i686_move_date') +); + $grouplist_sorts = array( "arch" => array( "title" => "architecture", |