summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html')
-rw-r--r--sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html212
1 files changed, 0 insertions, 212 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html b/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html
deleted file mode 100644
index 97b5e37a7b..0000000000
--- a/sca-cpp/trunk/modules/edit/htdocs/dash/dashboard.html
+++ /dev/null
@@ -1,212 +0,0 @@
-<!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
--->
-<html>
-<head>
-<link rel="stylesheet" type="text/css" href="/ui.css">
-<script type="text/javascript" src="/config.js"></script>
-<script type="text/javascript" src="/util.js"></script>
-<script type="text/javascript" src="/elemutil.js"></script>
-<script type="text/javascript" src="/xmlutil.js"></script>
-<script type="text/javascript" src="/atomutil.js"></script>
-<script type="text/javascript" src="/scdl.js"></script>
-<script type="text/javascript" src="/ui.js"></script>
-<script type="text/javascript" src="/component.js"></script>
-</head>
-<body class="delayed">
-
-<div id="bodydiv" style="position: absolute; top: 0px; left: 0px; right: 0px;">
-
-<div id="apps"></div>
-<br/>
-<input type="button" id="createAppButton" value="Create App" title="Create a new app"/>
-<br/>
-<br/>
-
-<div id="newApp" style="visibility: hidden; height: 100%;">
-<table style="width: 100%;">
-<tr><th id="newAppHeader" class="thl thr" style="padding-top: 4px; padding-bottom:4px; border-style: none;">Create an App</th></tr>
-<tr><td></td></tr>
-</table>
-<br/>
-
-<table style="width: 100%;">
-<tr><td><b>App Name:</b></td></tr>
-<tr><td><input type="text" id="appName" size="10"/>&nbsp;<span id="appDomain"></span></td></tr>
-<tr><tr><td><b>App Title:</b></td></tr>
-<tr><td><input type="text" id="appTitle" size="80"/></td></tr>
-<tr><tr><td><b>Category:</b></td></tr>
-<tr><td><input type="text" id="appCategory" size="15" value="Cool Apps"/></td></tr>
-<tr><tr><td><b>Description:</b></td></tr>
-<tr><td><textarea id="appDescription" cols="80" rows="5">Enter a short description of your app here</textarea></td></tr>
-<tr><td>
-<input id="createAppOKButton" type="submit" style="font-weight: bold;" value="Create" title="Create the app"/>
-<input id="createAppCancelButton" type="button" value="Cancel"/>
-</td></tr>
-</table>
-<br/>
-<br/>
-</div>
-
-</div>
-
-<script type="text/javascript">
-if (ui.isIE()) $('bodydiv').style.right = -20;
-
-// Init service references
-var editWidget = sca.component("EditWidget");
-var dashboard = sca.reference(editWidget, "dashboard");
-
-/**
- * Return the link to an app.
- */
-function applink(appname) {
- var protocol = window.location.protocol;
- var host = window.location.hostname;
- var port = ':' + window.location.port;
- if (port == ':80' || port == ':443' || port == ':')
- port = '';
- var link = protocol + '//' + appname + '.' + host + port + '/';
- return link;
-}
-
-/**
- * Get and display list of apps.
- */
-function getapps(sync) {
- function display(doc) {
- var apps = '<table style="width: 100%;">';
- apps += '<tr><th class="thl thr" style="width: 20px; padding-top: 4px; padding-right: 4px;">App</th>' +
- '<th class="thr thl" style="width: 20px;">URL</th>' +
- '<th class="thr thl">Category</th>' +
- '<th class="thr thl" style="width: 100%;">Title</th>' +
- '<th class="thr thl">Updated</th>' +
- '<th class="thl thr">Sharing</th></tr>';
-
- var feed = car(elementsToValues(atom.readATOMFeed(mklist(doc))));
- var entries = cadr(assoc("'entry", cdr(feed)));
- for (var i = 0; i < length(entries); i++) {
- var entry = entries[i];
- var title = cadr(assoc("'title", entry))
- var name = cadr(assoc("'id", entry))
- var editlink = '<a href=\"' + '/page/?app=' + name + '\" target=\"_parent\">';
- var domainlink = '<a href=\"' + applink(name) + '\" target=\"' + '_blank' + '\">' + name + '.' + window.location.hostname + '</a>';
- var category = 'coolapps';
- var updated = 'Feb 4, 2011';
- var sharing = 'Public';
-
- apps += '<tr class="trb"><td>';
- apps += editlink + '<img src="/public/app.png" width="50" height="50" style="width: 50px; height: 50px; margin-right: 10px; vertical-align: middle;"></img>' + '</a>';
- apps += '&nbsp;' + editlink + name + '</a></td>';
- apps += '<td>' + domainlink + '</td>';
- apps += '<td>' + category + '</td>';
- apps += '<td class="tdw">' + title + '</td>';
- apps += '<td>' + updated + '</td>';
- apps += '<td>' + sharing + '</td>';
- apps += '</tr>';
- }
- apps += '</table>';
- $('apps').innerHTML = apps;
-
- // Show the page
- ui.showbody();
- }
-
- if (sync) {
- display(dashboard.get(''));
- } else {
- dashboard.get('', function(doc) {
- display(doc);
- });
- }
-}
-
-/**
- * Default field values.
- */
-var deftitle = 'Enter the title of your app here';
-var defcategory = 'Cool Apps';
-var defdate = 'Feb 4, 2011';
-var defdesc = 'Enter a short description of your app here';
-
-/**
- * Display create app form.
- */
-$('createAppButton').onclick = function() {
- $('appName').value = '';
- $('appDomain').innerHTML = '.' + window.location.hostname;
- $('appTitle').value = deftitle;
- $('appCategory').value = defcategory;
- $('appDescription').value = defdesc;
- $('newAppHeader').style.borderStyle = 'solid';
- $('newApp').style.visibility = 'visible';
- $('appName').focus();
- return false;
-};
-
-/**
- * Create an app.
- */
-$('createAppOKButton').onclick = function() {
- var name = $('appName').value;
- if (name == '')
- return false;
- var title = $('appTitle').value;
- var app = mklist(mklist("'entry", mklist("'title", title != deftitle && title != ''? title : name), mklist("'id", name)));
- var entry = atom.writeATOMEntry(valuesToElements(app));
- dashboard.put(name, car(entry));
- getapps();
- $('newApp').style.visibility = 'hidden';
- return false;
-};
-
-/**
- * Cancel creating an app.
- */
-$('createAppCancelButton').onclick = function() {
- $('newApp').style.visibility = 'hidden';
- return false;
-};
-
-/**
- * Delete an app.
- */
-/*
-$('deleteAppLink').onclick = function() {
- var apps = $('apps');
- if (isNil(apps))
- return false;
- if (isNil(apps.length))
- apps = mklist(apps);
- for (var i = 0; i < length(apps); i++) {
- if (apps[i].checked) {
- var name = apps[i].value;
- dashboard.del(name);
- }
- }
- getapps();
- return false;
-};
-*/
-
-// Get and display the list of apps
-getapps(true);
-
-</script>
-</body>
-</html>