summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-08-29 20:17:06 -0400
committerAdam Young <ayoung@redhat.com>2010-08-30 17:42:48 -0400
commitb7607817ab94361b14e9d565775bd5da76d2b115 (patch)
tree1f3ee583a511964163ea4d67e21e15acafe35bcb /install
parent1e9015a0a05d795b117e9980faf66bb310ec4fd8 (diff)
downloadfreeipa-b7607817ab94361b14e9d565775bd5da76d2b115.tar.gz
freeipa-b7607817ab94361b14e9d565775bd5da76d2b115.tar.xz
freeipa-b7607817ab94361b14e9d565775bd5da76d2b115.zip
calculate useSampledata by protocol.
Diffstat (limited to 'install')
-rw-r--r--install/static/index.xhtml9
-rw-r--r--install/static/ipa.js2
-rw-r--r--install/static/sampledata/develop.js3
3 files changed, 2 insertions, 12 deletions
diff --git a/install/static/index.xhtml b/install/static/index.xhtml
index 489f192b..8e231f45 100644
--- a/install/static/index.xhtml
+++ b/install/static/index.xhtml
@@ -7,17 +7,8 @@
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
-
- <script type="text/javascript">
- /* the develop.js file that follows will set this to true.
- that file should only exist in the source file system
- and should not get deployed to the web server */
- var useSampleData = false;
- </script>
-
<script type="text/javascript" src="ipa.js"></script>
<script type="text/javascript" src="navigation.js"></script>
- <script type="text/javascript" src="sampledata/develop.js"></script>
<script type="text/javascript" src="search.js"></script>
<script type="text/javascript" src="details.js"></script>
<script type="text/javascript" src="add.js"></script>
diff --git a/install/static/ipa.js b/install/static/ipa.js
index fd93c1a3..63101a71 100644
--- a/install/static/ipa.js
+++ b/install/static/ipa.js
@@ -35,6 +35,8 @@ var _ipa_init_on_win_callback = null;
var qs;
+var useSampleData = (window.location.protocol == "file:");
+
function ipa_init(url, on_win)
{
diff --git a/install/static/sampledata/develop.js b/install/static/sampledata/develop.js
deleted file mode 100644
index 5c5275b5..00000000
--- a/install/static/sampledata/develop.js
+++ /dev/null
@@ -1,3 +0,0 @@
-//This should not be packaged up, and so we should only get a true value when working inside the file system
-useSampleData = true;
-