diff --git a/.chglog/CHANGELOG.tpl.md b/.chglog/CHANGELOG.tpl.md new file mode 100755 index 0000000..a1618de --- /dev/null +++ b/.chglog/CHANGELOG.tpl.md @@ -0,0 +1,40 @@ +{{ range .Versions }} + +## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} + +> {{ datetime "2006-01-02" .Tag.Date }} + +{{ range .CommitGroups -}} +### {{ .Title }} + +{{ range .Commits -}} +* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} +{{ end }} +{{ end -}} + +{{- if .RevertCommits -}} +### Reverts + +{{ range .RevertCommits -}} +* {{ .Revert.Header }} +{{ end }} +{{ end -}} + +{{- if .MergeCommits -}} +### Pull Requests + +{{ range .MergeCommits -}} +* {{ .Header }} +{{ end }} +{{ end -}} + +{{- if .NoteGroups -}} +{{ range .NoteGroups -}} +### {{ .Title }} + +{{ range .Notes }} +{{ .Body }} +{{ end }} +{{ end -}} +{{ end -}} +{{ end -}} \ No newline at end of file diff --git a/.chglog/config.yml b/.chglog/config.yml new file mode 100755 index 0000000..f6d868e --- /dev/null +++ b/.chglog/config.yml @@ -0,0 +1,28 @@ +style: github +template: CHANGELOG.tpl.md +info: + title: CHANGELOG + repository_url: https://github.com/datasci4health/harena-manager.git +options: + commits: + # filters: + # Type: + # - feat + # - fix + # - perf + # - refactor + commit_groups: + # title_maps: + # feat: Features + # fix: Bug Fixes + # perf: Performance Improvements + # refactor: Code Refactoring + header: + pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$" + pattern_maps: + - Type + - Scope + - Subject + notes: + keywords: + - BREAKING CHANGE \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8c0e941 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,40 @@ + +## [v1.0.4](https://github.com/datasci4health/harena-manager/compare/v1.0.3...v1.0.4) + +> 2019-05-15 + + + +## [v1.0.3](https://github.com/datasci4health/harena-manager/compare/v1.0.2...v1.0.3) + +> 2019-05-14 + + + +## [v1.0.2](https://github.com/datasci4health/harena-manager/compare/v1.0.1...v1.0.2) + +> 2019-05-12 + + + +## [v1.0.1](https://github.com/datasci4health/harena-manager/compare/v1.0.0...v1.0.1) + +> 2019-05-12 + + + +## [v1.0.0](https://github.com/datasci4health/harena-manager/compare/v0.1.0...v1.0.0) + +> 2019-05-12 + + + +## [v0.1.0](https://github.com/datasci4health/harena-manager/compare/v0.0.1...v0.1.0) + +> 2019-05-05 + + + +## v0.0.1 + +> 2019-04-15 diff --git a/resources/scripts/generate_users.py b/resources/scripts/generate_users.py new file mode 100644 index 0000000..2983f31 --- /dev/null +++ b/resources/scripts/generate_users.py @@ -0,0 +1,18 @@ +from argparse import ArgumentParser +import requests +import json + +parser = ArgumentParser() +parser.add_argument("-f", "--from", dest="range_from", help="starting range", type=int) +parser.add_argument("-t", "--to", dest="range_to", help="ending range", type=int) +parser.add_argument("-p", "--prefix", dest="prefix", help="user prefix", type=str) +parser.add_argument("-u", "--url", dest="url", help="manager url", type=str) +args = parser.parse_args() + + +for i in range(args.range_from, args.range_to): + payload = {'username': "{}{}".format(args.prefix,i), + 'email' : "{}{}@harena.ds4h.org".format(args.prefix,i), + 'password': "{}{}".format(args.prefix,i)} + response = requests.request('POST', args.url, data = payload) + print(response.text) diff --git a/src/adonisjs/app/Controllers/Http/v1/ArtifactController.js b/src/adonisjs/app/Controllers/Http/v1/ArtifactController.js index be19a40..c5edb4b 100644 --- a/src/adonisjs/app/Controllers/Http/v1/ArtifactController.js +++ b/src/adonisjs/app/Controllers/Http/v1/ArtifactController.js @@ -5,6 +5,8 @@ const Artifact = use('App/Models/v1/Artifact'); const Case = use('App/Models/v1/Case'); const Env = use('Env') const uuid4 = require('uuid/v4'); +const fs = require('fs'); + class ArtifactController { @@ -25,9 +27,13 @@ class ArtifactController { async store({ request, auth, response }) { try{ - const file = request.file('file', this.validationOptions) - const caseID = request.input('case_uuid', null) - + const fileLocation = request.body.file + const caseID = request.body.case_uuid + // request.input('case_uuid', null) + console.log(fileLocation) + console.log(caseID) + + fs.openSync(fileLocation) var linkedCase = await Case.find(caseID) if (caseID != null && linkedCase == null){ @@ -42,6 +48,7 @@ class ArtifactController { } const artifactID = await uuid4() + // console.log("file " +file) const artifactFileName = artifactID + "." + file.extname await file.move(fsPath, {name: artifactFileName, overwrite: false}) diff --git a/src/adonisjs/app/Controllers/Http/v1/CaseController.js b/src/adonisjs/app/Controllers/Http/v1/CaseController.js index e30816b..af44919 100644 --- a/src/adonisjs/app/Controllers/Http/v1/CaseController.js +++ b/src/adonisjs/app/Controllers/Http/v1/CaseController.js @@ -105,9 +105,11 @@ class CaseController { */ async destroy({ params, response }) { try { - await Case.find(params.id).delete() + let c = await Case.findBy('uuid', params.id) + c.delete() return response.json({ message: 'Case deleted!' }) } catch (e) { + console.log(e) return response.status(e.status).json({ message: e.message }) } } diff --git a/src/adonisjs/database/migrations/1558205731912_v_2_execution_schema.js b/src/adonisjs/database/migrations/1558205731912_v_2_execution_schema.js new file mode 100644 index 0000000..878477d --- /dev/null +++ b/src/adonisjs/database/migrations/1558205731912_v_2_execution_schema.js @@ -0,0 +1,39 @@ +'use strict' + +/** @type {import('@adonisjs/lucid/src/Schema')} */ +const Schema = use('Schema') + +class ExecutionSchema extends Schema { + up () { + this.table('executions', (table) => { + table.dropForeign('case_version_id', 'executions_case_version_id_foreign') + table.dropIndex('case_id', 'caseversion_id') + table.dropColumn('case_version_id') + table.uuid('case_id') + table.index('case_id', 'case_id') + table.foreign('case_id ', 'executions_case_id').references('uuid').inTable('cases') + + table.dropForeign('user_id', 'executions_user_id_foreign') + table.foreign('user_id','executions_user_id').references('users.id').onDelete('cascade') + }) + } + + down () { + this.table('executions', (table) => { + table.dropForeign('user_id', 'executions_user_id') + table.foreign('user_id','executions_user_id_foreign').references('users.id').onDelete('cascade') + + + + table.dropForeign('case_id', 'executions_case_id') + table.dropIndex('case_id', 'case_id') + table.dropColumn('case_id') + table.integer('case_version_id').unsigned() + table.index('case_version_id', 'caseversion_id') + table.foreign('case_version_id').references('case_versions.id').onDelete('cascade') + + }) + } +} + +module.exports = ExecutionSchema diff --git a/src/adonisjs/database/migrations/1561425934159_v_3_case_version_schema.js b/src/adonisjs/database/migrations/1561425934159_v_3_case_version_schema.js new file mode 100644 index 0000000..011be38 --- /dev/null +++ b/src/adonisjs/database/migrations/1561425934159_v_3_case_version_schema.js @@ -0,0 +1,35 @@ +'use strict' + +/** @type {import('@adonisjs/lucid/src/Schema')} */ +const Schema = use('Schema') +const Database = use('Database') + +class CaseVersionSchema extends Schema { + async up () { + const trx = await Database.beginTransaction() + + let sql = "ALTER TABLE case_versions DROP FOREIGN KEY case_id" + await trx.raw(sql) + + sql = "ALTER TABLE case_versions ADD CONSTRAINT case_id FOREIGN KEY (case_id) REFERENCES cases(uuid) ON DELETE CASCADE" + await trx.raw(sql) + + trx.commit() + trx.rollback() + } + + async down () { + const trx = await Database.beginTransaction() + + let sql = "ALTER TABLE case_versions DROP FOREIGN KEY case_id" + await trx.raw(sql) + + sql = "ALTER TABLE case_versions ADD CONSTRAINT case_id FOREIGN KEY (case_id) REFERENCES cases(uuid)" + await trx.raw(sql) + + trx.commit() + trx.rollback() + } +} + +module.exports = CaseVersionSchema diff --git a/src/adonisjs/database/migrations/1561537115761_v_3_artifact_schema.js b/src/adonisjs/database/migrations/1561537115761_v_3_artifact_schema.js new file mode 100644 index 0000000..de1ae53 --- /dev/null +++ b/src/adonisjs/database/migrations/1561537115761_v_3_artifact_schema.js @@ -0,0 +1,35 @@ +'use strict' + +/** @type {import('@adonisjs/lucid/src/Schema')} */ +const Schema = use('Schema') +const Database = use('Database') + +class ArtifactSchema extends Schema { + async up () { + const trx = await Database.beginTransaction() + + let sql = "ALTER TABLE artifacts DROP FOREIGN KEY artifacts_case_id_foreign" + await trx.raw(sql) + + sql = "ALTER TABLE artifacts ADD CONSTRAINT artifacts_case_id_foreign FOREIGN KEY (case_id) REFERENCES cases(uuid) ON DELETE CASCADE" + await trx.raw(sql) + + trx.commit() + trx.rollback() + } + + async down () { + const trx = await Database.beginTransaction() + + let sql = "ALTER TABLE artifacts DROP FOREIGN KEY artifacts_case_id_foreign" + await trx.raw(sql) + + sql = "ALTER TABLE artifacts ADD CONSTRAINT artifacts_case_id_foreign FOREIGN KEY (case_id) REFERENCES cases(uuid)" + await trx.raw(sql) + + trx.commit() + trx.rollback() + } +} + +module.exports = ArtifactSchema diff --git a/templates/README.md b/templates/README.md deleted file mode 100644 index 994b92d..0000000 --- a/templates/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Templates - -Templates are organized in template families or family sets. Each family has a subdirectory and they are exclusive alternatives, i.e., only one template family can be used in each translation. -The families currently available are: - -* **classic** - Minimal template without extra format. - -* **jacinto** - Standard template for Jacinto cases. - -Each template family has a HTML file for each available knot category. There is always a dafault `knot.html` template used for those knots that do not specify a category, or those that specify unknown categories. diff --git a/templates/classic/README.md b/templates/classic/README.md deleted file mode 100644 index c69fe6d..0000000 --- a/templates/classic/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Classic Template - -Minimal template without extra format. diff --git a/templates/classic/css/player.css b/templates/classic/css/player.css deleted file mode 100644 index 77f2fa6..0000000 --- a/templates/classic/css/player.css +++ /dev/null @@ -1,68 +0,0 @@ -@charset "UTF-8"; - -body { - font-family: "Trebuchet MS", Helvetica, sans-serif; - font-size: 14pt; -} - -.std-border { - border: 1px solid lightgray; - border-radius: 5px; - margin: 5px; -} - -.sty-main-panel { - /* the main box (body) occupies all the visible area */ - position: absolute; - left: 0px; - right: 0px; - top: 0px; - bottom: 0px; - - /* eliminate margins etc. */ - margin: 0px; - padding: 0px; - border-width: 0px; - - display: flex; - flex-direction: column; -} - -.sty-control-panel { - flex: 10%; - max-height: 48px; - display: flex; - flex-direction: row; -} - -.control-button { - flex: 10%; - max-width: 48px; - max-height: 48px; - margin-right: 10px; -} - -.sty-work-panel { - flex: 90%; - height: 90%; - max-height: 90%; - height: 100%; - display: flex; -} - -@media (orientation: landscape) { - .work-panel { - flex-direction: row; - } -} - -@media (orientation: portrait) { - .work-panel { - flex-direction: column; - } -} - -.sty-knot-panel { - flex: 90%; - max-height: 100%; -} diff --git a/templates/classic/css/presentation.css b/templates/classic/css/presentation.css deleted file mode 100644 index 274e255..0000000 --- a/templates/classic/css/presentation.css +++ /dev/null @@ -1,33 +0,0 @@ -@charset "UTF-8"; - -/* Player Panel */ -.sty-player-panel { - flex: 10%; - max-height: 100%; - display: flex; - flex-direction: column; - overflow: hidden; -} - -.player-item { - max-width: 100%; -} - -/* Knot Rendering */ - -h1 { - text-align: center; -} - -.alert-message { - font-size: 20pt; - color: blue; - font-weight: bold; -} - -.central-buttons { - display: flex; - flex-direction: row; - max-width: 100%; - justify-content: center; -} \ No newline at end of file diff --git a/templates/classic/css/templates.css b/templates/classic/css/templates.css deleted file mode 100644 index fc21ec9..0000000 --- a/templates/classic/css/templates.css +++ /dev/null @@ -1,140 +0,0 @@ -@charset "UTF-8"; - -/* Knot (template) */ -/*******************/ - -.template-knot { - display: flex; - flex-direction: column; - font-size: 20pt; - width: 100%; - height: 100%; - padding: 20px; -} - -.template-knot p { - margin-top: 5px; - margin-bottom: 5px; - margin-left: 0px; - margin-right: 0px; -} - -.template-knot img { - max-width: 200px; - max-height: 200px; -} - -.template-knot dcc-trigger { - display: block; - flex: 10%; - max-width: 50%; -} - -/* Panel Left Picture (template) */ -/*********************************/ - -.panel-left-pict { - display: flex; - flex-direction: row; - flex: 100%; - max-height: 100%; - width: 100%; -} - -.panel-left-pict-image { - /* - flex-basis: auto; - max-height: 100%; - width: auto; - */ -} - -.panel-left-pict-image img { - max-height: 100%; -} - -.panel-left-pict-text { - /* flex: 70%; */ -} - -/* Presentation (template) */ -/***************************/ - -.template-presentation { - display: flex; - flex-direction: column; - font-size: 20pt; - width: 100%; -} - -.template-presentation img, .template-presentation dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Tablet (template) */ -/*********************/ - -.template-tablet { - width: 100%; - height: 100%; - - position: relative; - animation-name: template-tablet-displacement; - animation-duration: 2s; - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -@keyframes template-tablet-displacement { - from {left: 100%;} - to {left: 0%;} -} - -.template-tablet-inside { - display: flex; - flex-direction: column; - font-size: 20pt; - width: auto; - height: 90%; - padding: 4% 15% 0% 10%; - overflow: scrool; -} - -.template-tablet-inside img, .template-tablet-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Selector (template) */ -/***********************/ - -.template-selector { - width: 100%; - height: 100%; - - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -.template-selector-inside { - width: auto; - height: 90%; - - padding: 4% 15% 0% 10%; - overflow: scrool; - font-size: 12pt; -} - -.template-selector-inside img, .template-selector-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} diff --git a/templates/classic/dialog.html b/templates/classic/dialog.html deleted file mode 100644 index dc8a0b4..0000000 --- a/templates/classic/dialog.html +++ /dev/null @@ -1,3 +0,0 @@ - -{knot} - \ No newline at end of file diff --git a/templates/classic/entry.html b/templates/classic/entry.html deleted file mode 100644 index 1f41665..0000000 --- a/templates/classic/entry.html +++ /dev/null @@ -1,24 +0,0 @@ -
-
- -
- -
-

Welcome to Phil Muchbetter

- - - - -
- -
diff --git a/templates/classic/images/entrance.jpg b/templates/classic/images/entrance.jpg deleted file mode 100644 index 1dd4be7..0000000 Binary files a/templates/classic/images/entrance.jpg and /dev/null differ diff --git a/templates/classic/images/tablet.svg b/templates/classic/images/tablet.svg deleted file mode 100644 index efb362a..0000000 --- a/templates/classic/images/tablet.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/templates/classic/imagezoom.html b/templates/classic/imagezoom.html deleted file mode 100644 index 8f58e26..0000000 --- a/templates/classic/imagezoom.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - -
-
- - - DI - DII - DIII - aVL - IV - V - VI - -
- - - - -
diff --git a/templates/classic/knot.html b/templates/classic/knot.html deleted file mode 100644 index 9b94125..0000000 --- a/templates/classic/knot.html +++ /dev/null @@ -1,7 +0,0 @@ - - -
- {knot} -
-
-
\ No newline at end of file diff --git a/templates/classic/notice.html b/templates/classic/notice.html deleted file mode 100644 index 9946b0d..0000000 --- a/templates/classic/notice.html +++ /dev/null @@ -1,2 +0,0 @@ -{knot} - \ No newline at end of file diff --git a/templates/classic/presentation.html b/templates/classic/presentation.html deleted file mode 100644 index a513c7f..0000000 --- a/templates/classic/presentation.html +++ /dev/null @@ -1,3 +0,0 @@ -
-{knot} -
\ No newline at end of file diff --git a/templates/classic/register.html b/templates/classic/register.html deleted file mode 100644 index 4f6c388..0000000 --- a/templates/classic/register.html +++ /dev/null @@ -1,32 +0,0 @@ -
-
- -
- -
-

Registration

- -
-

User id (e-mail):

-

Name:

-

Age:

-
- -
-
- - - - - - -
-
\ No newline at end of file diff --git a/templates/classic/report.html b/templates/classic/report.html deleted file mode 100644 index c3154c7..0000000 --- a/templates/classic/report.html +++ /dev/null @@ -1,23 +0,0 @@ -
- diff --git a/templates/classic/reset.html b/templates/classic/reset.html deleted file mode 100644 index 581c72e..0000000 --- a/templates/classic/reset.html +++ /dev/null @@ -1,11 +0,0 @@ -
-
- -
- -
-
DANGER! Reset Page
- - -
-
\ No newline at end of file diff --git a/templates/classic/selector.html b/templates/classic/selector.html deleted file mode 100644 index da6defd..0000000 --- a/templates/classic/selector.html +++ /dev/null @@ -1,5 +0,0 @@ -
-
-{knot} -
-
\ No newline at end of file diff --git a/templates/classic/signin.html b/templates/classic/signin.html deleted file mode 100644 index 8010887..0000000 --- a/templates/classic/signin.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
- -
- -
-

Sign In

-
-

User id (e-mail):

-
- -
-
- - - - -
-
\ No newline at end of file diff --git a/templates/classic/start.html b/templates/classic/start.html deleted file mode 100644 index 98ecb6b..0000000 --- a/templates/classic/start.html +++ /dev/null @@ -1,2 +0,0 @@ - -{knot} \ No newline at end of file diff --git a/templates/classic/tablet.html b/templates/classic/tablet.html deleted file mode 100644 index 1932982..0000000 --- a/templates/classic/tablet.html +++ /dev/null @@ -1,5 +0,0 @@ -
-
-{knot} -
-
\ No newline at end of file diff --git a/templates/jacinto/css/dcc-state-selector.css b/templates/jacinto/css/dcc-state-selector.css deleted file mode 100644 index b1d83c9..0000000 --- a/templates/jacinto/css/dcc-state-selector.css +++ /dev/null @@ -1,23 +0,0 @@ -@charset "UTF-8"; - -/* Selector DCC */ - -.dcc-state-selector-template:hover { - cursor: pointer; -} - -.dcc-state-selector-0-template { - background-color: lightgrey; -} - -.dcc-state-selector-1-template { - background-color: green; -} - -.dcc-state-selector-2-template { - background-color: blue; -} - -.dcc-state-selector-3-template { - background-color: red; -} \ No newline at end of file diff --git a/templates/jacinto/css/player.css b/templates/jacinto/css/player.css deleted file mode 100644 index 771d805..0000000 --- a/templates/jacinto/css/player.css +++ /dev/null @@ -1,75 +0,0 @@ -@charset "UTF-8"; - -body { - font-family: "Trebuchet MS", Helvetica, sans-serif; - font-size: 14pt; -} - -.std-border { - border: 1px solid lightgray; - border-radius: 5px; - margin: 5px; -} - -.sty-main-panel { - /* the main box (body) occupies all the visible area */ - position: absolute; - left: 0px; - right: 0px; - top: 0px; - bottom: 0px; - - /* eliminate margins etc. */ - margin: 0px; - padding: 0px; - border-width: 0px; - - display: flex; - flex-direction: column; -} - -.sty-control-panel { - flex: 10%; - max-height: 48px; - display: flex; - flex-direction: row; -} - -.control-button { - flex: 10%; - max-width: 48px; - max-height: 48px; - margin-right: 10px; -} - -.sty-work-panel { - flex: 90%; - height: 90%; - max-height: 90%; - height: 100%; - display: flex; -} - -@media (orientation: landscape) { - .work-panel { - flex-direction: row; - } -} - -@media (orientation: portrait) { - .work-panel { - flex-direction: column; - } -} - -.sty-knot-panel { - flex: 90%; - max-height: 100%; -} - -.sty-note-panel { - border-radius: 1px; - box-shadow: 0px 0px 0px 30px rgba(0,0,0,0.5); - margin: 10px; - background: white; -} diff --git a/templates/jacinto/css/presentation.css b/templates/jacinto/css/presentation.css deleted file mode 100644 index 274e255..0000000 --- a/templates/jacinto/css/presentation.css +++ /dev/null @@ -1,33 +0,0 @@ -@charset "UTF-8"; - -/* Player Panel */ -.sty-player-panel { - flex: 10%; - max-height: 100%; - display: flex; - flex-direction: column; - overflow: hidden; -} - -.player-item { - max-width: 100%; -} - -/* Knot Rendering */ - -h1 { - text-align: center; -} - -.alert-message { - font-size: 20pt; - color: blue; - font-weight: bold; -} - -.central-buttons { - display: flex; - flex-direction: row; - max-width: 100%; - justify-content: center; -} \ No newline at end of file diff --git a/templates/jacinto/css/templates-classic.css b/templates/jacinto/css/templates-classic.css deleted file mode 100644 index d5adccd..0000000 --- a/templates/jacinto/css/templates-classic.css +++ /dev/null @@ -1,110 +0,0 @@ -@charset "UTF-8"; - -/* Panel Left Picture (template) */ -/*********************************/ - -.panel-left-pict { - display: flex; - flex-direction: row; - flex: 100%; - max-height: 100%; - width: 100%; -} - -.panel-left-pict-image { - /* - flex-basis: auto; - max-height: 100%; - width: auto; - */ -} - -.panel-left-pict-image img { - max-height: 100%; -} - -.panel-left-pict-text { - /* flex: 70%; */ -} - -/* Presentation (template) */ -/***************************/ - -.template-presentation { - display: flex; - flex-direction: column; - font-size: 20pt; - width: 100%; -} - -.template-presentation img, .template-presentation dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Tablet (template) */ -/*********************/ - -.template-tablet { - width: 100%; - height: 100%; - - position: relative; - animation-name: template-tablet-displacement; - animation-duration: 2s; - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -@keyframes template-tablet-displacement { - from {left: 100%;} - to {left: 0%;} -} - -.template-tablet-inside { - display: flex; - flex-direction: column; - font-size: 20pt; - width: auto; - height: 90%; - padding: 4% 15% 0% 10%; - overflow: scrool; -} - -.template-tablet-inside img, .template-tablet-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Selector (template) */ -/***********************/ - -.template-selector { - width: 100%; - height: 100%; - - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -.template-selector-inside { - width: auto; - height: 90%; - - padding: 4% 15% 0% 10%; - overflow: scrool; - font-size: 12pt; -} - -.template-selector-inside img, .template-selector-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} diff --git a/templates/jacinto/css/templates.css b/templates/jacinto/css/templates.css deleted file mode 100644 index e0d237a..0000000 --- a/templates/jacinto/css/templates.css +++ /dev/null @@ -1,31 +0,0 @@ -@charset "UTF-8"; - -/* Template Panels Jacinto */ -/***************************/ - -/* Trigger DCC */ - -.dcc-trigger-template { - border: 1px solid lightgray; - border-radius: 5px; - margin: 1px; - color: #eeee; - padding: 2px 2px; - /* text-align: center; */ - text-decoration: none; - display: inline-block; -} -.dcc-trigger-template:hover { - color: #ffff; - font-weight: bold; - cursor: pointer; -} - -/* Input DCC */ - -.dcc-input-template { - font-size:28px; - font-family:Tahoma, Geneva, sans-serif; - fill:#707070; - stroke:none; -} \ No newline at end of file diff --git a/templates/jacinto/decision_exam.html b/templates/jacinto/decision_exam.html deleted file mode 100644 index cd3c6f0..0000000 --- a/templates/jacinto/decision_exam.html +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - {knot} - - -
-
- - - - - - - - -
- action -
-
- -
- action -
-
- -
- action -
-
- - speech - - - - - - - EKG - - - - - - - - - - - - - Click on EKG image to expand it. - - - - -
diff --git a/templates/jacinto/detailed.html b/templates/jacinto/detailed.html deleted file mode 100644 index 6ca99d1..0000000 --- a/templates/jacinto/detailed.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - - - - - -
- action -
-
- -
- action -
-
- -
- action -
-
- - What do you want to do? - - - - character -
\ No newline at end of file diff --git a/templates/jacinto/details_eletro.html b/templates/jacinto/details_eletro.html deleted file mode 100644 index 5f920f5..0000000 --- a/templates/jacinto/details_eletro.html +++ /dev/null @@ -1,589 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - - - character - - - - - What do you want to do? - - - - - - -
\ No newline at end of file diff --git a/templates/jacinto/dialog.html b/templates/jacinto/dialog.html deleted file mode 100644 index ad73181..0000000 --- a/templates/jacinto/dialog.html +++ /dev/null @@ -1,522 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- speech -

-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - - character - -
- - {knot} - \ No newline at end of file diff --git a/templates/jacinto/dialog_left.html b/templates/jacinto/dialog_left.html deleted file mode 100644 index 60338c8..0000000 --- a/templates/jacinto/dialog_left.html +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - -
- action -
-
- - - speech - - - - - - character - -
- - {knot} - \ No newline at end of file diff --git a/templates/jacinto/dialog_right.html b/templates/jacinto/dialog_right.html deleted file mode 100644 index 31f1583..0000000 --- a/templates/jacinto/dialog_right.html +++ /dev/null @@ -1,520 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- speech -

-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - character -
- - {knot} - \ No newline at end of file diff --git a/templates/jacinto/entry.html b/templates/jacinto/entry.html deleted file mode 100644 index 1f41665..0000000 --- a/templates/jacinto/entry.html +++ /dev/null @@ -1,24 +0,0 @@ -
-
- -
- -
-

Welcome to Phil Muchbetter

- - - - -
- -
diff --git a/templates/jacinto/images/entrance.jpg b/templates/jacinto/images/entrance.jpg deleted file mode 100644 index 1dd4be7..0000000 Binary files a/templates/jacinto/images/entrance.jpg and /dev/null differ diff --git a/templates/jacinto/images/hospital-background.png b/templates/jacinto/images/hospital-background.png deleted file mode 100644 index 7f64e05..0000000 Binary files a/templates/jacinto/images/hospital-background.png and /dev/null differ diff --git a/templates/jacinto/images/tablet.svg b/templates/jacinto/images/tablet.svg deleted file mode 100644 index efb362a..0000000 --- a/templates/jacinto/images/tablet.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/templates/jacinto/imagezoom.html b/templates/jacinto/imagezoom.html deleted file mode 100644 index 8f58e26..0000000 --- a/templates/jacinto/imagezoom.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - -
-
- - - DI - DII - DIII - aVL - IV - V - VI - -
- - - - -
diff --git a/templates/jacinto/information.html b/templates/jacinto/information.html deleted file mode 100644 index 6be7ca7..0000000 --- a/templates/jacinto/information.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - {knot} - - -
-
- - - - - - - character - - - - -
- action -
-
- -
- action -
-
- -
- action -
-
- - Question - -
diff --git a/templates/jacinto/input.html b/templates/jacinto/input.html deleted file mode 100644 index 8dcd5b5..0000000 --- a/templates/jacinto/input.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - character - - -
- submit -
-
- -
- - {knot} - -
-
- -
-
-
-
\ No newline at end of file diff --git a/templates/jacinto/knot.html b/templates/jacinto/knot.html deleted file mode 100644 index 0e9a517..0000000 --- a/templates/jacinto/knot.html +++ /dev/null @@ -1 +0,0 @@ -{knot} \ No newline at end of file diff --git a/templates/jacinto/magnify_exam.html b/templates/jacinto/magnify_exam.html deleted file mode 100644 index 70ee1bb..0000000 --- a/templates/jacinto/magnify_exam.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - EKG - - - - -
- action -
-
- - - - -
- - - {knot} - - diff --git a/templates/jacinto/marker_exam.html b/templates/jacinto/marker_exam.html deleted file mode 100644 index 287cc70..0000000 --- a/templates/jacinto/marker_exam.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - EKG - - - - {knot} - - - - -
- action -
-
- - - - -
diff --git a/templates/jacinto/note.html b/templates/jacinto/note.html deleted file mode 100644 index cd7ff6e..0000000 --- a/templates/jacinto/note.html +++ /dev/null @@ -1,157 +0,0 @@ -
- - - - - image/svg+xml - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - - - - -
-
\ No newline at end of file diff --git a/templates/jacinto/notice.html b/templates/jacinto/notice.html deleted file mode 100644 index 9946b0d..0000000 --- a/templates/jacinto/notice.html +++ /dev/null @@ -1,2 +0,0 @@ -{knot} - \ No newline at end of file diff --git a/templates/jacinto/presentation.html b/templates/jacinto/presentation.html deleted file mode 100644 index a513c7f..0000000 --- a/templates/jacinto/presentation.html +++ /dev/null @@ -1,3 +0,0 @@ -
-{knot} -
\ No newline at end of file diff --git a/templates/jacinto/register.html b/templates/jacinto/register.html deleted file mode 100644 index 4f6c388..0000000 --- a/templates/jacinto/register.html +++ /dev/null @@ -1,32 +0,0 @@ -
-
- -
- -
-

Registration

- -
-

User id (e-mail):

-

Name:

-

Age:

-
- -
-
- - - - - - -
-
\ No newline at end of file diff --git a/templates/jacinto/report.html b/templates/jacinto/report.html deleted file mode 100644 index c3154c7..0000000 --- a/templates/jacinto/report.html +++ /dev/null @@ -1,23 +0,0 @@ -
- diff --git a/templates/jacinto/reset.html b/templates/jacinto/reset.html deleted file mode 100644 index 581c72e..0000000 --- a/templates/jacinto/reset.html +++ /dev/null @@ -1,11 +0,0 @@ -
-
- -
- -
-
DANGER! Reset Page
- - -
-
\ No newline at end of file diff --git a/templates/jacinto/selector.html b/templates/jacinto/selector.html deleted file mode 100644 index 29684a2..0000000 --- a/templates/jacinto/selector.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Speech -
-
- -
- - {knot} - -
-
- - -
- action -
-
- -
\ No newline at end of file diff --git a/templates/jacinto/signin.html b/templates/jacinto/signin.html deleted file mode 100644 index 8010887..0000000 --- a/templates/jacinto/signin.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
- -
- -
-

Sign In

-
-

User id (e-mail):

-
- -
-
- - - - -
-
\ No newline at end of file diff --git a/templates/jacinto/start.html b/templates/jacinto/start.html deleted file mode 100644 index 98ecb6b..0000000 --- a/templates/jacinto/start.html +++ /dev/null @@ -1,2 +0,0 @@ - -{knot} \ No newline at end of file diff --git a/templates/jacinto/svgs/box.svg b/templates/jacinto/svgs/box.svg deleted file mode 100644 index fe1bcb8..0000000 --- a/templates/jacinto/svgs/box.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/templates/jacinto/svgs/decision.svg b/templates/jacinto/svgs/decision.svg deleted file mode 100644 index 79825cd..0000000 --- a/templates/jacinto/svgs/decision.svg +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - - - - character - - - - - - - - What do you want to do? - - diff --git a/templates/jacinto/svgs/decision_eletro.svg b/templates/jacinto/svgs/decision_eletro.svg deleted file mode 100644 index 9c9e233..0000000 --- a/templates/jacinto/svgs/decision_eletro.svg +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - - - - - - - - - What do you want to do? - - - - - - - EKG - - - - - - - - - - - - - Click on EKG image to expand it. - - - - -
diff --git a/templates/jacinto/svgs/detailed.svg b/templates/jacinto/svgs/detailed.svg deleted file mode 100644 index 69616b4..0000000 --- a/templates/jacinto/svgs/detailed.svg +++ /dev/null @@ -1,572 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - What do you want to do? - - - - SUPERVISOR Harry -
diff --git a/templates/jacinto/svgs/dialog_left.svg b/templates/jacinto/svgs/dialog_left.svg deleted file mode 100644 index e5b225a..0000000 --- a/templates/jacinto/svgs/dialog_left.svg +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - action - - - - - speech - - - - - - character - - diff --git a/templates/jacinto/svgs/dialog_right.svg b/templates/jacinto/svgs/dialog_right.svg deleted file mode 100644 index d2d618f..0000000 --- a/templates/jacinto/svgs/dialog_right.svg +++ /dev/null @@ -1,517 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- speech -

-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - character -
\ No newline at end of file diff --git a/templates/jacinto/svgs/images/hospital-background.png b/templates/jacinto/svgs/images/hospital-background.png deleted file mode 100644 index 7f64e05..0000000 Binary files a/templates/jacinto/svgs/images/hospital-background.png and /dev/null differ diff --git a/templates/jacinto/svgs/images/nurse_agnes.png b/templates/jacinto/svgs/images/nurse_agnes.png deleted file mode 100644 index f4ab542..0000000 Binary files a/templates/jacinto/svgs/images/nurse_agnes.png and /dev/null differ diff --git a/templates/jacinto/svgs/images/patient_jakob.png b/templates/jacinto/svgs/images/patient_jakob.png deleted file mode 100644 index 4e49da7..0000000 Binary files a/templates/jacinto/svgs/images/patient_jakob.png and /dev/null differ diff --git a/templates/jacinto/svgs/images/supervisor_harry.png b/templates/jacinto/svgs/images/supervisor_harry.png deleted file mode 100644 index ce0c3dc..0000000 Binary files a/templates/jacinto/svgs/images/supervisor_harry.png and /dev/null differ diff --git a/templates/jacinto/svgs/information.svg b/templates/jacinto/svgs/information.svg deleted file mode 100644 index 3a07208..0000000 --- a/templates/jacinto/svgs/information.svg +++ /dev/null @@ -1,605 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- MORE INFORMATION JSDHKASJHDIUH AKDHAKSDHAK ASKJDHKASHDKAJSH ASDKHAKSDHKAS -

-
- - - - Progress bar - - - Points - - - "Doctor category" - - - X points - - - Excited doctor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - character - - - Generate Hypothesis - Call the Supervisor - - What do you want to do? - -
diff --git a/templates/jacinto/svgs/input.svg b/templates/jacinto/svgs/input.svg deleted file mode 100644 index 1d3e213..0000000 --- a/templates/jacinto/svgs/input.svg +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - speech - - - - - - - - - character - - - - What is your main diagnostic hypothesis? - - -
- - diff --git a/templates/jacinto/svgs/magnify_exam-wide.svg b/templates/jacinto/svgs/magnify_exam-wide.svg deleted file mode 100644 index 75f63ba..0000000 --- a/templates/jacinto/svgs/magnify_exam-wide.svg +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - EKG - - - - - Return - - - diff --git a/templates/jacinto/svgs/magnify_exam.svg b/templates/jacinto/svgs/magnify_exam.svg deleted file mode 100755 index d55c86b..0000000 --- a/templates/jacinto/svgs/magnify_exam.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - EKG - - - Return - - - - - diff --git a/templates/jacinto/svgs/note.svg b/templates/jacinto/svgs/note.svg deleted file mode 100644 index 1934fcb..0000000 --- a/templates/jacinto/svgs/note.svg +++ /dev/null @@ -1,180 +0,0 @@ - - - - - image/svg+xml - - - - - - - - - - - - - - - - -
- - {knot} - -
-
- - - -
- action -
-
- - - - -" label="Previous Knot" xstyle="out-image" location="close-window"> diff --git a/templates/jacinto/svgs/zoom_exam.png b/templates/jacinto/svgs/zoom_exam.png deleted file mode 100755 index 5d5f92b..0000000 Binary files a/templates/jacinto/svgs/zoom_exam.png and /dev/null differ diff --git a/templates/jacinto/tablet.html b/templates/jacinto/tablet.html deleted file mode 100644 index 1932982..0000000 --- a/templates/jacinto/tablet.html +++ /dev/null @@ -1,5 +0,0 @@ -
-
-{knot} -
-
\ No newline at end of file diff --git a/templates/zombie/case.html b/templates/zombie/case.html deleted file mode 100644 index f609db8..0000000 --- a/templates/zombie/case.html +++ /dev/null @@ -1,23 +0,0 @@ - - -
- - - -
- - -
-
-
-
- -
- {knot} -
- -
-
-
-
\ No newline at end of file diff --git a/templates/zombie/css/player.css b/templates/zombie/css/player.css deleted file mode 100644 index 5c2c214..0000000 --- a/templates/zombie/css/player.css +++ /dev/null @@ -1,46 +0,0 @@ -@charset "UTF-8"; - -body { - font-family: "Trebuchet MS", Helvetica, sans-serif; - font-size: 14pt; -} - -.sty-main-panel { - /* the main box (body) occupies all the visible area */ - position: absolute; - left: 0px; - right: 0px; - top: 0px; - bottom: 0px; - - /* eliminate margins etc. */ - margin: 0px; - padding: 0px; - border-width: 0px; - - display: flex; - flex-direction: column; -} - -.panel_center { - position: absolute; - width: 100%; - top: 0px; - bottom: 0px; - left: 0px; - right: 0px; - margin-top: 60px; - background-color: transparent; -} - -.panel_inner_center { - position: absolute; - top: 0px; - bottom: 0px; - left: 0px; - right: 0px; - margin-left: 10%; - margin-right: 10%; - background-color: #fbfcd2; -} - diff --git a/templates/zombie/css/presentation.css b/templates/zombie/css/presentation.css deleted file mode 100644 index 5518ccb..0000000 --- a/templates/zombie/css/presentation.css +++ /dev/null @@ -1,176 +0,0 @@ -@charset "UTF-8"; - -body { - font-family: "Trebuchet MS", Helvetica, sans-serif; - margin: 0px; - background-color: #383f4f; -} - -/* panels */ -/* ------ */ - -.panel_north { - position: relative; - width: 100%; - height: 100px; - overflow: auto; - color: #383f4f; - background-color: #c4ad9d; -} - -/* main menu */ -/* --------- */ -.main_menu -{ - position: relative; - float: right; - width: auto; - height: auto; - padding: 10px; - font-size: 16pt; - color: #383f4f; -} - -.main_menu a:link { - color: #383f4f; - text-decoration: none; -} - -.main_menu a:visited { - color: #383f4f; - text-decoration: none; -} - -.main_menu a:hover { - color: #383f4f; - text-decoration: none; -} - -.main_menu hr { - border: 1px solid; -} - -/* home item */ -/* --------- */ - -.home_item { - position: relative; - float: left; - height: 50px; - margin: 10px; - font-size: 24pt; -} - -.home_item a:link { - color: #383f4f; - text-decoration: none; -} - -.home_item a:visited { - color: #383f4f; - text-decoration: none; -} - -.home_item a:hover { - color: #383f4f; - text-decoration: none; -} - -/* iFrames */ -/* ------- */ - -.iframe_render { - width: 100%; - height: 100%; - margin: 0px auto; - padding: 0px; -} - - - -/* PAGE.CSS */ - -.panel_presentation { - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - display: flex; - flex-direction: row; - color: #383f4f; -} - -.panel_image { - width: auto; - height: 100%; - top: 0px; - left: 0px; - margin: 0px; - padding: 0px; - overflow: hidden; -} - -.image_presentation { - position: relative; - width: auto; - height: 100%; - top: 0px; - left: 0px; - background-color: transparent; -} - -.panel_case { - width: auto; - height: auto; - top: 0px; - right: 0px; - margin: 0px; - padding: 0px; - overflow: hidden; -} - -.case_title { - position: relative; - float: top; - width: 100%; - height: auto; - padding: 30px; - font-size: 24pt; -} - -.case_text { - font-size: 18pt; - padding: 30px; -} - -/* case link */ -/* --------- */ - -.case_link { - color: #e0e9ce; - text-align: center; - width: 300px; - height: 30px; - margin-left: auto; - margin-right: 20px; - margin-top: 20px; - margin-bottom: 20px; - background-color: #383f4f; - font-size: 16pt; -} - -.case_link a:link { - color: #e0e9ce; - text-decoration: none; -} - -.case_link a:visited { - color: #e0e9ce; - text-decoration: none; -} - -.case_link a:hover { - color: #e0e9ce; - text-decoration: none; -} diff --git a/templates/zombie/css/templates-classic.css b/templates/zombie/css/templates-classic.css deleted file mode 100644 index d5adccd..0000000 --- a/templates/zombie/css/templates-classic.css +++ /dev/null @@ -1,110 +0,0 @@ -@charset "UTF-8"; - -/* Panel Left Picture (template) */ -/*********************************/ - -.panel-left-pict { - display: flex; - flex-direction: row; - flex: 100%; - max-height: 100%; - width: 100%; -} - -.panel-left-pict-image { - /* - flex-basis: auto; - max-height: 100%; - width: auto; - */ -} - -.panel-left-pict-image img { - max-height: 100%; -} - -.panel-left-pict-text { - /* flex: 70%; */ -} - -/* Presentation (template) */ -/***************************/ - -.template-presentation { - display: flex; - flex-direction: column; - font-size: 20pt; - width: 100%; -} - -.template-presentation img, .template-presentation dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Tablet (template) */ -/*********************/ - -.template-tablet { - width: 100%; - height: 100%; - - position: relative; - animation-name: template-tablet-displacement; - animation-duration: 2s; - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -@keyframes template-tablet-displacement { - from {left: 100%;} - to {left: 0%;} -} - -.template-tablet-inside { - display: flex; - flex-direction: column; - font-size: 20pt; - width: auto; - height: 90%; - padding: 4% 15% 0% 10%; - overflow: scrool; -} - -.template-tablet-inside img, .template-tablet-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} - -/* Selector (template) */ -/***********************/ - -.template-selector { - width: 100%; - height: 100%; - - background-image: url(../images/tablet.svg); - background-repeat: no-repeat; - background-size: 100% 100%; -} - -.template-selector-inside { - width: auto; - height: 90%; - - padding: 4% 15% 0% 10%; - overflow: scrool; - font-size: 12pt; -} - -.template-selector-inside img, .template-selector-inside dcc-trigger { - display: block; - margin-left: auto; - margin-right: auto; - width: 50%; -} diff --git a/templates/zombie/css/templates.css b/templates/zombie/css/templates.css deleted file mode 100644 index 5ea51bb..0000000 --- a/templates/zombie/css/templates.css +++ /dev/null @@ -1,53 +0,0 @@ -@charset "UTF-8"; - -/* Template Panels Jacinto */ -/***************************/ - -/* Trigger DCC */ - -.dcc-trigger-template { - border: 1px solid lightgray; - border-radius: 5px; - margin: 5px; - color: #eeee; - padding: 14px 25px; - text-align: center; - text-decoration: none; - display: inline-block; -} -.dcc-trigger-template:hover { - color: #ffff; - font-weight: bold; - cursor: pointer; -} - -/* Input DCC */ - -.dcc-input-template { - font-size:28px; - font-family:Tahoma, Geneva, sans-serif; - fill:#707070; - stroke:none; -} - -/* Selector DCC */ - -.dcc-state-selector-template:hover { - cursor: pointer; -} - -.dcc-state-selector-0-template { - background-color: lightgrey; -} - -.dcc-state-selector-1-template { - background-color: green; -} - -.dcc-state-selector-2-template { - background-color: blue; -} - -.dcc-state-selector-3-template { - background-color: red; -} \ No newline at end of file diff --git a/templates/zombie/end.html b/templates/zombie/end.html deleted file mode 100644 index 49d883e..0000000 --- a/templates/zombie/end.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
- end -

{knot}

-

Placar: pontos

-
- -
-
\ No newline at end of file diff --git a/templates/zombie/entry.html b/templates/zombie/entry.html deleted file mode 100644 index f198b73..0000000 --- a/templates/zombie/entry.html +++ /dev/null @@ -1,62 +0,0 @@ - - -
- - - -
- - -
-
- -
-
-
Zombie Health
- -
- - -
- -
- -
-

Você é um Médico Girafa (girafas não viram zumbis).

- - -
-

Identificação:

-

Nome fantasia:

-

Idade:

-
- -
-
- - - - - - - - -
- - -
- -
-
- -
-
\ No newline at end of file diff --git a/templates/zombie/knot.html b/templates/zombie/knot.html deleted file mode 100644 index a711c39..0000000 --- a/templates/zombie/knot.html +++ /dev/null @@ -1,8 +0,0 @@ -
-
-
- {knot} -
- -
-
diff --git a/templates/zombie/notice.html b/templates/zombie/notice.html deleted file mode 100644 index e6f81f5..0000000 --- a/templates/zombie/notice.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
- - -
- {knot} - -
- -
-
- diff --git a/templates/zombie/notice_right.html b/templates/zombie/notice_right.html deleted file mode 100644 index 98d3510..0000000 --- a/templates/zombie/notice_right.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
- -
- right treatment - {knot} -

Placar: pontos

- -
- -
-
diff --git a/templates/zombie/notice_wrong.html b/templates/zombie/notice_wrong.html deleted file mode 100644 index 86c5591..0000000 --- a/templates/zombie/notice_wrong.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
- -
- wrong treatment - {knot} -

Placar: pontos

- -
- -
-
diff --git a/templates/zombie/presentation.html b/templates/zombie/presentation.html deleted file mode 100644 index cd54fea..0000000 --- a/templates/zombie/presentation.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
{title}
- -
-{knot} -
- -
-
\ No newline at end of file diff --git a/templates/zombie/report.html b/templates/zombie/report.html deleted file mode 100644 index 5543c7f..0000000 --- a/templates/zombie/report.html +++ /dev/null @@ -1 +0,0 @@ -

\ No newline at end of file