[Debtags-commits] [svn] r1938 - web/trunk
Enrico Zini
enrico at costa.debian.org
Fri Sep 22 22:34:40 UTC 2006
Author: enrico
Date: Fri Sep 22 22:34:40 2006
New Revision: 1938
Modified:
web/trunk/ssearch.html
Log:
Display partial progressbar
Modified: web/trunk/ssearch.html
==============================================================================
--- web/trunk/ssearch.html (original)
+++ web/trunk/ssearch.html Fri Sep 22 22:34:40 2006
@@ -58,6 +58,8 @@
function updateAvailable(keys)
{
fireSTAGSQuery(keys.value, function(tags){
+ var node = document.getElementById("tags");
+ node.innerHTML = "Loading tag list... ("+tags.length+")";
}, function(tags){
available = new Array();
for (i in tags)
@@ -74,6 +76,8 @@
function updateColl()
{
firePKGSQuery(wanted, function(coll,pkgs){
+ var node = document.getElementById("results");
+ node.innerHTML = "Loading package data... ("+coll.packageCount()+")";
}, function(c,p){
coll = c;
pkgs = p;
More information about the Debtags-commits
mailing list