Blank Page
9 |{{title}}
9 |Looks like you got a 404.
10 |{{title}}
12 |This is an about page. Have a look around.
13 | {% endblock %} -------------------------------------------------------------------------------- /public/js/tasks.js: -------------------------------------------------------------------------------- 1 | var TaskList = function () { 2 | 3 | return { 4 | 5 | initTaskWidget: function () { 6 | $('input.list-child').change(function() { 7 | if ($(this).is(':checked')) { 8 | $(this).parents('li').addClass("task-done"); 9 | } else { 10 | $(this).parents('li').removeClass("task-done"); 11 | } 12 | }); 13 | } 14 | 15 | }; 16 | 17 | }(); -------------------------------------------------------------------------------- /public/Theme/assets/js/tasks.js: -------------------------------------------------------------------------------- 1 | var TaskList = function () { 2 | 3 | return { 4 | 5 | initTaskWidget: function () { 6 | $('input.list-child').change(function() { 7 | if ($(this).is(':checked')) { 8 | $(this).parents('li').addClass("task-done"); 9 | } else { 10 | $(this).parents('li').removeClass("task-done"); 11 | } 12 | }); 13 | } 14 | 15 | }; 16 | 17 | }(); -------------------------------------------------------------------------------- /servers/gui/config/settings.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dependencies. 3 | */ 4 | var path = require('path'), 5 | rootPath = path.normalize(__dirname + '/../../..'); 6 | 7 | // Defaults that you can access when you require this config. 8 | module.exports = { 9 | root: rootPath, 10 | port: parseInt(process.env.PORT, 10) || 3020, 11 | vision: { 12 | path: './servers/gui/views', 13 | engines: { 14 | html: require('swig') 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /servers/gui/views/layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |WATable
16 |http://wootapa-watable.appspot.com/
17 | 18 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /servers/gui/views/index.html: -------------------------------------------------------------------------------- 1 | {% extends './layouts/default.html' %} 2 | 3 | {% block title %}{{ title }}{% endblock %} 4 | 5 | {% block content %} 6 | 9 | 10 |{% autoescape false %}{{ text }}{% endautoescape %}
15 |Responsive Table
13 | 14 | 15 |waTable http://wootapa-watable.appspot.com/
19 | 20 |21 | 22 |
Calendar
13 | 14 |Morris Charts
13 | 14 |Chart Example 1
19 |Chart Example 2
27 |Chart Example 3
37 |Chart Example 4
45 |Chartjs Charts
13 | 14 |Doughnut
19 |Line
27 |Radar
37 |Polar Area
45 |Bar
55 |Pie
63 |- ' + list + '
