From 1bb412239d0735af11c3939bfe437cb8b49c7004 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 16 Sep 2010 10:28:07 -0400 Subject: Big webUI patch. Quick summary: - use jQuery UI and jQuery BBQ libraries - code restructuring The patch has so many changes they can't be listed here. Many parts of the code have been rewritten from scrach. See freeipa-devel mailing list: webUI code restructuring [wall of text, diagrams, ... you've been warned!] 2010-09-07 --- install/static/pageparams.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 install/static/pageparams.js (limited to 'install/static/pageparams.js') diff --git a/install/static/pageparams.js b/install/static/pageparams.js deleted file mode 100644 index 62307def..00000000 --- a/install/static/pageparams.js +++ /dev/null @@ -1,15 +0,0 @@ -function getPageParams(){ - var qsParm = new Array(); - var query = window.location.search.substring(1); - var parms = query.split("&"); - for (var i=0; i 0) { - var key = parms[i].substring(0,pos); - var val = parms[i].substring(pos+1); - qsParm[key] = val; - } - } - return qsParm; -} - -- cgit