├── tipboard ├── tests │ ├── __init__.py │ ├── frontend │ │ └── lib │ │ │ └── jasmine-2.0.0 │ │ │ ├── jasmine_favicon.png │ │ │ ├── jasmine.css │ │ │ ├── console.js │ │ │ └── boot.js │ ├── test_console_commands.py │ ├── test_config_parser.py │ └── test_rest_api.py ├── tiles │ ├── empty.css │ ├── bar_chart.css │ ├── empty.html │ ├── listing.css │ ├── text.html │ ├── listing.html │ ├── bar_chart.html │ ├── cumulative_flow.css │ ├── line_chart.html │ ├── pie_chart.html │ ├── norm_chart.html │ ├── advanced_plot.html │ ├── cumulative_flow.html │ ├── just_value.html │ ├── fancy_listing.html │ ├── simple_percentage.css │ ├── simple_percentage.js │ ├── fancy_listing.css │ ├── big_value.css │ ├── text.js │ ├── just_value.css │ ├── listing.js │ ├── simple_percentage.html │ ├── just_value.js │ ├── big_value.js │ ├── advanced_plot.js │ ├── big_value.html │ ├── pie_chart.js │ ├── bar_chart.js │ ├── fancy_listing.js │ ├── cumulative_flow.js │ ├── norm_chart.js │ └── line_chart.js ├── static │ ├── fonts │ │ ├── miso-webfont.eot │ │ ├── miso-webfont.ttf │ │ ├── miso-webfont.woff │ │ ├── miso-light-webfont.eot │ │ ├── miso-light-webfont.ttf │ │ ├── miso-light-webfont.woff │ │ └── MISO_LICENSE │ ├── css │ │ ├── reset.css │ │ └── jquery.jqplot.css │ └── js │ │ ├── lib │ │ ├── jqplot │ │ │ └── plugins │ │ │ │ ├── jqplot.mobile.js │ │ │ │ └── jqplot.ciParser.js │ │ ├── html5shiv.js │ │ ├── simplify.js │ │ └── jquery.fullscreen.js │ │ └── flipboard.js ├── extras │ ├── README.rst │ ├── fabfile.py │ ├── client_code_example.py │ └── jira-ds.py ├── defaults │ ├── settings-local.py │ └── layout_config.yaml ├── __init__.py ├── templates │ ├── flipboard.html │ ├── base.html │ └── layout.html ├── redis_utils.py ├── parser.py ├── settings.py └── api.py ├── doc ├── changelog.rst ├── img │ ├── text.png │ ├── listing.png │ ├── bar-chart.png │ ├── big-value.png │ ├── just-value.png │ ├── line-chart.png │ ├── norm-chart.png │ ├── pie-chart.png │ ├── advanced-plot.png │ ├── fancy-listing.png │ ├── smaller │ │ ├── text.png │ │ ├── listing.png │ │ ├── bar-chart.png │ │ ├── big-value.png │ │ ├── just-value.png │ │ ├── line-chart.png │ │ ├── norm-chart.png │ │ ├── pie-chart.png │ │ ├── advanced-plot.png │ │ ├── fancy-listing.png │ │ ├── cumulative-flow.png │ │ └── simple-percentage.png │ ├── cumulative-flow.png │ └── simple-percentage.png ├── license.rst ├── index.rst ├── tile__listing.rst ├── overview.rst ├── tile__text.rst ├── tile__just_value.rst ├── tile__pie_chart.rst ├── tile__bar_chart.rst ├── tile__norm_chart.rst ├── extras.rst ├── tile__cumulative_flow.rst ├── tile__simple_percentage.rst ├── tile__fancy_listing.rst ├── tile__big_value.rst ├── installation.rst ├── tile__line_chart.rst ├── tiles.rst ├── api.rst ├── tile__advanced_plot.rst └── Makefile ├── .gitignore ├── requirements.txt ├── MANIFEST.in ├── .travis.yml ├── LICENSE.rst ├── setup.py ├── CHANGES.rst └── README.rst /tipboard/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tipboard.egg-info/ 2 | /.idea/* 3 | *.pyc 4 | *.swp 5 | -------------------------------------------------------------------------------- /tipboard/tiles/empty.css: -------------------------------------------------------------------------------- 1 | .tile-empty h2 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /tipboard/tiles/bar_chart.css: -------------------------------------------------------------------------------- 1 | .bar-chart .jqplot-point-label {color: #fff;} 2 | -------------------------------------------------------------------------------- /doc/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/text.png -------------------------------------------------------------------------------- /doc/img/listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/listing.png -------------------------------------------------------------------------------- /doc/img/bar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/bar-chart.png -------------------------------------------------------------------------------- /doc/img/big-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/big-value.png -------------------------------------------------------------------------------- /doc/img/just-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/just-value.png -------------------------------------------------------------------------------- /doc/img/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/line-chart.png -------------------------------------------------------------------------------- /doc/img/norm-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/norm-chart.png -------------------------------------------------------------------------------- /doc/img/pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/pie-chart.png -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- 1 | License 2 | _______ 3 | 4 | .. include:: ../LICENSE.rst 5 | :literal: 6 | -------------------------------------------------------------------------------- /doc/img/advanced-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/advanced-plot.png -------------------------------------------------------------------------------- /doc/img/fancy-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/fancy-listing.png -------------------------------------------------------------------------------- /doc/img/smaller/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/text.png -------------------------------------------------------------------------------- /doc/img/cumulative-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/cumulative-flow.png -------------------------------------------------------------------------------- /doc/img/smaller/listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/listing.png -------------------------------------------------------------------------------- /doc/img/simple-percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/simple-percentage.png -------------------------------------------------------------------------------- /doc/img/smaller/bar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/bar-chart.png -------------------------------------------------------------------------------- /doc/img/smaller/big-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/big-value.png -------------------------------------------------------------------------------- /doc/img/smaller/just-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/just-value.png -------------------------------------------------------------------------------- /doc/img/smaller/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/line-chart.png -------------------------------------------------------------------------------- /doc/img/smaller/norm-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/norm-chart.png -------------------------------------------------------------------------------- /doc/img/smaller/pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/pie-chart.png -------------------------------------------------------------------------------- /doc/img/smaller/advanced-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/advanced-plot.png -------------------------------------------------------------------------------- /doc/img/smaller/fancy-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/fancy-listing.png -------------------------------------------------------------------------------- /doc/img/smaller/cumulative-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/cumulative-flow.png -------------------------------------------------------------------------------- /doc/img/smaller/simple-percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/doc/img/smaller/simple-percentage.png -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-webfont.eot -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-webfont.ttf -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-webfont.woff -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-light-webfont.eot -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-light-webfont.ttf -------------------------------------------------------------------------------- /tipboard/static/fonts/miso-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/static/fonts/miso-light-webfont.woff -------------------------------------------------------------------------------- /tipboard/extras/README.rst: -------------------------------------------------------------------------------- 1 | Extras 2 | ------ 3 | 4 | For the detailed description of the contents of this dir, see relevant section 5 | in our documentation. 6 | -------------------------------------------------------------------------------- /tipboard/tests/frontend/lib/jasmine-2.0.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allegro/tipboard/HEAD/tipboard/tests/frontend/lib/jasmine-2.0.0/jasmine_favicon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mock==1.0.1 2 | PyYAML==3.10 3 | redis==2.7.5 4 | requests==1.2.3 5 | six>=1.4.1 6 | tornado-redis==2.4.2 7 | tornado==3.0.1 8 | docopt==0.6.1 9 | raven==3.5.2 10 | Sphinx==1.2.2 11 | sphinxcontrib-httpdomain==1.3.0 12 | -------------------------------------------------------------------------------- /tipboard/defaults/settings-local.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | from __future__ import absolute_import 5 | from __future__ import division 6 | from __future__ import print_function 7 | from __future__ import unicode_literals 8 | 9 | -------------------------------------------------------------------------------- /tipboard/tiles/empty.html: -------------------------------------------------------------------------------- 1 |