[DRE-commits] [SCM] Tracking the Debian/Ruby wheezy transition branch, master, updated. 504d1b4281637a73dfa36dae8c4a00c64baee8c5

Antonio Terceiro terceiro at softwarelivre.org
Thu Mar 31 23:27:25 UTC 2011


The following commit has been merged in the master branch:
commit 504d1b4281637a73dfa36dae8c4a00c64baee8c5
Author: Antonio Terceiro <terceiro at softwarelivre.org>
Date:   Thu Mar 31 16:27:09 2011 -0700

    Also show explicitly the number of packages

diff --git a/index.html b/index.html
index d95ec47..3777179 100644
--- a/index.html
+++ b/index.html
@@ -11,7 +11,11 @@
       <div id='progress'>&nbsp;</div>
     </div>
     <p>
-    <a href='details.html'>See the details</a>
+    <ul>
+      <li>Binary packages using the new policy: <span id='done-count'>?</span></li>
+      <li>Binary packages using the old policy: <span id='pending-count'>?</span></li>
+      <li><a href='details.html'>See the details</a></li>
+    </ul>
     </p>
     <p>
     Source code for this service <a href='http://git.debian.org/?p=pkg-ruby-extras/wheezy-transition-tracker.git;a=summary'>is available</a> on <code>git.debian.org</code>.
diff --git a/progressbar.js b/progressbar.js
index 6638530..f0ee520 100644
--- a/progressbar.js
+++ b/progressbar.js
@@ -7,3 +7,6 @@ var progress_percent = Math.floor(100.0 * parseFloat(data.done) / parseFloat(dat
 
 progress.style.width = progress_percent;
 progress_label.innerHTML = progress_percent;
+
+document.getElementById('pending-count').innerHTML = data.pending;
+document.getElementById('done-count').innerHTML = data.done;

-- 
Tracking the Debian/Ruby wheezy transition



More information about the Pkg-ruby-extras-commits mailing list