From 89f3577058ff2fb222296eb616f7e1496267f65f Mon Sep 17 00:00:00 2001 From: ansuz Date: Wed, 22 Feb 2017 11:05:47 +0100 Subject: [PATCH] remove old poll --- www/poll/old/index.html | 114 ----- www/poll/old/main.js | 942 ---------------------------------------- www/poll/old/table.js | 120 ----- www/poll/old/wizard.js | 150 ------- 4 files changed, 1326 deletions(-) delete mode 100644 www/poll/old/index.html delete mode 100644 www/poll/old/main.js delete mode 100644 www/poll/old/table.js delete mode 100644 www/poll/old/wizard.js diff --git a/www/poll/old/index.html b/www/poll/old/index.html deleted file mode 100644 index 01b6f6b76..000000000 --- a/www/poll/old/index.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - Zero Knowledge Date Picker - - - - - - - - -
- -
-
-

CryptPoll

-

- -

-

- -
-
- -
-
- - -

- - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- - - diff --git a/www/poll/old/main.js b/www/poll/old/main.js deleted file mode 100644 index 2703530c7..000000000 --- a/www/poll/old/main.js +++ /dev/null @@ -1,942 +0,0 @@ -define([ - '/api/config?cb=' + Math.random().toString(16).substring(2), - '/customize/messages.js?app=poll', - 'table.js', - 'wizard.js', - '/bower_components/textpatcher/TextPatcher.js', - '/bower_components/chainpad-listmap/chainpad-listmap.js', - '/bower_components/chainpad-crypto/crypto.js', - '/common/cryptpad-common.js', - '/common/visible.js', - '/common/notify.js', - '/bower_components/file-saver/FileSaver.min.js', - '/bower_components/jquery/dist/jquery.min.js', -], function (Config, Messages, Table, Wizard, TextPatcher, Listmap, Crypto, Cryptpad, Visible, Notify) { - var $ = window.jQuery; - var saveAs = window.saveAs; - - Cryptpad.styleAlerts(); - console.log("Initializing your realtime session..."); - - /* TODO - * set range of dates/times - * (pair of date pickers) - * hide options within that range - * show hidden options - * add notes to a particular time slot - - * check or uncheck options for a particular user - * mark preference level? (+1, 0, -1) - - * delete/hide columns/rows - - // let users choose what they want the default input to be... - - * date - - http://foxrunsoftware.github.io/DatePicker/ ? - * ??? - */ - - var secret = Cryptpad.getSecrets(); - var readOnly = secret.keys && !secret.keys.editKeyStr; - if (!secret.keys) { - secret.keys = secret.key; - } - if (readOnly) { - $('#mainTitle').html($('#mainTitle').html() + ' - ' + Messages.readonly); - $('#adduser, #addoption, #howToUse').remove(); - } - - var module = window.APP = { - Cryptpad: Cryptpad, - }; - - module.getResults = function () { - if (!module.ready) { return []; } - var table = module.rt.proxy.table; - var cells = table.cells; - var rows = table.rows; - - return Object.keys(rows).map(function (id) { - var text = rows[id]; - var count = Object.keys(cells).filter(function (c) { - return c.indexOf(id) !== -1 && cells[c]; - }).length; - return { - text: text, - count: count, - }; - }).sort(function (a,b) { - return b.count - a.count; - }); - }; - - var getLastName = module.getLastName = function (cb) { - Cryptpad.getAttribute('username', function (err, userName) { - cb(err, userName || ''); - }); - }; - - var setName = module.setName = function (uname, cb) { - if (typeof(uname) !== 'string') { - return void cb(new Error('expected string')); - } - uname = Cryptpad.fixHTML(uname.trim()).slice(0, 32); - Cryptpad.setAttribute('username', uname, function (err, data) { - if (err) { return void cb(err); } - cb(void 0, uname); - }); - }; - - module.Wizard = Wizard; - - // special UI elements - var $title = $('#title').attr('placeholder', Messages.poll_titleHint || 'title'); - var $description = $('#description').attr('placeholder', Messages.poll_descriptionHint || 'description'); - - var items = [$title, $description]; - - var Uid = function (prefix, f) { - f = f || function () { - return Number(Math.random() * Number.MAX_SAFE_INTEGER) - .toString(32).replace(/\./g, ''); - }; - return function () { return prefix + '-' + f(); }; - }; - - var xy = function (x, y) { return x + '_' + y; }; - var parseXY = function (id) { - var p = id.split('_'); - return { - x: p[0], - y: p[1], - }; - }; - - var Input = function (opt) { return $('', opt); }; - var Checkbox = function (id) { - var p = parseXY(id); - - var proxy = module.rt.proxy; - - var $div = $('
', { - 'class': 'checkbox-contain', - }); - - var $cover = $('', { - 'class': 'cover' - }); - - var $label = $('