diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.html b/pkgs/plt-services/meta/pkg-index/official/static/index.html
index c4cbd8bf20..6f5302546c 100644
--- a/pkgs/plt-services/meta/pkg-index/official/static/index.html
+++ b/pkgs/plt-services/meta/pkg-index/official/static/index.html
@@ -30,7 +30,7 @@
Description: | |
Tags: | |
XXX | Add a tag |
- XXX | Version exceptions |
+ Versions Exceptions | |
Install this package with:
raco pkg install
or, with the 'File|Install Package...' menu option in DrRacket.
diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.js b/pkgs/plt-services/meta/pkg-index/official/static/index.js
index 4293f9daf9..a827dddf8c 100644
--- a/pkgs/plt-services/meta/pkg-index/official/static/index.js
+++ b/pkgs/plt-services/meta/pkg-index/official/static/index.js
@@ -40,6 +40,12 @@ $( document ).ready(function() {
$( "#pi_description" ).text( pkgi['description'] );
$( "#pi_tags" ).html("").append( $.map( pkgi['tags'], function ( tag, i ) {
return [tag, " "]; } ) )
+ $( "#pi_versions" ).html("").append( $.map( pkgi['versions'], function ( vo, v ) {
+ return [ $('').append( $('').html(v),
+ $(' | ').html(vo['source']) ),
+ $(' |
').append( $('').html(""),
+ $(' | ').html(vo['checksum']) ),
+ " "]; } ) )
active_info = pkgi; };
var search_terms = { };
|