├── arguegame ├── www │ ├── lib │ │ ├── ng-cordova │ │ │ ├── test │ │ │ │ ├── plugins │ │ │ │ │ ├── compass.spec.js │ │ │ │ │ ├── device.spec.js │ │ │ │ │ ├── file.spec.js │ │ │ │ │ ├── accelerometer.spec.js │ │ │ │ │ └── geolocation.spec.js │ │ │ │ └── mocks │ │ │ │ │ ├── capture.spec.js │ │ │ │ │ ├── splashscreen.spec.js │ │ │ │ │ └── statusbar.spec.js │ │ │ ├── .bowerrc │ │ │ ├── src │ │ │ │ ├── module-mocks.js │ │ │ │ ├── module.js │ │ │ │ ├── mocks │ │ │ │ │ ├── datePicker.js │ │ │ │ │ └── keyboard.js │ │ │ │ └── plugins │ │ │ │ │ ├── splashscreen.js │ │ │ │ │ ├── appVersion.js │ │ │ │ │ ├── pinDialog.js │ │ │ │ │ ├── sms.js │ │ │ │ │ ├── spinnerDialog.js │ │ │ │ │ ├── appAvailability.js │ │ │ │ │ ├── datepicker.js │ │ │ │ │ ├── imagePicker.js │ │ │ │ │ └── vibration.js │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ ├── ionic │ │ │ ├── fonts │ │ │ │ ├── ionicons.eot │ │ │ │ ├── ionicons.ttf │ │ │ │ └── ionicons.woff │ │ │ ├── scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _backdrop.scss │ │ │ │ ├── ionicons │ │ │ │ │ └── ionicons.scss │ │ │ │ └── _split-pane.scss │ │ │ └── README.md │ │ ├── angular │ │ │ ├── angular.min.js.gzip │ │ │ ├── bower.json │ │ │ ├── angular-csp.css │ │ │ ├── .bower.json │ │ │ └── package.json │ │ ├── flag-icon-css │ │ │ ├── less │ │ │ │ ├── variables.less │ │ │ │ ├── flag-icon.less │ │ │ │ └── flag-icon-more.less │ │ │ ├── sass │ │ │ │ ├── _flag-icon.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── _flag-icon-more.scss │ │ │ ├── flags │ │ │ │ ├── 4x3 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ └── tl.svg │ │ │ │ └── 1x1 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ └── tr.svg │ │ │ ├── bower.json │ │ │ └── composer.json │ │ ├── angular-translate │ │ │ ├── README.md │ │ │ └── bower.json │ │ ├── angular-animate │ │ │ ├── bower.json │ │ │ └── .bower.json │ │ ├── angular-sanitize │ │ │ ├── bower.json │ │ │ └── .bower.json │ │ ├── angular-translate-loader-static-files │ │ │ └── bower.json │ │ └── angular-ui-router │ │ │ └── bower.json │ ├── Resources │ │ ├── Sounds │ │ │ ├── fail.mp3 │ │ │ ├── ranking.mp3 │ │ │ ├── success.mp3 │ │ │ └── confirmation.mp3 │ │ ├── Images │ │ │ ├── AppIcon.png │ │ │ ├── Coin@2x.png │ │ │ ├── Pro@2x.png │ │ │ ├── arggame.png │ │ │ ├── argjudge.png │ │ │ ├── argmenu.png │ │ │ ├── argwrite.png │ │ │ ├── Avatar1@2x.png │ │ │ ├── Avatar2@2x.png │ │ │ ├── Avatar3@2x.png │ │ │ ├── Avatar4@2x.png │ │ │ ├── Avatar5@2x.png │ │ │ ├── Avatar6@2x.png │ │ │ ├── Avatar7@2x.png │ │ │ ├── Avatar8@2x.png │ │ │ ├── Avatar9@2x.png │ │ │ ├── Contra@2x.png │ │ │ ├── argresult.png │ │ │ ├── Avatar10@2x.png │ │ │ ├── Avatar11@2x.png │ │ │ ├── Guy-Hint@2x.jpg │ │ │ ├── Guy-Hint@2x.png │ │ │ ├── argindicate.png │ │ │ ├── icon │ │ │ │ └── ios │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon-60.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon@2x.png │ │ │ │ │ ├── iTunesArtwork │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── iTunesArtwork@2x │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon-40.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-40@2x.png │ │ │ │ │ ├── Icon-40@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-Small.png │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ └── Icon-Small@3x.png │ │ │ ├── Betty-Support@2x.png │ │ │ ├── AvatarPlaceholder@2x.png │ │ │ └── Newspaper-TopEdge@2x.png │ │ └── Fonts │ │ │ ├── museosansrounded-300.woff │ │ │ └── museosansrounded-700.woff │ ├── GameContent │ │ ├── Rounds │ │ │ ├── README.md │ │ │ ├── StaticContent │ │ │ │ └── StaticContent.html │ │ │ ├── SessionSelect │ │ │ │ └── CreateButton.html │ │ │ └── FallacyInformation │ │ │ │ └── FallacyInformation.html │ │ ├── Worlds │ │ │ ├── DarkLands │ │ │ │ └── map2.png │ │ │ ├── GreenWorld │ │ │ │ └── map1.png │ │ │ ├── Village_seamless.jpg │ │ │ ├── Village_geo_seamless.jpg │ │ │ └── README.md │ │ └── StaticContent │ │ │ ├── PvPIntro.html │ │ │ ├── PvPIndicate.html │ │ │ ├── PvPResult.html │ │ │ ├── PvPWrite.html │ │ │ ├── PvPJudge.html │ │ │ ├── Component.StaticContentCompleteLevelButton.html │ │ │ ├── README.md │ │ │ ├── Component.StaticContentContinueButton.html │ │ │ └── FallacyRecognition.html │ ├── src │ │ ├── App │ │ │ ├── Controllers │ │ │ │ ├── RegistrationController.js │ │ │ │ ├── AuthenticationController.js │ │ │ │ ├── ImprovedRankingController.js │ │ │ │ └── BrowserController.js │ │ │ └── lib │ │ │ │ ├── Directives │ │ │ │ └── errSrc.js │ │ │ │ └── Services │ │ │ │ └── VotingStore.js │ │ └── README.md │ ├── Views │ │ ├── AccountPopover.html │ │ ├── RoundFailure.html │ │ ├── LevelComplete.html │ │ ├── RoundDone.html │ │ ├── Registration.html │ │ ├── RoundSuccess.html │ │ ├── UserProgress.html │ │ ├── ForeignProfile.html │ │ └── Authentication.html │ ├── config-device-prod.js │ └── .jslintrc ├── .bowerrc ├── resources │ ├── icon.png │ ├── splash.png │ ├── Untitled-1.png │ └── ios │ │ ├── icon │ │ ├── icon.png │ │ ├── icon-40.png │ │ ├── icon-50.png │ │ ├── icon-60.png │ │ ├── icon-72.png │ │ ├── icon-76.png │ │ ├── icon@2x.png │ │ ├── icon-40@2x.png │ │ ├── icon-50@2x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72@2x.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ └── icon-small@2x.png │ │ └── splash │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default~iphone.png │ │ ├── Default@2x~iphone.png │ │ ├── Default-568h@2x~iphone.png │ │ ├── Default-Landscape-736h.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default-Landscape@2x~ipad.png │ │ └── Default-Portrait@2x~ipad.png ├── plugins │ ├── cordova-plugin-inappbrowser │ │ ├── src │ │ │ ├── ubuntu │ │ │ │ └── close.png │ │ │ └── android │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ ├── tests │ │ │ └── resources │ │ │ │ └── local.pdf │ │ └── NOTICE │ ├── org.apache.cordova.inappbrowser │ │ ├── src │ │ │ ├── ubuntu │ │ │ │ └── close.png │ │ │ └── android │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ ├── ic_action_remove.png │ │ │ │ ├── ic_action_next_item.png │ │ │ │ └── ic_action_previous_item.png │ │ ├── tests │ │ │ └── resources │ │ │ │ └── local.pdf │ │ └── NOTICE │ ├── ionic-plugin-keyboard │ │ └── src │ │ │ ├── blackberry10 │ │ │ └── native │ │ │ │ ├── device │ │ │ │ ├── src │ │ │ │ │ ├── Logger.o │ │ │ │ │ ├── keyboard_js.o │ │ │ │ │ ├── CallKeyboard.o │ │ │ │ │ └── keyboard_ndk.o │ │ │ │ ├── libKeyboard.so │ │ │ │ └── public │ │ │ │ │ ├── plugin.o │ │ │ │ │ ├── json_value.o │ │ │ │ │ ├── tokenizer.o │ │ │ │ │ ├── json_reader.o │ │ │ │ │ └── json_writer.o │ │ │ │ ├── public │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer.cpp │ │ │ │ └── json │ │ │ │ │ ├── json.h │ │ │ │ │ └── autolink.h │ │ │ │ └── simulator │ │ │ │ ├── libKeyboard.so │ │ │ │ ├── src │ │ │ │ ├── Logger.o │ │ │ │ ├── CallKeyboard.o │ │ │ │ ├── keyboard_js.o │ │ │ │ └── keyboard_ndk.o │ │ │ │ └── public │ │ │ │ ├── plugin.o │ │ │ │ ├── json_value.o │ │ │ │ ├── tokenizer.o │ │ │ │ ├── json_reader.o │ │ │ │ └── json_writer.o │ │ │ └── ios │ │ │ ├── UIWebViewExtension.h │ │ │ └── IonicKeyboard.h │ ├── cordova-plugin-certificates │ │ ├── runIntegrationTests.sh │ │ └── package.json │ └── browser.json ├── messages.pot ├── bower.json ├── ionic.project ├── README.md ├── hooks │ ├── uglify-config.json │ ├── after_plugin_add │ │ └── 010_register_plugin.js │ ├── after_plugin_rm │ │ └── 010_deregister_plugin.js │ └── before_platform_add │ │ └── init_directories.js └── config-web-prod.js ├── argueserver ├── mace │ ├── MACE │ └── MACE.jar ├── .gitignore └── plugins │ ├── __init__.py │ ├── events.py │ ├── feedback.py │ ├── languages.py │ └── domains.py ├── .gitignore ├── mongoscripts ├── README.md ├── argotarioTopics.js └── addLanguageToDocuments.js ├── doc ├── README.txt └── startArgotario_osx.sh └── admintools └── Readme.md /arguegame/www/lib/ng-cordova/test/plugins/compass.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/plugins/device.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/plugins/file.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arguegame/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/plugins/accelerometer.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/plugins/geolocation.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "./bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /argueserver/mace/MACE: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #shift 3 | #echo $@ 4 | java -Xms2G -jar MACE.jar $@ 5 | -------------------------------------------------------------------------------- /argueserver/mace/MACE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/argueserver/mace/MACE.jar -------------------------------------------------------------------------------- /arguegame/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/icon.png -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/module-mocks.js: -------------------------------------------------------------------------------- 1 | var ngCordovaMocks = angular.module('ngCordovaMocks', []); -------------------------------------------------------------------------------- /arguegame/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/splash.png -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/module.js: -------------------------------------------------------------------------------- 1 | 2 | angular.module('ngCordova', [ 3 | 'ngCordova.plugins' 4 | ]); 5 | -------------------------------------------------------------------------------- /arguegame/resources/Untitled-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/Untitled-1.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Sounds/fail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Sounds/fail.mp3 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.ipr 3 | *.iws 4 | /.idea 5 | .DS_Store 6 | arguegame/www/bin/* 7 | mongodb 8 | arguegame/platforms/ 9 | doc/html -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/AppIcon.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Coin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Coin@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Pro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Pro@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/arggame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/arggame.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/argjudge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/argjudge.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/argmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/argmenu.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/argwrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/argwrite.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Sounds/ranking.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Sounds/ranking.mp3 -------------------------------------------------------------------------------- /arguegame/www/Resources/Sounds/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Sounds/success.mp3 -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/lib/ionic/fonts/ionicons.eot -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/lib/ionic/fonts/ionicons.ttf -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/lib/ionic/fonts/ionicons.woff -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar1@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar2@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar3@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar4@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar5@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar6@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar7@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar8@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar9@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Contra@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Contra@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/argresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/argresult.png -------------------------------------------------------------------------------- /arguegame/www/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /arguegame/resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar10@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Avatar11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Avatar11@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Guy-Hint@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Guy-Hint@2x.jpg -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Guy-Hint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Guy-Hint@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/argindicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/argindicate.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Sounds/confirmation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Sounds/confirmation.mp3 -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /arguegame/www/GameContent/Rounds/README.md: -------------------------------------------------------------------------------- 1 | # Rounds 2 | 3 | This subfolder contains all round specific resources, such as Controllers, Views and images. 4 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/Worlds/DarkLands/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/GameContent/Worlds/DarkLands/map2.png -------------------------------------------------------------------------------- /arguegame/www/GameContent/Worlds/GreenWorld/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/GameContent/Worlds/GreenWorld/map1.png -------------------------------------------------------------------------------- /arguegame/www/GameContent/Worlds/Village_seamless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/GameContent/Worlds/Village_seamless.jpg -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Betty-Support@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Betty-Support@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon-60.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon-72.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/iTunesArtwork -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/less/variables.less: -------------------------------------------------------------------------------- 1 | @flag-icon-css-path: '../flags'; 2 | @flag-icon-rect-path: '/4x3'; 3 | @flag-icon-square-path: '/1x1'; 4 | -------------------------------------------------------------------------------- /argueserver/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | .idea/ 4 | *.iml 5 | *.ipr 6 | *.iws 7 | 8 | # MACE temporary files 9 | competence 10 | prediction -------------------------------------------------------------------------------- /arguegame/www/Resources/Fonts/museosansrounded-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Fonts/museosansrounded-300.woff -------------------------------------------------------------------------------- /arguegame/www/Resources/Fonts/museosansrounded-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Fonts/museosansrounded-700.woff -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/AvatarPlaceholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/AvatarPlaceholder@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/Newspaper-TopEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/Newspaper-TopEdge@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon-72@2x.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /arguegame/www/GameContent/Worlds/Village_geo_seamless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/GameContent/Worlds/Village_geo_seamless.jpg -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon-Small-50.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/iTunesArtwork@2x -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/less/flag-icon.less: -------------------------------------------------------------------------------- 1 | @import 'variables'; 2 | @import 'flag-icon-base'; 3 | @import 'flag-icon-list'; 4 | @import 'flag-icon-more'; 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/sass/_flag-icon.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "flag-icon-base"; 3 | @import "flag-icon-list"; 4 | @import "flag-icon-more"; 5 | -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /arguegame/resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /arguegame/www/lib/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.3.6", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /argueserver/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['arguments', 'domains', 'events', 'fallacies', 'feedback', 'pointsOverTime', 'sessions', 'spamReports', 'topics', 'users', 'languages'] 2 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | $flag-icon-css-path: '../flags' !default; 2 | $flag-icon-rect-path: '/4x3' !default; 3 | $flag-icon-square-path: '/1x1' !default; 4 | -------------------------------------------------------------------------------- /mongoscripts/README.md: -------------------------------------------------------------------------------- 1 | This directory contains MongoDB scripts. 2 | 3 | To run a script: 4 | 1) Make sure that the MongoDB server is running. 5 | 2) cmd: mongo argotario filename.js 6 | -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/ubuntu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/ubuntu/close.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/less/flag-icon-more.less: -------------------------------------------------------------------------------- 1 | .flag-icon(eu); 2 | .flag-icon(gb-eng); 3 | .flag-icon(gb-nir); 4 | .flag-icon(gb-sct); 5 | .flag-icon(gb-wls); 6 | .flag-icon(un); 7 | -------------------------------------------------------------------------------- /arguegame/www/src/App/Controllers/RegistrationController.js: -------------------------------------------------------------------------------- 1 | angular.module('ui.controllers').controller('RegistrationController', function($scope,$ionicModal,$ionicPopup){ 2 | 3 | 4 | }); 5 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /doc/README.txt: -------------------------------------------------------------------------------- 1 | Generating pretty-looking HTML from adoc: 2 | 3 | $ sudo apt-get install asciidoctor 4 | $ asciidoctor devel.adoc -D html -n -a toc=left 5 | 6 | This will generate html/devel.html -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/tests/resources/local.pdf -------------------------------------------------------------------------------- /arguegame/www/src/App/Controllers/AuthenticationController.js: -------------------------------------------------------------------------------- 1 | angular.module('ui.controllers').controller('AuthenticationController', function($scope,$ionicModal,$ionicPopup){ 2 | 3 | 4 | }); 5 | -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/www/Resources/Images/icon/ios/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /arguegame/www/lib/angular-translate/README.md: -------------------------------------------------------------------------------- 1 | # bower-angular-translate 2 | 3 | angular-translate bower package 4 | 5 | ### Installation 6 | 7 | ```` 8 | $ bower install angular-translate 9 | ```` 10 | -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/Logger.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/Logger.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.h -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/libKeyboard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/libKeyboard.so -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.cpp -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/plugin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/plugin.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_js.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_js.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/libKeyboard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/libKeyboard.so -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/Logger.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/Logger.o -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | node_modules/ 3 | .idea/* 4 | demo/platforms/* 5 | demo/plugins/* 6 | _site 7 | bower_components 8 | coverage 9 | Gemfile.lock 10 | .DS_Store* 11 | npm-debug.log 12 | -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_value.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_value.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/tokenizer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/tokenizer.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/CallKeyboard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/CallKeyboard.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_ndk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_ndk.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/plugin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/plugin.o -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_reader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_reader.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_writer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_writer.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_value.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_value.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/tokenizer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/tokenizer.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/CallKeyboard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/CallKeyboard.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_js.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_js.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_ndk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_ndk.o -------------------------------------------------------------------------------- /arguegame/www/src/README.md: -------------------------------------------------------------------------------- 1 | ## ReadMe ('src' folder) 2 | 3 | For each of the folders in the 'src' folder, there is a script in the gulpfile.js, which concats all contained JS files into one JS file, that will be put into the 'bin' folder. -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_reader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_reader.o -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_writer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_writer.o -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-animate/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-animate", 3 | "version": "1.3.6", 4 | "main": "./angular-animate.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.6" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/sass/_flag-icon-more.scss: -------------------------------------------------------------------------------- 1 | @include flag-icon(eu); 2 | @include flag-icon(gb-eng); 3 | @include flag-icon(gb-nir); 4 | @include flag-icon(gb-sct); 5 | @include flag-icon(gb-wls); 6 | @include flag-icon(un); 7 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/www/lib/angular-sanitize/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-sanitize", 3 | "version": "1.3.6", 4 | "main": "./angular-sanitize.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.6" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/ios/UIWebViewExtension.h: -------------------------------------------------------------------------------- 1 | @interface UIWebView (HackishAccessoryHiding) 2 | @property (nonatomic, assign) BOOL hackishlyHidesInputAccessoryView; 3 | //@property (nonatomic, assign) BOOL styleDark; 4 | @end 5 | -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/www/Views/AccountPopover.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

My Popover Title

4 |
5 | 6 | Hello! 7 | 8 |
9 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/messages.pot: -------------------------------------------------------------------------------- 1 | # Generated by grunt-xgettext on Sat Jan 31 2015 11:34:32 GMT+0100 (CET) 2 | 3 | msgid "Oh no!" 4 | msgstr "" 5 | 6 | msgid "Logging out failed. Please try again later" 7 | msgstr "" 8 | 9 | msgid "Dismiss" 10 | msgstr "" 11 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/scss/_progress.scss: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Progress 4 | * -------------------------------------------------- 5 | */ 6 | 7 | progress { 8 | display: block; 9 | margin: $progress-margin; 10 | width: $progress-width; 11 | } 12 | -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Argue", 3 | "private": "true", 4 | "devDependencies": { 5 | "ionic": "driftyco/ionic-bower#1.0.0-beta.14" 6 | }, 7 | "dependencies": { 8 | "angular-translate-loader-static-files": "^2.13.1" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/argotario/HEAD/arguegame/plugins/org.apache.cordova.inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/PvPIntro.html: -------------------------------------------------------------------------------- 1 |
2 |

{{'WELCOME'|translate}}:
3 | {{'IN_THIS_GAME_YOU_ARGUE'|translate}} 4 |

5 | 6 |
7 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/Worlds/README.md: -------------------------------------------------------------------------------- 1 | # Worlds 2 | 3 | This subfolder contains game world related ressources, such as background graphics. Each world in the gameConfiguration has an identity ("id"), which references the subfolder in this folder the resources are loaded from. 4 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/PvPIndicate.html: -------------------------------------------------------------------------------- 1 |
2 |

{{'YOUR_SECOND_TASK'|translate}}:
3 | {{'TAP_THE_LAST_ARGUMENT'|translate}} 4 |

5 | 6 |
7 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/PvPResult.html: -------------------------------------------------------------------------------- 1 |
2 |

{{'THE_RESULT'|translate}}:
3 | {{'A_COIN_MEANS_THAT'|translate}} 4 | 5 |

6 | 7 |
8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/PvPWrite.html: -------------------------------------------------------------------------------- 1 |
2 |

{{'THE_FIRST_TASK'|translate}}:
3 | {{'WRITE_AN_ARGUMENT_OF_A_GIVEN_TYPE'|translate}} 4 |

5 | 6 |
7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/json.h: -------------------------------------------------------------------------------- 1 | #ifndef JSON_JSON_H_INCLUDED 2 | # define JSON_JSON_H_INCLUDED 3 | 4 | # include "autolink.h" 5 | # include "value.h" 6 | # include "reader.h" 7 | # include "writer.h" 8 | # include "features.h" 9 | 10 | #endif // JSON_JSON_H_INCLUDED 11 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/pe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/PvPJudge.html: -------------------------------------------------------------------------------- 1 |
2 |


{{'THE_JUDGE_LEVEL'|translate}}:
3 | {{'BY_PLAYING_THE_SECOND_LEVEL'|translate}} 4 |

5 | 6 |
7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/Rounds/StaticContent/StaticContent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flag-icon-css", 3 | "main": [ 4 | "css/flag-icon.min.css", 5 | "less/flag-icon.less", 6 | "sass/_flag-icon.scss" 7 | ], 8 | "ignore": [ 9 | "**/.*", 10 | "assets", 11 | "Gruntfile.coffee", 12 | "index.html", 13 | "LICENSE", 14 | "package.json" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/nc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/Component.StaticContentCompleteLevelButton.html: -------------------------------------------------------------------------------- 1 | 2 | {{'FINISH_LEVEL'|translate}} 3 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /argueserver/plugins/events.py: -------------------------------------------------------------------------------- 1 | import interfaces 2 | 3 | 4 | class Events(interfaces.Plugin): 5 | """ 6 | plugin for the events-collection 7 | """ 8 | pass 9 | 10 | def getHandler(database): 11 | """ 12 | a function instantiating and returning this plugin 13 | """ 14 | return Events(database, 'events', public_endpoint_extensions=['insert']) 15 | 16 | 17 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/Rounds/SessionSelect/CreateButton.html: -------------------------------------------------------------------------------- 1 | 2 | {{'NEW_GAME'|translate}} 3 | 4 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-translate/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate", 3 | "description": "A translation module for AngularJS", 4 | "version": "2.5.2", 5 | "main": "./angular-translate.js", 6 | "ignore": [], 7 | "author": "Pascal Precht", 8 | "licenses": [ 9 | { 10 | "type": "MIT", 11 | "url": "http://www.opensource.org/licenses/MIT" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /argueserver/plugins/feedback.py: -------------------------------------------------------------------------------- 1 | import interfaces 2 | 3 | class SpamReports(interfaces.Plugin): 4 | """ 5 | the plugin for the spamReports collection. 6 | """ 7 | pass 8 | 9 | 10 | def getHandler(database): 11 | """ 12 | a function instantiating and returning this plugin 13 | """ 14 | return SpamReports(database, 'feedback', public_endpoint_extensions=['insert']) 15 | -------------------------------------------------------------------------------- /arguegame/www/Views/RoundFailure.html: -------------------------------------------------------------------------------- 1 | 6 |
7 |
8 |

{{'OH_NO'|translate}}

9 |

{{ incorrectInputMessage }}

10 |

{{'NO_COINS_THIS_TIME'|translate}}

11 |
12 |
13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/README.md: -------------------------------------------------------------------------------- 1 | # StaticContent 2 | 3 | This folder contains small HTML files that contain snippets which can be included somewhere. 4 | To include a Component.XYZ.html file, use the directive. 5 | 6 | Besides the components, this folder also contains the HTML files, which are included by the 7 | StaticContent rounds, specified via the HTMLFile parameter. 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-translate-loader-static-files/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-translate-loader-static-files", 3 | "description": "A plugin for Angular Translate", 4 | "version": "2.13.1", 5 | "main": "./angular-translate-loader-static-files.js", 6 | "ignore": [], 7 | "author": "Pascal Precht", 8 | "license": "MIT", 9 | "dependencies": { 10 | "angular-translate": "~2.13.1" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/ionic.project: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Argue!", 3 | "app_id": "", 4 | "gulpStartupTasks": [ 5 | "watchVendorJs", 6 | "watchAppJs" 7 | ], 8 | "watchPatterns": [ 9 | "www/**/*", 10 | "!www/lib/**/*", 11 | "!www/Vendor/**/*", 12 | "!www/Docs/**/*" 13 | ], 14 | "proxies": [ 15 | { 16 | "path": "/v1", 17 | "proxyUrl": "http://localhost:9000" 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /arguegame/README.md: -------------------------------------------------------------------------------- 1 | # Read Me (arguegame) 2 | 3 | This folder is the project of the front-end of the game. Actually, only the subfolder /www should be deployed to the server, since the rest of the root directory of this project only contains development and cordova related files. 4 | 5 | This project is an IonicFramework based project, and thus, can be extended locally by running "ionic serve" in this folder, after installing the Ionic CLI. -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/Component.StaticContentContinueButton.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{'CONTINUE'|translate}} 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/Views/LevelComplete.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{'YAY'|translate}}

4 |

{{'LEVEL_COMPLETED'|translate}}

5 |

{{'YOU_NOW_HAVE'|translate}} {{'COINS'|translate}}!

6 |
7 | 8 |
9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/Views/RoundDone.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ acceptedInputMessage }}

4 | 5 |

{{'COINS_FOR_YOU'|translate}}

6 | +{{ shownPoints }} 7 |
8 |
9 | -------------------------------------------------------------------------------- /arguegame/hooks/uglify-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "alwaysRun": false, 3 | "recursiveFolderSearch": true, 4 | "foldersToProcess": [ 5 | "js", 6 | "css" 7 | ], 8 | "uglifyJsOptions": { 9 | "compress": { 10 | "drop_console": true 11 | }, 12 | "fromString": true 13 | }, 14 | "cleanCssOptions": { 15 | "noAdvanced": true, 16 | "keepSpecialComments": 0 17 | } 18 | } -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/ios/IonicKeyboard.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface IonicKeyboard : CDVPlugin { 4 | @protected 5 | id _keyboardShowObserver, _keyboardHideObserver; 6 | } 7 | 8 | @property (readwrite, assign) BOOL hideKeyboardAccessoryBar; 9 | @property (readwrite, assign) BOOL disableScroll; 10 | //@property (readwrite, assign) BOOL styleDark; 11 | 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /arguegame/www/Views/Registration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

{{'REGISTRATION'|translate}}

5 |
6 | 7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/Views/RoundSuccess.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ correctInputMessage }}

4 |

{{'HURRAY'|translate}},

5 | 6 |

{{'COINS_FOR_YOU'|translate}}

7 | +{{ shownPoints }} 8 |
9 |
10 | -------------------------------------------------------------------------------- /arguegame/www/Views/UserProgress.html: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |

Hey, {{ user.user}}!

10 |

You have {{ currency }}{{ user.customData.points }}.

11 | 12 | 13 | 14 | 15 |

{{myNewChart}}

16 | 17 |
18 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/scss/_backdrop.scss: -------------------------------------------------------------------------------- 1 | 2 | .backdrop { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $z-index-backdrop; 7 | 8 | width: 100%; 9 | height: 100%; 10 | 11 | background-color: $loading-backdrop-bg-color; 12 | 13 | visibility: hidden; 14 | opacity: 0; 15 | 16 | &.visible { 17 | visibility: visible; 18 | } 19 | &.active { 20 | opacity: 1; 21 | } 22 | 23 | @include transition($loading-backdrop-fadein-duration opacity linear); 24 | } 25 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.3.6", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": {}, 7 | "homepage": "https://github.com/angular/bower-angular", 8 | "_release": "1.3.6", 9 | "_resolution": { 10 | "type": "version", 11 | "tag": "v1.3.6", 12 | "commit": "a525f1199d44c2aa6d69b1900d4a2e950adc5752" 13 | }, 14 | "_source": "git://github.com/angular/bower-angular.git", 15 | "_target": "1.3.6", 16 | "_originalSource": "angular" 17 | } -------------------------------------------------------------------------------- /arguegame/www/src/App/lib/Directives/errSrc.js: -------------------------------------------------------------------------------- 1 | angular.module("app").directive('errSrc', function() { 2 | return { 3 | link: function(scope, element, attrs) { 4 | 5 | scope.$watch(function() { 6 | return attrs['ngSrc']; 7 | }, function (value) { 8 | if (!value) { 9 | element.attr('src', attrs.errSrc); 10 | } 11 | }); 12 | 13 | element.bind('error', function() { 14 | element.attr('src', attrs.errSrc); 15 | }); 16 | } 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-ui-router/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-ui-router", 3 | "version": "0.2.13", 4 | "main": "./release/angular-ui-router.js", 5 | "dependencies": { 6 | "angular": ">= 1.0.8" 7 | }, 8 | "ignore": [ 9 | "**/.*", 10 | "node_modules", 11 | "bower_components", 12 | "component.json", 13 | "package.json", 14 | "lib", 15 | "config", 16 | "sample", 17 | "test", 18 | "tests", 19 | "ngdoc_assets", 20 | "Gruntfile.js", 21 | "files.js" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/README.md: -------------------------------------------------------------------------------- 1 | # ionic-bower 2 | 3 | Bower repository for [Ionic Framework](http://github.com/driftyco/ionic) 4 | 5 | ### Usage 6 | 7 | Include `js/ionic.bundle.js` to get ionic and all of its dependencies. 8 | 9 | Alternatively, include the individual ionic files with the dependencies separately. 10 | 11 | ### Versions 12 | 13 | To install the latest stable version, `bower install driftyco/ionic-bower#v1.0.0-beta.13` 14 | 15 | To install the latest nightly release, `bower install driftyco/ionic-bower#master` 16 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "components/flag-icon-css", 3 | "type": "component", 4 | "description": "CSS for vector based country flags", 5 | "license": "MIT", 6 | "authors":[ 7 | { 8 | "name": "Panayiotis Lipiridis (Lipis)", 9 | "email": "lipiridis@gmail.com" 10 | } 11 | ], 12 | "extra":{ 13 | "component":{ 14 | "name": "flag-icon-css", 15 | "files":[ 16 | "less/**", 17 | "css/**", 18 | "flags/**" 19 | ] 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/src/App/Controllers/ImprovedRankingController.js: -------------------------------------------------------------------------------- 1 | angular.module('ui.controllers').controller('ImprovedRankingController', function($scope,$timeout){ 2 | 3 | $timeout(function () { 4 | $("#arg-improved-ranking .current-ranking").sparkle({ 5 | color: "white", 6 | count: 20, 7 | overlap: 10, 8 | speed: 1, 9 | minSize: 5, 10 | maxSize: 20, 11 | direction: "both" 12 | }).trigger("start.sparkle"); 13 | },2500); 14 | 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | before_install: 5 | - npm install -g gulp bower 6 | - bower install 7 | - npm install 8 | notifications: 9 | email: false 10 | deploy: 11 | provider: npm 12 | email: paolo.enrico.bernasconi@gmail.com 13 | api_key: 14 | secure: dBjQuYwAMqzziqwKKzntnQGKT3LLK+U/ZUuAHvemuuMYHlXcJSwO6gqBcGynGVjzUbq6ONJ4orDqSdicjJXgOXzjJ6PeP5KQzcQ4MHW2ZEnaEr/Wyu81GbwgivOmvF6kJj+7o/oLHSmrSVVXPTxxKNH+5K3CpLlzxaJmCO1UpyI= 15 | on: 16 | tags: true 17 | branch: master 18 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/mocks/datePicker.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @ngdoc service 3 | * @name ngCordovaMocks.cordovaDatePicker 4 | * 5 | * @description 6 | * A service for testing datepicker features 7 | * in an app build with ngCordova. 8 | */ 9 | ngCordovaMocks.factory('$cordovaDatePicker', function ($q) { 10 | return { 11 | show: function (options) { 12 | var q = $q.defer(); 13 | options = options || {date: new Date(), mode: 'date'}; 14 | q.resolve(options.date); 15 | return q.promise; 16 | } 17 | }; 18 | }); 19 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-certificates/runIntegrationTests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cwd=$(pwd) 3 | cd .. 4 | rm -rf cordova-test-app 5 | git clone https://github.com/hypery2k/cordova-demo-app.git cordova-test-app 6 | cd cordova-test-app 7 | npm install 8 | bower install 9 | echo "Building vanilla cordova app" 10 | grunt "ci:$PLATFORM" "$PLATFORM" 11 | echo "Adding plugin" 12 | cordova plugin add ../cordova-certificate-plugin/ 13 | echo "Building vanilla cordova app with added plugin" 14 | grunt "$PLATFORM" 15 | echo "Changing back to plugin directy: "$cwd 16 | cd $cwd -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /admintools/Readme.md: -------------------------------------------------------------------------------- 1 | This directory contains scripts and other tools that facilitate administrative tasks. 2 | 3 | Creating virtualenv and installing python libraries: 4 | 5 | ``` 6 | $ virtualenv env-python3 --python=python3 7 | $ source env-python3/bin/activate 8 | $ pip3 install pymongo==3.4.0 9 | ``` 10 | 11 | ## handle_spam_reports.py 12 | 13 | This interactive script can be used to manage the spam reports that have been created by players. You can decide to delete arguments or change the gold label of arguments. 14 | 15 | Usage: $ python3 handle_spam_reports.py 16 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/mocks/capture.spec.js: -------------------------------------------------------------------------------- 1 | describe('ngCordovaMocks', function() { 2 | beforeEach(function() { 3 | module('ngCordovaMocks'); 4 | }); 5 | 6 | describe('cordovaCapture', function () { 7 | var $cordovaCapture = null; 8 | var $timeout = null; 9 | var $rootScope = null; 10 | 11 | beforeEach(inject(function (_$timeout_, _$rootScope_, _$cordovaCapture_) { 12 | $cordovaCapture = _$cordovaCapture_; 13 | $timeout = _$timeout_; 14 | $rootScope = _$rootScope_; 15 | })); 16 | 17 | it('should do something', function() { 18 | }); 19 | }); 20 | }) -------------------------------------------------------------------------------- /mongoscripts/argotarioTopics.js: -------------------------------------------------------------------------------- 1 | // outputs a list of topics (tab separated to paste into a spreadsheet) 2 | 3 | db = connect('localhost:27017/admin'); 4 | db.auth('admin','some_randomly_generated_safe_password'); 5 | db = db.getSiblingDB('argotario'); 6 | 7 | var cursor = db.getCollection('topics').find({}); 8 | while(cursor.hasNext()){ 9 | var topic = cursor.next(); 10 | var domain = db.getCollection('domains').findOne({'_id': topic.out_belongsTo[0]}); 11 | //print(topic.title); 12 | //print(domain.title.en); 13 | print(topic.title + "\t" + domain.title.en); 14 | } 15 | -------------------------------------------------------------------------------- /arguegame/hooks/after_plugin_add/010_register_plugin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Push plugins to cordovaPlugins array after_plugin_add 5 | */ 6 | var fs = require('fs'); 7 | var packageJSON = require('../../package.json'); 8 | 9 | packageJSON.cordovaPlugins = packageJSON.cordovaPlugins || []; 10 | process.env.CORDOVA_PLUGINS.split(',').forEach(function (plugin) { 11 | if(packageJSON.cordovaPlugins.indexOf(plugin) == -1) { 12 | packageJSON.cordovaPlugins.push(plugin); 13 | } 14 | }); 15 | 16 | fs.writeFileSync('package.json', JSON.stringify(packageJSON, null, 2)); 17 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/splashscreen.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add org.apache.cordova.splashscreen 2 | // link : https://github.com/apache/cordova-plugin-splashscreen/blob/master/doc/index.md 3 | 4 | angular.module('ngCordova.plugins.splashscreen', []) 5 | 6 | .factory('$cordovaSplashscreen', [function () { 7 | 8 | return { 9 | hide: function () { 10 | return navigator.splashscreen.hide(); 11 | }, 12 | 13 | show: function () { 14 | return navigator.splashscreen.show(); 15 | } 16 | }; 17 | 18 | }]); 19 | -------------------------------------------------------------------------------- /argueserver/plugins/languages.py: -------------------------------------------------------------------------------- 1 | from bson import son 2 | import interfaces 3 | import numpy as np 4 | import random 5 | 6 | 7 | class Languages(interfaces.Plugin): 8 | """ 9 | Plugin for the languages-collection 10 | """ 11 | 12 | def get_titles(self, p): 13 | languages = self.languages.find({}, {'title': 1}) 14 | return languages or None 15 | 16 | 17 | def getHandler(database): 18 | """ 19 | a function instantiating and returning this plugin 20 | """ 21 | return Languages(database, 'languages', public_endpoint_extensions=['get_titles']) 22 | -------------------------------------------------------------------------------- /mongoscripts/addLanguageToDocuments.js: -------------------------------------------------------------------------------- 1 | // adds a language field to each topic (default value is English) 2 | 3 | db = connect('localhost:27017/admin'); 4 | db.auth('admin','some_randomly_generated_safe_password'); 5 | db = db.getSiblingDB('argotario'); 6 | 7 | db.getCollection("topics").updateMany({'out_language': {$exists : false}}, {$set: {'out_language': 'en'}}); 8 | db.getCollection("arguments").updateMany({'out_language': {$exists : false}}, {$set: {'out_language': 'en'}}); 9 | db.getCollection("sessions").updateMany({'out_language': {$exists : false}}, {$set: {'out_language': 'en'}}); 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/autolink.h: -------------------------------------------------------------------------------- 1 | #ifndef JSON_AUTOLINK_H_INCLUDED 2 | # define JSON_AUTOLINK_H_INCLUDED 3 | 4 | # include "config.h" 5 | 6 | # ifdef JSON_IN_CPPTL 7 | # include 8 | # endif 9 | 10 | # if !defined(JSON_NO_AUTOLINK) && !defined(JSON_DLL_BUILD) && !defined(JSON_IN_CPPTL) 11 | # define CPPTL_AUTOLINK_NAME "json" 12 | # undef CPPTL_AUTOLINK_DLL 13 | # ifdef JSON_DLL 14 | # define CPPTL_AUTOLINK_DLL 15 | # endif 16 | # include "autolink.h" 17 | # endif 18 | 19 | #endif // JSON_AUTOLINK_H_INCLUDED 20 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-animate/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-animate", 3 | "version": "1.3.6", 4 | "main": "./angular-animate.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.6" 8 | }, 9 | "homepage": "https://github.com/angular/bower-angular-animate", 10 | "_release": "1.3.6", 11 | "_resolution": { 12 | "type": "version", 13 | "tag": "v1.3.6", 14 | "commit": "d38c9593911d231cce076c1b64f823e572813214" 15 | }, 16 | "_source": "https://github.com/angular/bower-angular-animate.git", 17 | "_target": "1.3.6", 18 | "_originalSource": "angular-animate" 19 | } -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular-sanitize/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-sanitize", 3 | "version": "1.3.6", 4 | "main": "./angular-sanitize.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.3.6" 8 | }, 9 | "homepage": "https://github.com/angular/bower-angular-sanitize", 10 | "_release": "1.3.6", 11 | "_resolution": { 12 | "type": "version", 13 | "tag": "v1.3.6", 14 | "commit": "ccd773f961fa1fadc8d728c45a2635c73d34fb2d" 15 | }, 16 | "_source": "https://github.com/angular/bower-angular-sanitize.git", 17 | "_target": "1.3.6", 18 | "_originalSource": "angular-sanitize" 19 | } -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /argueserver/plugins/domains.py: -------------------------------------------------------------------------------- 1 | import interfaces 2 | 3 | 4 | class Domains(interfaces.Plugin): 5 | """ 6 | Plugin for the domain-collection 7 | """ 8 | 9 | def get_by_topic(self, topic): 10 | """ 11 | returns a domain for a given topic-document 12 | """ 13 | if not 'out_belongsTo' in topic: 14 | return None 15 | return self.domains.find({"_id": { '$in' : topic['out_belongsTo']}}) 16 | 17 | def getHandler(database): 18 | """ 19 | a function instantiating and returning this plugin 20 | """ 21 | return Domains(database, 'domains') 22 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/kw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/hooks/after_plugin_rm/010_deregister_plugin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Remove plugins from cordovaPlugins array after_plugin_rm 5 | */ 6 | var fs = require('fs'); 7 | var packageJSON = require('../../package.json'); 8 | 9 | packageJSON.cordovaPlugins = packageJSON.cordovaPlugins || []; 10 | 11 | process.env.CORDOVA_PLUGINS.split(',').forEach(function (plugin) { 12 | var index = packageJSON.cordovaPlugins.indexOf(plugin); 13 | if (index > -1) { 14 | packageJSON.cordovaPlugins.splice(index, 1); 15 | } 16 | }); 17 | 18 | fs.writeFile('package.json', JSON.stringify(packageJSON, null, 2)); 19 | -------------------------------------------------------------------------------- /arguegame/www/GameContent/Rounds/FallacyInformation/FallacyInformation.html: -------------------------------------------------------------------------------- 1 | 2 |

3 |
4 | 5 |
6 | {{'WHICH_FALLACIES_DO_EXIST' | translate}} 7 | {{'YOU_SHOULD_KNOW_THE_FOLLOWING' | translate}} 8 |
9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /arguegame/plugins/browser.json: -------------------------------------------------------------------------------- 1 | { 2 | "prepare_queue": { 3 | "installed": [], 4 | "uninstalled": [] 5 | }, 6 | "config_munge": { 7 | "files": {} 8 | }, 9 | "installed_plugins": { 10 | "cordova-plugin-certificates": { 11 | "PACKAGE_NAME": "me.raffael.mobile.argotario" 12 | }, 13 | "cordova-plugin-inappbrowser": { 14 | "PACKAGE_NAME": "me.raffael.mobile.argotario" 15 | }, 16 | "ionic-plugin-keyboard": { 17 | "PACKAGE_NAME": "me.raffael.mobile.argotario" 18 | } 19 | }, 20 | "dependent_plugins": {} 21 | } -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ly.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/appVersion.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/whiteoctober/cordova-plugin-app-version.git 2 | // link : https://github.com/whiteoctober/cordova-plugin-app-version 3 | 4 | angular.module('ngCordova.plugins.appVersion', []) 5 | 6 | .factory('$cordovaAppVersion', ['$q', function ($q) { 7 | 8 | return { 9 | getAppVersion: function () { 10 | var q = $q.defer(); 11 | cordova.getAppVersion(function (version) { 12 | q.resolve(version); 13 | }); 14 | 15 | return q.promise; 16 | } 17 | }; 18 | }]); 19 | -------------------------------------------------------------------------------- /doc/startArgotario_osx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # you need to install ttab 3 | 4 | # SHORT .SH TO START THE ENVIRONMET FOR ARGUTARIO 5 | echo "Argutario development environment" 6 | echo "Start Arguaturio for local development" 7 | 8 | # CHECK IF ALL NEEDED LIBS EXIST 9 | echo "Check necessary libs" 10 | # TODO 11 | 12 | # START MONGODB 13 | echo "Start MongoDB" 14 | ttab "mongod --auth --port 27017 --dbpath ./mongodb/" 15 | 16 | # START ARGUTARIO CLIENT 17 | echo "Start Argutario" 18 | ttab "python3 ./argueserver/startServer.py" 19 | 20 | # START IONIC 21 | echo "Start for local test ionic" 22 | cd arguegame 23 | ttab "ionic serve --lab" -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/is.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /arguegame/www/Views/ForeignProfile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | 5 | {{'PROFILE_OF'|translate}} {{ visitedForeignUser.user}} 6 | 7 |

8 | 9 |
10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/pinDialog.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/Paldom/PinDialog.git 2 | // link : https://github.com/Paldom/PinDialog 3 | 4 | angular.module('ngCordova.plugins.pinDialog', []) 5 | 6 | .factory('$cordovaPinDialog', ['$q', '$window', function ($q, $window) { 7 | 8 | return { 9 | prompt: function (message, title, buttons) { 10 | var q = $q.defer(); 11 | 12 | $window.plugins.pinDialog.prompt(message, function (res) { 13 | q.resolve(res); 14 | }, title, buttons); 15 | 16 | return q.promise; 17 | } 18 | }; 19 | }]); 20 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/scss/ionicons/ionicons.scss: -------------------------------------------------------------------------------- 1 | @import "ionicons-variables"; 2 | /*! 3 | Ionicons, v#{$ionicons-version} 4 | Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ 5 | https://twitter.com/benjsperry https://twitter.com/ionicframework 6 | MIT License: https://github.com/driftyco/ionicons 7 | 8 | Android-style icons originally built by Google’s 9 | Material Design Icons: https://github.com/google/material-design-icons 10 | used under CC BY http://creativecommons.org/licenses/by/4.0/ 11 | Modified icons to fit ionicon’s grid from original. 12 | */ 13 | 14 | @import "ionicons-font"; 15 | @import "ionicons-icons"; 16 | -------------------------------------------------------------------------------- /arguegame/www/Views/Authentication.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Login

4 |
5 | 6 | 7 | 8 | 9 |

10 | {{'NO_ACCOUNT_YET'|translate}} 11 | 12 | {{'CREATE_AN_ACCOUNT'|translate}} 13 | 14 |

15 | 16 |
17 |
18 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/tz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/config-web-prod.js: -------------------------------------------------------------------------------- 1 | kBaseURL = window.location.protocol + '//argue.ukp.informatik.tu-darmstadt.de'; 2 | kBaasBoxURL = kBaseURL+'/argueapi/v1'; 3 | kBaasBoxAppCode = 'Argue3252'; 4 | 5 | kCollectionDomains = "domains"; 6 | kCollectionArguments = "arguments"; 7 | kCollectionArticles = "articles"; 8 | kCollectionTopics = "topics"; 9 | kCollectionFallacies = "fallacies"; 10 | kCollectionFeedback = "feedback"; 11 | kCollectionEvents = "events"; 12 | kCollectionVotings = "votings"; 13 | kCollectionRankingOverTime = "rankingOverTime"; 14 | kCollectionPointsOverTime = "pointsOverTime"; 15 | kCollectionSpamReports = "spamReports"; 16 | 17 | kAllowRegistration = false; 18 | -------------------------------------------------------------------------------- /arguegame/www/lib/ionic/scss/_split-pane.scss: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Split Pane 4 | * -------------------------------------------------- 5 | */ 6 | 7 | .split-pane { 8 | @include display-flex(); 9 | @include align-items(stretch); 10 | width: 100%; 11 | height: 100%; 12 | } 13 | 14 | .split-pane-menu { 15 | @include flex(0, 0, $split-pane-menu-width); 16 | 17 | overflow-y: auto; 18 | width: $split-pane-menu-width; 19 | height: 100%; 20 | border-right: 1px solid $split-pane-menu-border-color; 21 | 22 | @media all and (max-width: 568px) { 23 | border-right: none; 24 | } 25 | } 26 | 27 | .split-pane-content { 28 | @include flex(1, 0, auto); 29 | } 30 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/sms.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/aharris88/phonegap-sms-plugin.git 2 | // link : https://github.com/aharris88/phonegap-sms-plugin 3 | 4 | angular.module('ngCordova.plugins.sms', []) 5 | 6 | .factory('$cordovaSms', ['$q', function ($q) { 7 | 8 | return { 9 | send: function (number, message, intent) { 10 | var q = $q.defer(); 11 | sms.send(number, message, intent, function (res) { 12 | q.resolve(res); 13 | }, function (err) { 14 | q.reject(err); 15 | }); 16 | return q.promise; 17 | } 18 | }; 19 | 20 | }]); 21 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/spinnerDialog.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/Paldom/SpinnerDialog.git 2 | // link : https://github.com/Paldom/SpinnerDialog 3 | 4 | angular.module('ngCordova.plugins.spinnerDialog', []) 5 | 6 | .factory('$cordovaSpinnerDialog', ['$window', function ($window) { 7 | 8 | return { 9 | show: function (title, message, fixed) { 10 | fixed = fixed || false; 11 | return $window.plugins.spinnerDialog.show(title, message, fixed); 12 | }, 13 | hide: function () { 14 | return $window.plugins.spinnerDialog.hide(); 15 | } 16 | }; 17 | 18 | }]); 19 | -------------------------------------------------------------------------------- /arguegame/www/src/App/Controllers/BrowserController.js: -------------------------------------------------------------------------------- 1 | angular.module('ui.controllers').controller('BrowserController', function($scope){ 2 | 3 | $scope.historyGo = function(delta) { 4 | var iframe = angular.element('#browser-view')[0]; 5 | iframe.contentWindow.history.go(delta); // back 6 | } 7 | 8 | $scope.$watch('browserURL',function () { 9 | var iframe = angular.element('#browser-view')[0]; 10 | if ($scope.browserURL) { 11 | iframe.src=$scope.browserURL; 12 | } 13 | }); 14 | 15 | $scope.openInNativeBrowser = function () { 16 | window.open($scope.browserURL, "_system"); 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /arguegame/www/config-device-prod.js: -------------------------------------------------------------------------------- 1 | kBaseURL = 'https://'+'//argue.ukp.informatik.tu-darmstadt.de'; 2 | kBaasBoxURL = kBaseURL+'/argueapi/v1'; 3 | kBaasBoxAppCode = 'randomly_generated_password'; 4 | 5 | kCollectionDomains = "domains"; 6 | kCollectionArguments = "arguments"; 7 | kCollectionArticles = "articles"; 8 | kCollectionTopics = "topics"; 9 | kCollectionFallacies = "fallacies"; 10 | kCollectionFeedback = "feedback"; 11 | kCollectionEvents = "events"; 12 | kCollectionVotings = "votings"; 13 | kCollectionRankingOverTime = "rankingOverTime"; 14 | kCollectionPointsOverTime = "pointsOverTime"; 15 | kCollectionSpamReports = "spamReports"; 16 | 17 | kAllowRegistration = true; 18 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ax.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /arguegame/plugins/cordova-plugin-certificates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-certificates", 3 | "version": "0.6.4-dev", 4 | "description": "Cordova Certificate Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-certificates", 7 | "platforms": [ 8 | "android", 9 | "ios" 10 | ] 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/hypery2k/cordova-certificate-plugin.git" 15 | }, 16 | "keywords": [ 17 | "cordova", 18 | "certificates", 19 | "ecosystem:cordova", 20 | "cordova-android", 21 | "cordova-ios" 22 | ], 23 | "author": "Martin Reinhardt", 24 | "license": "MIT" 25 | } 26 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/appAvailability.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/ohh2ahh/AppAvailability.git 2 | // link : https://github.com/ohh2ahh/AppAvailability 3 | 4 | angular.module('ngCordova.plugins.appAvailability', []) 5 | 6 | .factory('$cordovaAppAvailability', ['$q', function ($q) { 7 | 8 | return { 9 | check: function (urlScheme) { 10 | var q = $q.defer(); 11 | 12 | appAvailability.check(urlScheme, function (result) { 13 | q.resolve(result); 14 | }, function (err) { 15 | q.reject(err); 16 | }); 17 | 18 | return q.promise; 19 | } 20 | }; 21 | }]); 22 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/mocks/splashscreen.spec.js: -------------------------------------------------------------------------------- 1 | describe('ngCordovaMocks', function() { 2 | beforeEach(function() { 3 | module('ngCordovaMocks'); 4 | }); 5 | 6 | describe('cordovaSplashscreen', function () { 7 | var $cordovaSplashscreen = null; 8 | 9 | beforeEach(inject(function (_$cordovaSplashscreen_) { 10 | $cordovaSplashscreen = _$cordovaSplashscreen_; 11 | })); 12 | 13 | it('should hide the splash screen', function() { 14 | $cordovaSplashscreen.hide(); 15 | expect(true).toBe(true); 16 | }); 17 | 18 | it('should show the splash screen', function() { 19 | $cordovaSplashscreen.show(); 20 | expect(true).toBe(true); 21 | }); 22 | }); 23 | }) -------------------------------------------------------------------------------- /arguegame/www/GameContent/StaticContent/FallacyRecognition.html: -------------------------------------------------------------------------------- 1 | 2 |

3 |
4 | 5 |
6 | 7 | 8 | {{'HARD'|translate}} 9 | 10 | {{'YOU_MASTERED_ALL_TYPES'|translate}} 11 |
{{'PROVE_YOUR_MASTERY'|translate}} 12 |
13 | {{'YOU_CAN_PLAY_THIS_ROUND_OVER_AND_OVER'|translate}} 14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/ps.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/datepicker.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/VitaliiBlagodir/cordova-plugin-datepicker.git 2 | // link : https://github.com/VitaliiBlagodir/cordova-plugin-datepicker 3 | 4 | angular.module('ngCordova.plugins.datePicker', []) 5 | .factory('$cordovaDatePicker', ['$window', '$q', function ($window, $q) { 6 | return { 7 | show: function (options) { 8 | var q = $q.defer(); 9 | options = options || {date: new Date(), mode: 'date'}; 10 | $window.datePicker.show(options, function (date) { 11 | q.resolve(date); 12 | }); 13 | return q.promise; 14 | } 15 | }; 16 | }]); 17 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/test/mocks/statusbar.spec.js: -------------------------------------------------------------------------------- 1 | describe('ngCordovaMocks', function() { 2 | beforeEach(function() { 3 | module('ngCordovaMocks'); 4 | }); 5 | 6 | describe('cordovaStatusbar', function () { 7 | var $cordovaStatusbar = null; 8 | 9 | beforeEach(inject(function (_$cordovaStatusbar_) { 10 | $cordovaStatusbar = _$cordovaStatusbar_; 11 | })); 12 | 13 | it('should hide the status bar', function() { 14 | $cordovaStatusbar.hide(); 15 | expect($cordovaStatusbar.isVisible()).toBe(false); 16 | }); 17 | 18 | it('should show the status bar', function() { 19 | $cordovaStatusbar.show(); 20 | expect($cordovaStatusbar.isVisible()).toBe(true); 21 | }); 22 | }); 23 | }) -------------------------------------------------------------------------------- /arguegame/www/src/App/lib/Services/VotingStore.js: -------------------------------------------------------------------------------- 1 | /** The UserAccount is a service that provides access to the gameConfiguration.js file. */ 2 | angular.module('arg.services').provider('VotingStore', function() { 3 | this.$get = function($http,$q,$rootScope) { return { 4 | 5 | vote: function(params) { 6 | return $q(function (resolve,reject) { 7 | BaasBox.callPlugin('get','votings/vote',params||{}).done(function (result) { 8 | resolve(result.data); 9 | }).fail(function (error) { 10 | reject({success: false, error: error}); 11 | }); 12 | }); 13 | } 14 | 15 | 16 | }} 17 | }); 18 | -------------------------------------------------------------------------------- /arguegame/www/.jslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "ass": true, 3 | "bitwise": true, 4 | "browser": true, 5 | "closure": true, 6 | "continue": true, 7 | "couch": true, 8 | "debug": true, 9 | "devel": true, 10 | "eqeq": true, 11 | "evil": true, 12 | "forin": true, 13 | "indent": 4, 14 | "maxerr": 50, 15 | "maxlen": true, 16 | "newcap": true, 17 | "node": true, 18 | "nomen": true, 19 | "passfail": false, 20 | "plusplus": true, 21 | "predef": [ 22 | "angular", 23 | "$", 24 | "$scope" 25 | ], 26 | "maxlen": 300, 27 | "regexp": true, 28 | "rhino": true, 29 | "sloppy": true, 30 | "stupid": true, 31 | "sub": true, 32 | "todo": true, 33 | "unparam": true, 34 | "vars": true, 35 | "white": true 36 | } 37 | -------------------------------------------------------------------------------- /arguegame/www/lib/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.3.6", 4 | "description": "HTML enhanced for web apps", 5 | "main": "angular.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/angular/angular.js.git" 12 | }, 13 | "keywords": [ 14 | "angular", 15 | "framework", 16 | "browser", 17 | "client-side" 18 | ], 19 | "author": "Angular Core Team ", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/angular/angular.js/issues" 23 | }, 24 | "homepage": "http://angularjs.org" 25 | } 26 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/hooks/before_platform_add/init_directories.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * On a fresh clone, the local platforms/ and plugins/ directories will be 5 | * missing, so ensure they get created before the first platform is added. 6 | */ 7 | var fs = require('fs'); 8 | var path = require('path'); 9 | 10 | var platformsDir = path.resolve(__dirname, '../../platforms'); 11 | var pluginsDir = path.resolve(__dirname, '../../plugins'); 12 | 13 | try { 14 | fs.mkdirSync(platformsDir, function (err) { 15 | if (err) { console.error(err); } 16 | }); 17 | } catch(ex) {} 18 | 19 | try { 20 | fs.mkdirSync(pluginsDir, function (err) { 21 | if (err) { console.error(err); } 22 | }); 23 | } catch(ex) {} 24 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/fo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/imagePicker.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add https://github.com/wymsee/cordova-imagePicker.git 2 | // link : https://github.com/wymsee/cordova-imagePicker 3 | 4 | angular.module('ngCordova.plugins.imagePicker', []) 5 | 6 | .factory('$cordovaImagePicker', ['$q', '$window', function ($q, $window) { 7 | 8 | return { 9 | getPictures: function (options) { 10 | var q = $q.defer(); 11 | 12 | $window.imagePicker.getPictures(function (results) { 13 | q.resolve(results); 14 | }, function (error) { 15 | q.reject(error); 16 | }, options); 17 | 18 | return q.promise; 19 | } 20 | }; 21 | }]); 22 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/bv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/mocks/keyboard.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @ngdoc service 3 | * @name ngCordovaMocks.cordovaKeyboard 4 | * 5 | * @description 6 | * A service for testing device keyboard features 7 | * in an app build with ngCordova. 8 | **/ 9 | ngCordovaMocks.factory('$cordovaKeyboard', function() { 10 | var isVisible=false; 11 | 12 | return { 13 | hideAccessoryBar: function (bool) { 14 | }, 15 | 16 | close: function () { 17 | isVisible = false; 18 | }, 19 | 20 | show: function () { 21 | isVisible = true; 22 | }, 23 | 24 | disableScroll: function (bool) { 25 | }, 26 | 27 | isVisible: function () { 28 | return isVisible; 29 | } 30 | 31 | }; 32 | }); 33 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/gg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/sy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/bs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/dj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/cl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/1x1/tr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arguegame/www/lib/flag-icon-css/flags/4x3/tl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arguegame/www/lib/ng-cordova/src/plugins/vibration.js: -------------------------------------------------------------------------------- 1 | // install : cordova plugin add org.apache.cordova.vibration 2 | // link : https://github.com/apache/cordova-plugin-vibration/blob/master/doc/index.md 3 | 4 | angular.module('ngCordova.plugins.vibration', []) 5 | 6 | .factory('$cordovaVibration', [function () { 7 | 8 | return { 9 | vibrate: function (times) { 10 | return navigator.notification.vibrate(times); 11 | }, 12 | vibrateWithPattern: function (pattern, repeat) { 13 | return navigator.notification.vibrateWithPattern(pattern, repeat); 14 | }, 15 | cancelVibration: function () { 16 | return navigator.notification.cancelVibration(); 17 | } 18 | }; 19 | }]); 20 | --------------------------------------------------------------------------------