diff options
author | Pavel Zuna <pzuna@redhat.com> | 2010-09-16 10:28:07 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-09-17 19:42:40 -0400 |
commit | 1bb412239d0735af11c3939bfe437cb8b49c7004 (patch) | |
tree | a48dc9331164616c2d2ba655f03634604e08fda0 /install/static/pageparams.js | |
parent | 4f37775db75eb59496ce0e6fe11230ea3bd21e8b (diff) | |
download | freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.tar.gz freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.tar.xz freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.zip |
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
Diffstat (limited to 'install/static/pageparams.js')
-rw-r--r-- | install/static/pageparams.js | 15 |
1 files changed, 0 insertions, 15 deletions
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<parms.length; i++) { - var pos = parms[i].indexOf('='); - if (pos > 0) { - var key = parms[i].substring(0,pos); - var val = parms[i].substring(pos+1); - qsParm[key] = val; - } - } - return qsParm; -} - |