8 |
├── bin └── composer ├── src ├── tile.png ├── favicon.ico ├── tile-wide.png ├── apple-touch-icon.png ├── model │ ├── EntityModel.png │ ├── member.php │ ├── vote.php │ ├── session.php │ └── poll.php ├── templates │ ├── removal.html │ ├── add_source.html │ ├── 404.html │ ├── cookie_notice.php │ ├── default_source.html │ ├── templates.php │ ├── member.php │ ├── join.php │ ├── list.html │ ├── github_source.html │ ├── gitlab_source.html │ ├── jira_source.html │ ├── master.php │ └── home.php ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── robots.txt ├── humans.txt ├── controllers │ ├── card-frequency.php │ ├── statistics │ │ ├── PollCount.php │ │ ├── README.md │ │ ├── EstimationTime.php │ │ ├── AverageAttempts.php │ │ ├── generate-plugin.sh │ │ ├── DiscussionTime.php │ │ └── EstimationProphet.php │ ├── response.php │ ├── statistic.php │ ├── user-vote.php │ ├── jira-controller.php │ ├── statistics-controller.php │ ├── session-evaluation.php │ ├── session-controller.php │ └── poll-controller.php ├── browserconfig.xml ├── js │ ├── npm.js │ ├── github-plugin.js │ ├── gitlab-plugin.js │ ├── jira-plugin.js │ ├── J2M.js │ ├── modernizr-2.8.3.min.js │ └── main.js ├── crossdomain.xml ├── .htaccess ├── api.php ├── sample-config.php ├── index.php ├── bootstrap.php └── css │ ├── main.css │ ├── scrumonline.css │ └── normalize.css ├── .gitignore ├── cli-config.php ├── .vscode └── launch.json ├── composer.json ├── doc ├── Deployment.md ├── Deployment-Nginx.md ├── Cookies.md ├── Deployment-Apache.md ├── Jira.md ├── Developer-Documentation.md ├── Poker-Tutorial.md └── swagger.yaml ├── README.md └── LICENSE.md /bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/bin/composer -------------------------------------------------------------------------------- /src/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/src/tile.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/src/tile-wide.png -------------------------------------------------------------------------------- /src/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/src/apple-touch-icon.png -------------------------------------------------------------------------------- /src/model/EntityModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxantron/scrumonline/HEAD/src/model/EntityModel.png -------------------------------------------------------------------------------- /src/templates/removal.html: -------------------------------------------------------------------------------- 1 |
You were removed from the session!
3 |Sorry, but the page you were trying to view does not exist. This can also happen when you tried 3 | to access a private session directly. Please use the Sessions 4 | view to enter the password and access the session. 5 |
6 | -------------------------------------------------------------------------------- /src/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 |37 | Votes can only be placed during an active poll.That means as long as the master has not started a poll or all votes have been placed, you can not vote! 38 | When you select a card it is highlighted in red, meaning that you vote is processed by the server. If it was placed successfully the card is highlighted 39 | green as feedback. Until everyone has placed their vote you can still change it. When the last person votes the poll is closed. 40 |
41 |This feature requires CORS - either on server or client side! 46 | 47 | 48 | 49 |
50 |{{ label.name }}
56 |{{ label.name }}
56 |Statistics will appear as soon as the first poll is concluded!
86 || Enabled | 90 |Name | 91 |Value | 92 |
|---|---|---|
| 97 | | 98 | 99 | {{ statistic.name }} 100 | 101 | | 102 |103 | |
| 106 | | 107 | 108 | Want more? 109 | 110 | | 111 |112 | |
8 |