├── .formatter.exs ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── .babelrc ├── assets │ └── package-lock.json ├── css │ ├── app.scss │ ├── colors.css │ ├── components │ │ ├── breadcrumbs.css │ │ ├── ground.css │ │ ├── modal.css │ │ ├── popup.css │ │ └── support.css │ ├── const.css │ ├── features │ │ ├── achievements.css │ │ ├── book.css │ │ ├── endgames.css │ │ └── study.css │ ├── icons.css │ ├── inputs.css │ ├── navigation.css │ ├── progress_bar.css │ └── skeleton.css ├── js │ ├── app.js │ ├── blind_tactics.js │ ├── chessclicker.js │ ├── components │ │ ├── achievements.js │ │ ├── chessboard_settings.js │ │ ├── hamburger.js │ │ ├── modal.js │ │ ├── sound_settings.js │ │ └── support.js │ ├── endgames.js │ ├── live_view.js │ ├── modules │ │ ├── chess_utils.js │ │ ├── ground.js │ │ ├── hash.js │ │ ├── info_boxes.js │ │ ├── localstorage.js │ │ ├── overlays.js │ │ ├── random.js │ │ ├── security_related.js │ │ ├── sleep.js │ │ ├── sounds.js │ │ ├── stockfish.js │ │ ├── tree.js │ │ ├── tree_from_pgn.js │ │ ├── tree_utils.js │ │ └── utils.js │ ├── pieceless_tactics.js │ ├── play_stockfish.js │ ├── remember_lichess_study.js │ ├── socket.js │ ├── study.js │ └── tactics.js ├── package.json ├── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── css │ │ ├── april-fools.21.css │ │ ├── chessground.css │ │ ├── features │ │ │ └── pieceless.css │ │ ├── fonts │ │ │ ├── Creepster │ │ │ │ ├── Creepster-Regular.ttf │ │ │ │ └── OFL.txt │ │ │ ├── bungee-outline │ │ │ │ ├── BungeeOutline-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ └── README.md │ │ │ ├── dancing-script │ │ │ │ ├── DancingScript-VariableFont_wght.ttf │ │ │ │ ├── OFL.txt │ │ │ │ ├── README.txt │ │ │ │ └── static │ │ │ │ │ ├── DancingScript-Bold.ttf │ │ │ │ │ ├── DancingScript-Medium.ttf │ │ │ │ │ ├── DancingScript-Regular.ttf │ │ │ │ │ └── DancingScript-SemiBold.ttf │ │ │ └── listudy │ │ │ │ ├── license.md │ │ │ │ ├── listudy.sfd │ │ │ │ └── listudy.woff2 │ │ ├── halloween.css │ │ ├── new_year.css │ │ ├── select2.min.css │ │ └── xmas.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── images │ │ ├── boards │ │ │ ├── blue.svg │ │ │ ├── brown.svg │ │ │ ├── green.svg │ │ │ └── ic.svg │ │ ├── features │ │ │ ├── blind │ │ │ │ ├── board-state.png │ │ │ │ ├── move-list.png │ │ │ │ └── solved.png │ │ │ ├── doge │ │ │ │ ├── study.png │ │ │ │ └── tactics.png │ │ │ └── pieceless │ │ │ │ ├── history.png │ │ │ │ ├── moves.png │ │ │ │ └── pieces.png │ │ ├── phoenix.png │ │ └── pieces │ │ │ ├── cburnett │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ ├── chessnut │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ ├── letter │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ ├── merida │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ ├── pirouetti │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ ├── pixel │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ │ │ └── shapes │ │ │ ├── bB.svg │ │ │ ├── bK.svg │ │ │ ├── bN.svg │ │ │ ├── bP.svg │ │ │ ├── bQ.svg │ │ │ ├── bR.svg │ │ │ ├── wB.svg │ │ │ ├── wK.svg │ │ │ ├── wN.svg │ │ │ ├── wP.svg │ │ │ ├── wQ.svg │ │ │ └── wR.svg │ ├── js │ │ ├── confetti.browser.min.js │ │ ├── holidays │ │ │ ├── april-fools.21.js │ │ │ └── new-year.js │ │ ├── jquery-3.5.1.min.js │ │ ├── pgnviewer │ │ │ ├── README.md │ │ │ ├── pgnv-assets │ │ │ │ ├── 00944349f6905c3690cba811dcb3559a.png │ │ │ │ ├── 01544aaa15beb3337fae2d0ef7ee405e.png │ │ │ │ ├── 046bcd06bec984f7c0d8c1bb1ffc9e01.png │ │ │ │ ├── 04779d38df463e584b7c33ff51eec1de.png │ │ │ │ ├── 054db10408d67fe0a8583ba5fdb3337f.png │ │ │ │ ├── 06a6ad4cadfd702d1afdb9419cb10896.png │ │ │ │ ├── 0843f9c456563572981bd2d1a0e1dba0.svg │ │ │ │ ├── 0992f7dc96471b13f65b19fd70c5d378.png │ │ │ │ ├── 0a3d4efab1e641438f4c7b132ac8b5ae.png │ │ │ │ ├── 0a8f6281047c1819867ebdf872b4f2e3.png │ │ │ │ ├── 0b4c4e3052f6ceab27cd3fa0218168e2.svg │ │ │ │ ├── 100f3a6cc4729ee5eefe3d3124fe86b8.png │ │ │ │ ├── 1274c5cfcf2f4866ec364813e11c7a6b.png │ │ │ │ ├── 1372cdf1c25d48e41275f9eaf5d3403e.png │ │ │ │ ├── 14e5b3e58dc3330b6820bf8286c3fbfb.png │ │ │ │ ├── 1507a3b1b26bd9f56e655dcd76710562.png │ │ │ │ ├── 158813035b30bd68ed951f339c0a2e2f.png │ │ │ │ ├── 16f45a4354f120dc857bfa7b3775d2e1.png │ │ │ │ ├── 176985210b5e35a409df99eb7042cca8.png │ │ │ │ ├── 1bd1638705a0eeff105da8912d136216.png │ │ │ │ ├── 1c0d5c37b2d358bf9c569f9f281ddb75.png │ │ │ │ ├── 1c55dd94232cff5d5ded04db6424546a.png │ │ │ │ ├── 1d58266f7d8ddd3529de7250657bf356.png │ │ │ │ ├── 1de9caeeb4538ce074a368741ed9e4b7.png │ │ │ │ ├── 1f049095285708377bfd206fe72c17da.png │ │ │ │ ├── 2053d1fa10d2cf6ff29d758adf8cbf46.png │ │ │ │ ├── 23c2dfd1e072d515b4b6d6ec35730b17.png │ │ │ │ ├── 243e5efbfbcd54559cbe340b1588e138.png │ │ │ │ ├── 289f78534d4b080898404cd161d23b26.png │ │ │ │ ├── 29e650be4c8045dd5f534262e4cf8f2c.png │ │ │ │ ├── 2baa6b588f718ccb4227bbef3e744657.svg │ │ │ │ ├── 2c0453fd48aac094e459b9e4f112d4dd.png │ │ │ │ ├── 2c4584f87585c66b43c0fd6f127b22f6.png │ │ │ │ ├── 2c5dc9dd2648b6e7a1292c9d2fbcf774.png │ │ │ │ ├── 2cfbd2e0b7cb769b0d21275281961d54.png │ │ │ │ ├── 2d5c2d6fa85a69ab93c5d4aa0a41bda9.png │ │ │ │ ├── 2dc79a6d508d391a032b1557e586e70a.svg │ │ │ │ ├── 2ff348d4f603927bec6b4a6374fb6ca4.png │ │ │ │ ├── 361a18fa50e1d5bc598b209631b59e14.png │ │ │ │ ├── 3904b6b413bf359066f9105ae333fd73.png │ │ │ │ ├── 3bbe863851bc321e667ce70b504db5b6.png │ │ │ │ ├── 3e11eef61ddb8bec6c3e785d60c5e5c5.png │ │ │ │ ├── 3e33c5fc3eb118258be6abf8a0177c8c.png │ │ │ │ ├── 42ef42ab45bc07a21769d8f4a9ec0d0e.png │ │ │ │ ├── 46c4b3a96cc14795302cad7319d0ca3d.svg │ │ │ │ ├── 47fb2c28cd6941656d1020997f423633.svg │ │ │ │ ├── 48fa6c940e72a44b89e2e151ec58cc8c.png │ │ │ │ ├── 493e139e7146cfa94b4195d26df99622.svg │ │ │ │ ├── 522b2105e379fba665399a5ef6273a0b.png │ │ │ │ ├── 5313edeff41aa028ed440ca6c6366b7a.png │ │ │ │ ├── 57948e5b84b287f0eb055a3b1908dde2.png │ │ │ │ ├── 589a984c3d2d88bb2847ffaebf2d0af8.svg │ │ │ │ ├── 5940bee407703e2a6f8167a24176ee5c.svg │ │ │ │ ├── 5ce9c7f0c0bc0171d3d4e9fdfb2a2b19.png │ │ │ │ ├── 601d2d49d87a9f9ceee94b0040685ad3.png │ │ │ │ ├── 62ac3e2b4cc35e0db5e681bd6c5252b4.png │ │ │ │ ├── 660841ff4000fcd7e1e022c7112eef64.png │ │ │ │ ├── 687666da8c0ee520d13b49c6baaf9f1b.png │ │ │ │ ├── 6a02a1c49545607ba85edd24b18ce089.png │ │ │ │ ├── 6a5db4e00551e268747b60589c01314a.svg │ │ │ │ ├── 6ac78c4b989ec37aba7f1efb7a2e120c.png │ │ │ │ ├── 6b4a33ededac0360ec5d3c25d97a65f3.png │ │ │ │ ├── 6b6e18afe6e6e6d909c0679d1c89bfbd.png │ │ │ │ ├── 6d2aa73eee0ac61087962d65328efc66.png │ │ │ │ ├── 6fc8b5ee550a60015d76105607531aab.png │ │ │ │ ├── 70b436b60ec1d3b3d62a5d7c6a18d981.svg │ │ │ │ ├── 72ce2510bf190a43c6b4b3f65edec798.svg │ │ │ │ ├── 76e67c910fe5073a3d3f56d216754d3d.png │ │ │ │ ├── 76febf8b40a90906f87f2ecf33a0a728.png │ │ │ │ ├── 798269813169a66231469904ee38147f.png │ │ │ │ ├── 7d2f077ca38ed701e9bdb81e96db4dc0.png │ │ │ │ ├── 7d41253d203df9be162f793efc13e82f.png │ │ │ │ ├── 7dfc6804eed27d99e02da7fa8caae4bb.png │ │ │ │ ├── 80a503c8e3ba1d48b7bbcb2e1ced77db.png │ │ │ │ ├── 8353c08b02ca237607b1af214c90302c.png │ │ │ │ ├── 84fe275551db19f91ea23ebf99d9b13f.png │ │ │ │ ├── 884b762513e1fc959be3e92fd92cb0a9.png │ │ │ │ ├── 8d8a311adcebc242dbfa5ac0757bae5d.png │ │ │ │ ├── 9a0ddaa677d620b208f72d17d928cb54.png │ │ │ │ ├── 9dc6398f3981f00d610e11e21a2f8b61.png │ │ │ │ ├── 9ecd94a016f31f4506b1e6bcc4adf69b.png │ │ │ │ ├── 9ecf39c8dc6a56c6358dd4a031d0f50b.png │ │ │ │ ├── a5a16b367926231b6079ae531371b789.svg │ │ │ │ ├── a6b84b7ff7563622b3587312b464cb3d.png │ │ │ │ ├── a83cc82b1edc901263ff82d67f1b4e3c.png │ │ │ │ ├── ab1adcab852c68789da5da6dc3acd160.png │ │ │ │ ├── add33ae082028ca56629c0be07716d1c.png │ │ │ │ ├── b069e38bd85cca00883f4dc89a5d018a.svg │ │ │ │ ├── b293b89af7f6debcf12589a55fe7d490.png │ │ │ │ ├── b2f4694749f5b78e0f82af2ae01c22a4.png │ │ │ │ ├── b367260b2f2a58d8c51d45d743270a0a.png │ │ │ │ ├── b65b126b59221bc8f93324c43f430aa3.png │ │ │ │ ├── b92625744bfcb8422ff6b2ddba5c5c60.png │ │ │ │ ├── b932499b2a7a0d2f856717eab441bf74.png │ │ │ │ ├── b9a4cad341c7c768ab336ede3831af77.svg │ │ │ │ ├── b9d72faea1809902a5303aa09b615472.png │ │ │ │ ├── bac8d982af701e4e27a594ef4b19761b.png │ │ │ │ ├── bcca53281f5b2361b187359ebd11e7a3.png │ │ │ │ ├── bdd0bdc80e917615ab6d26d25378379f.png │ │ │ │ ├── c0d96b333b7223ab64f3cde9a590d23d.svg │ │ │ │ ├── c1ec7c641d1689ec457f2891cb96b4e5.svg │ │ │ │ ├── c2521e326e0c28485c0370049c278768.png │ │ │ │ ├── c3c51134d49c59f92b1c4cff77ccc7b8.png │ │ │ │ ├── c41ea72351a52b357f1e795d551e1c0b.png │ │ │ │ ├── c4716f12775f660d82404d9f3cbd0dce.png │ │ │ │ ├── c5221bcd2766bdd8270831c0152cc84e.png │ │ │ │ ├── c61db0a990949079dbbbd2033a1620c8.png │ │ │ │ ├── c8fe58a4f309755cc2863b4d033dbeb4.svg │ │ │ │ ├── caa36f1a9f40e9ff098e1bac164143ce.svg │ │ │ │ ├── cc8cacc5bc2668333901a63517e403ea.png │ │ │ │ ├── cd9b79ead5cecf3afb7dd9fa881f9d2d.png │ │ │ │ ├── d45e8c4380c29962e4da2c094c02e027.svg │ │ │ │ ├── d74dc58fdf31d85591633f7c5293b4b1.png │ │ │ │ ├── d757e344e548ffcfc66f87e78c73ef95.png │ │ │ │ ├── d9f67d2b3f98e48ecf88a0fd499aeac1.png │ │ │ │ ├── da27044e9b245fbc0025f32c49ff3248.svg │ │ │ │ ├── e1a52addd489b6c0a5a82b9b016de84d.svg │ │ │ │ ├── e24792fc15269fee4c323453fb9ff672.png │ │ │ │ ├── e7189439f73760930360521b47b72677.png │ │ │ │ ├── e9593ef651e9ed3db862a4ded7b14ca5.png │ │ │ │ ├── ebf4e3861c0d3f71cb8f4ae21e3cb3a2.png │ │ │ │ ├── ecbd5c1dbc540cbba64fce6712403069.png │ │ │ │ ├── ecf03949721251a27de5145d331ff823.png │ │ │ │ ├── ef2849ccea574e31573162d7c9ebbb15.png │ │ │ │ ├── ef9075e0fcbc53458532839cd29a5ff3.png │ │ │ │ ├── f3c91b7aaf52ada7871d7ce1781bc3cb.png │ │ │ │ ├── f3e098c74e3f7badde09d43bf489dd74.png │ │ │ │ ├── f4da4c751e640fa08c848a3afe123355.png │ │ │ │ ├── f77312d4a1d940ca265e6966e7d4cad8.png │ │ │ │ └── fbebf132b1a47eac2bb2227bebe88758.png │ │ │ ├── pgnv.css │ │ │ └── pgnv.js │ │ └── select2.min.js │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── robots.txt │ ├── site.webmanifest │ ├── sounds │ │ ├── other │ │ │ ├── error.mp3 │ │ │ └── success.mp3 │ │ └── standard │ │ │ ├── Capture.mp3 │ │ │ └── Move.mp3 │ └── stockfish │ │ ├── js │ │ ├── stockfish.js │ │ ├── stockfish.wasm │ │ └── stockfish.wasm.js │ │ ├── stockfish.js │ │ ├── stockfish.wasm │ │ └── stockfish.worker.js ├── test │ ├── blind_tactics_test.js │ ├── codecept.conf.js │ ├── data │ │ ├── invalid.pgn │ │ └── valid.pgn │ ├── endgames_test.js │ ├── jsconfig.json │ ├── login_test.js │ ├── play-stockfish_test.js │ ├── register_test.js │ ├── steps.d.ts │ ├── steps_file.js │ ├── study_test.js │ └── tactics_test.js └── webpack.config.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── prod.secret.exs └── test.exs ├── devbox.json ├── devbox.lock ├── lib ├── listudy.ex ├── listudy │ ├── application.ex │ ├── authors.ex │ ├── authors │ │ └── author.ex │ ├── blind_tactics.ex │ ├── blind_tactics │ │ └── blind_tactic.ex │ ├── blog_faqs.ex │ ├── blog_faqs │ │ └── blog_faq.ex │ ├── book_openings.ex │ ├── book_openings │ │ └── book_opening.ex │ ├── book_tags.ex │ ├── book_tags │ │ └── book_tag.ex │ ├── books.ex │ ├── books │ │ └── book.ex │ ├── comments.ex │ ├── content.ex │ ├── content │ │ └── post.ex │ ├── events.ex │ ├── events │ │ └── event.ex │ ├── expert_recommendations.ex │ ├── expert_recommendations │ │ └── expert_recommendation.ex │ ├── helpers.ex │ ├── images.ex │ ├── images │ │ └── image.ex │ ├── motifs.ex │ ├── motifs │ │ └── motif.ex │ ├── opening_faqs.ex │ ├── opening_faqs │ │ └── opening_faq.ex │ ├── openings.ex │ ├── openings │ │ └── opening.ex │ ├── pieceless_tactics.ex │ ├── pieceless_tactics │ │ └── pieceless_tactic.ex │ ├── players.ex │ ├── players │ │ └── player.ex │ ├── post_comments │ │ └── post_comment.ex │ ├── repo.ex │ ├── seeds.ex │ ├── slug.ex │ ├── studies.ex │ ├── studies │ │ └── study.ex │ ├── study_comments │ │ └── study_comment.ex │ ├── study_favorites.ex │ ├── study_favorites │ │ └── study_favorites.ex │ ├── tactics.ex │ ├── tactics │ │ └── tactic.ex │ ├── tags.ex │ ├── tags │ │ └── tag.ex │ ├── users.ex │ └── users │ │ └── user.ex ├── listudy_web.ex └── listudy_web │ ├── channels │ └── user_socket.ex │ ├── controllers │ ├── author_controller.ex │ ├── blind_tactic_controller.ex │ ├── blog_faq_controller.ex │ ├── book_controller.ex │ ├── book_opening_controller.ex │ ├── book_tag_controller.ex │ ├── comment_controller.ex │ ├── endgame_controller.ex │ ├── event_controller.ex │ ├── expert_recommendation_controller.ex │ ├── iframe_controller.ex │ ├── image_controller.ex │ ├── motif_controller.ex │ ├── opening_controller.ex │ ├── opening_faq_controller.ex │ ├── page_controller.ex │ ├── pieceless_tactic_controller.ex │ ├── player_controller.ex │ ├── post_controller.ex │ ├── sitemap_controller.ex │ ├── stats_controller.ex │ ├── study_controller.ex │ ├── tactic_controller.ex │ ├── tag_controller.ex │ ├── user_administration_controller.ex │ ├── user_profile_controller.ex │ └── webmaster_controller.ex │ ├── eex_markdown │ ├── eex_markdown.ex │ └── helpers.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── live │ ├── blind_tactics_live.ex │ ├── book_search_live.ex │ ├── chessclicker_live.ex │ ├── event_search_live.ex │ ├── motif_search_live.ex │ ├── opening_search_live.ex │ ├── player_search_live.ex │ ├── study_search_live.ex │ └── tactics_live.ex │ ├── plugs │ ├── allow_iframe.ex │ ├── csp.ex │ ├── ensure_role_plug.ex │ ├── last_visited.ex │ ├── locale.ex │ └── stockfish.ex │ ├── pow │ └── messages.ex │ ├── router.ex │ ├── telemetry.ex │ ├── templates │ ├── author │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── blind_tactic │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── blog_faq │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── book │ │ ├── affiliate.html.eex │ │ ├── edit.html.eex │ │ ├── footer.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ ├── recommended.html.eex │ │ ├── show.html.eex │ │ └── thumb.html.eex │ ├── book_opening │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── book_tag │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── comment │ │ ├── comment_form.html.eex │ │ └── show_comments.html.eex │ ├── component │ │ ├── chessground.html.eex │ │ └── infoboxes.html.eex │ ├── endgame │ │ ├── chapter.html.eex │ │ ├── game.html.eex │ │ └── index.html.eex │ ├── event │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── expert_recommendation │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── faq │ │ └── show.html.eex │ ├── iframe │ │ └── custom_tactic.html.eex │ ├── image │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── layout │ │ ├── _footer.html.eex │ │ ├── _head.html.eex │ │ ├── _header.html.eex │ │ ├── app.html.eex │ │ ├── iframe.html.eex │ │ └── live.html.eex │ ├── live │ │ ├── blind_tactics.html.leex │ │ ├── chessclicker.html.leex │ │ └── tactics.html.leex │ ├── motif │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── opening │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── opening_faq │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── page │ │ ├── achievements.html.eex │ │ ├── admin_index.html.eex │ │ ├── blind-tactics.html.eex │ │ ├── changelog.html.eex │ │ ├── copyright.html.eex │ │ ├── dogestudy.html.eex │ │ ├── icons.html.eex │ │ ├── imprint.html.eex │ │ ├── index.html.eex │ │ ├── pieceless-tactics.html.eex │ │ ├── play_stockfish.html.eex │ │ ├── privacy.html.eex │ │ ├── terms-of-service.html.eex │ │ └── thanks.html.eex │ ├── pieceless_tactic │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── player │ │ ├── book_recommendations.html.eex │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── post │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── index_all.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── pow │ │ ├── registration │ │ │ ├── edit.html.eex │ │ │ └── new.html.eex │ │ └── session │ │ │ └── new.html.eex │ ├── sitemap │ │ ├── books.xml.eex │ │ └── index.xml.eex │ ├── stats │ │ └── index.html.eex │ ├── study │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── list.html.eex │ │ ├── new.html.eex │ │ ├── search.html.eex │ │ ├── show.html.eex │ │ └── study_favorite.html.eex │ ├── tactic │ │ ├── custom.html.eex │ │ ├── daily.html.eex │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── show.html.eex │ │ ├── tactic.html.eex │ │ └── translations.html.eex │ ├── tag │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── public.html.eex │ │ └── show.html.eex │ ├── user_administration │ │ ├── email.html.eex │ │ └── password.html.eex │ ├── user_profile │ │ └── show.html.eex │ └── webmaster │ │ ├── custom-tactics.html.eex │ │ └── index.html.eex │ ├── uploaders │ └── image.ex │ └── views │ ├── author_view.ex │ ├── blind_tactic_view.ex │ ├── blog_faq_view.ex │ ├── book_opening_view.ex │ ├── book_tag_view.ex │ ├── book_view.ex │ ├── comment_view.ex │ ├── component_view.ex │ ├── endgame_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── event_view.ex │ ├── expert_recommendation_view.ex │ ├── faq_view.ex │ ├── helpers │ ├── page_description.ex │ ├── page_title.ex │ └── seo.ex │ ├── iframe_view.ex │ ├── image_view.ex │ ├── layout_view.ex │ ├── live_view.ex │ ├── motif_view.ex │ ├── opening_faq_view.ex │ ├── opening_view.ex │ ├── page_view.ex │ ├── pieceless_tactic_view.ex │ ├── player_view.ex │ ├── post_view.ex │ ├── pow │ ├── registration_view.ex │ └── session_view.ex │ ├── sitemap_view.ex │ ├── stats_view.ex │ ├── study_view.ex │ ├── tactic_view.ex │ ├── tag_view.ex │ ├── user_administration_view.ex │ ├── user_profile_view.ex │ └── webmaster_view.ex ├── mix.exs ├── mix.lock ├── priv ├── gettext │ ├── achievements.pot │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── blind-tactics.pot │ ├── book.pot │ ├── changelog.pot │ ├── chessclicker.pot │ ├── comments.pot │ ├── copyright.pot │ ├── daily-puzzle.pot │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── default.pot │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── endgame.pot │ ├── errors.pot │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── events.pot │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── faq.pot │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── index.pot │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── openings.pot │ ├── page_descriptions.pot │ ├── page_titles.pot │ ├── play_stockfish.pot │ ├── player.pot │ ├── privacy.pot │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── statistics.pot │ ├── study.pot │ ├── tactics.pot │ ├── terms.pot │ ├── thanks.pot │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ ├── user_profile.pot │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── achievements.po │ │ │ ├── blind-tactics.po │ │ │ ├── book.po │ │ │ ├── changelog.po │ │ │ ├── chessclicker.po │ │ │ ├── comments.po │ │ │ ├── copyright.po │ │ │ ├── daily-puzzle.po │ │ │ ├── default.po │ │ │ ├── endgame.po │ │ │ ├── errors.po │ │ │ ├── events.po │ │ │ ├── faq.po │ │ │ ├── index.po │ │ │ ├── openings.po │ │ │ ├── page_descriptions.po │ │ │ ├── page_titles.po │ │ │ ├── play_stockfish.po │ │ │ ├── player.po │ │ │ ├── privacy.po │ │ │ ├── statistics.po │ │ │ ├── study.po │ │ │ ├── tactics.po │ │ │ ├── terms.po │ │ │ ├── thanks.po │ │ │ ├── user_profile.po │ │ │ └── webmaster.po │ └── webmaster.pot ├── repo │ ├── migrations │ │ ├── .formatter.exs │ │ ├── 20200515142202_create_users.exs │ │ ├── 20200515152056_add_user_roles.exs │ │ ├── 20200519171017_create_studies.exs │ │ ├── 20200622091331_create_study_comments.exs │ │ ├── 20200623082540_create_study_favorites.exs │ │ ├── 20200625122723_create_posts.exs │ │ ├── 20200625122724_create_post_comments.exs │ │ ├── 20200718184839_create_players.exs │ │ ├── 20200718184847_create_events.exs │ │ ├── 20200718184853_create_openings.exs │ │ ├── 20200718184920_create_motifs.exs │ │ ├── 20200718184935_create_tactics.exs │ │ ├── 20200806133841_add_last_visited.exs │ │ ├── 20200821120302_tactics_add_last_move.exs │ │ ├── 20200828094646_create_blind_tactics.exs │ │ ├── 20200828173403_update_blind_tactics_table.exs │ │ ├── 20200909201844_make_description_text.exs │ │ ├── 20200911105631_add_openings_to_studies.exs │ │ ├── 20200911190747_add_fen_and_uci_moves_to_opening.exs │ │ ├── 20201127161936_create_authors.exs │ │ ├── 20201127161948_create_tags.exs │ │ ├── 20201127162012_create_books.exs │ │ ├── 20201127162029_create_book_tag.exs │ │ ├── 20201127162043_create_book_opening.exs │ │ ├── 20201128111125_create_expert_recommendation.exs │ │ ├── 20201209140308_tag_name.exs │ │ ├── 20201227141716_add_blog_scripts.exs │ │ ├── 20210302182318_create_blog_faq.exs │ │ ├── 20210302204839_create_opening_faq.exs │ │ ├── 20210303153043_create_images.exs │ │ ├── 20210303183722_add_ref_to_images.exs │ │ └── 20210410180804_create_piecelesstactic.exs │ └── seeds.exs └── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── robots.txt │ └── site.webmanifest ├── scripts ├── action │ └── svg_generator.py ├── gettext │ ├── merge.sh │ └── new_lang.sh ├── npm │ ├── audit_fix.sh │ └── update.sh ├── prod │ ├── ci.sh │ ├── compile.sh │ ├── env.example.sh │ ├── migrate.sh │ ├── start_server.sh │ ├── stop_server.sh │ └── webpack.sh └── update_stockfish_wasm.sh └── test ├── listudy ├── blog_faqs_test.exs └── opening_faqs_test.exs ├── listudy_web ├── controllers │ ├── page_controller_test.exs │ ├── sitemap_controller_test.exs │ ├── study_controller_test.exs │ └── tactic_controller_test.exs └── views │ ├── error_view_test.exs │ ├── layout_view_test.exs │ └── page_view_test.exs ├── support ├── channel_case.ex ├── conn_case.ex └── data_case.ex └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/README.md -------------------------------------------------------------------------------- /assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/.babelrc -------------------------------------------------------------------------------- /assets/assets/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/app.scss -------------------------------------------------------------------------------- /assets/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/colors.css -------------------------------------------------------------------------------- /assets/css/components/breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/components/breadcrumbs.css -------------------------------------------------------------------------------- /assets/css/components/ground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/components/ground.css -------------------------------------------------------------------------------- /assets/css/components/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/components/modal.css -------------------------------------------------------------------------------- /assets/css/components/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/components/popup.css -------------------------------------------------------------------------------- /assets/css/components/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/components/support.css -------------------------------------------------------------------------------- /assets/css/const.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/const.css -------------------------------------------------------------------------------- /assets/css/features/achievements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/features/achievements.css -------------------------------------------------------------------------------- /assets/css/features/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/features/book.css -------------------------------------------------------------------------------- /assets/css/features/endgames.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/features/endgames.css -------------------------------------------------------------------------------- /assets/css/features/study.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/features/study.css -------------------------------------------------------------------------------- /assets/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/icons.css -------------------------------------------------------------------------------- /assets/css/inputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/inputs.css -------------------------------------------------------------------------------- /assets/css/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/navigation.css -------------------------------------------------------------------------------- /assets/css/progress_bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/progress_bar.css -------------------------------------------------------------------------------- /assets/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/css/skeleton.css -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/blind_tactics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/blind_tactics.js -------------------------------------------------------------------------------- /assets/js/chessclicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/chessclicker.js -------------------------------------------------------------------------------- /assets/js/components/achievements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/achievements.js -------------------------------------------------------------------------------- /assets/js/components/chessboard_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/chessboard_settings.js -------------------------------------------------------------------------------- /assets/js/components/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/hamburger.js -------------------------------------------------------------------------------- /assets/js/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/modal.js -------------------------------------------------------------------------------- /assets/js/components/sound_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/sound_settings.js -------------------------------------------------------------------------------- /assets/js/components/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/components/support.js -------------------------------------------------------------------------------- /assets/js/endgames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/endgames.js -------------------------------------------------------------------------------- /assets/js/live_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/live_view.js -------------------------------------------------------------------------------- /assets/js/modules/chess_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/chess_utils.js -------------------------------------------------------------------------------- /assets/js/modules/ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/ground.js -------------------------------------------------------------------------------- /assets/js/modules/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/hash.js -------------------------------------------------------------------------------- /assets/js/modules/info_boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/info_boxes.js -------------------------------------------------------------------------------- /assets/js/modules/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/localstorage.js -------------------------------------------------------------------------------- /assets/js/modules/overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/overlays.js -------------------------------------------------------------------------------- /assets/js/modules/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/random.js -------------------------------------------------------------------------------- /assets/js/modules/security_related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/security_related.js -------------------------------------------------------------------------------- /assets/js/modules/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/sleep.js -------------------------------------------------------------------------------- /assets/js/modules/sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/sounds.js -------------------------------------------------------------------------------- /assets/js/modules/stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/stockfish.js -------------------------------------------------------------------------------- /assets/js/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/tree.js -------------------------------------------------------------------------------- /assets/js/modules/tree_from_pgn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/tree_from_pgn.js -------------------------------------------------------------------------------- /assets/js/modules/tree_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/tree_utils.js -------------------------------------------------------------------------------- /assets/js/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/modules/utils.js -------------------------------------------------------------------------------- /assets/js/pieceless_tactics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/pieceless_tactics.js -------------------------------------------------------------------------------- /assets/js/play_stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/play_stockfish.js -------------------------------------------------------------------------------- /assets/js/remember_lichess_study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/remember_lichess_study.js -------------------------------------------------------------------------------- /assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/socket.js -------------------------------------------------------------------------------- /assets/js/study.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/study.js -------------------------------------------------------------------------------- /assets/js/tactics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/js/tactics.js -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/browserconfig.xml -------------------------------------------------------------------------------- /assets/static/css/april-fools.21.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/april-fools.21.css -------------------------------------------------------------------------------- /assets/static/css/chessground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/chessground.css -------------------------------------------------------------------------------- /assets/static/css/features/pieceless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/features/pieceless.css -------------------------------------------------------------------------------- /assets/static/css/fonts/Creepster/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/Creepster/OFL.txt -------------------------------------------------------------------------------- /assets/static/css/fonts/bungee-outline/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/bungee-outline/OFL.txt -------------------------------------------------------------------------------- /assets/static/css/fonts/bungee-outline/README.md: -------------------------------------------------------------------------------- 1 | Taken from https://fonts.google.com/specimen/Bungee+Outline 2 | -------------------------------------------------------------------------------- /assets/static/css/fonts/dancing-script/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/dancing-script/OFL.txt -------------------------------------------------------------------------------- /assets/static/css/fonts/dancing-script/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/dancing-script/README.txt -------------------------------------------------------------------------------- /assets/static/css/fonts/listudy/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/listudy/license.md -------------------------------------------------------------------------------- /assets/static/css/fonts/listudy/listudy.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/listudy/listudy.sfd -------------------------------------------------------------------------------- /assets/static/css/fonts/listudy/listudy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/fonts/listudy/listudy.woff2 -------------------------------------------------------------------------------- /assets/static/css/halloween.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/halloween.css -------------------------------------------------------------------------------- /assets/static/css/new_year.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/new_year.css -------------------------------------------------------------------------------- /assets/static/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/select2.min.css -------------------------------------------------------------------------------- /assets/static/css/xmas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/css/xmas.css -------------------------------------------------------------------------------- /assets/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/favicon-16x16.png -------------------------------------------------------------------------------- /assets/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/favicon-32x32.png -------------------------------------------------------------------------------- /assets/static/images/boards/blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/boards/blue.svg -------------------------------------------------------------------------------- /assets/static/images/boards/brown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/boards/brown.svg -------------------------------------------------------------------------------- /assets/static/images/boards/green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/boards/green.svg -------------------------------------------------------------------------------- /assets/static/images/boards/ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/boards/ic.svg -------------------------------------------------------------------------------- /assets/static/images/features/blind/move-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/blind/move-list.png -------------------------------------------------------------------------------- /assets/static/images/features/blind/solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/blind/solved.png -------------------------------------------------------------------------------- /assets/static/images/features/doge/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/doge/study.png -------------------------------------------------------------------------------- /assets/static/images/features/doge/tactics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/doge/tactics.png -------------------------------------------------------------------------------- /assets/static/images/features/pieceless/moves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/pieceless/moves.png -------------------------------------------------------------------------------- /assets/static/images/features/pieceless/pieces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/features/pieceless/pieces.png -------------------------------------------------------------------------------- /assets/static/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/phoenix.png -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/cburnett/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/cburnett/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/chessnut/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/chessnut/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/letter/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/letter/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/merida/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/merida/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pirouetti/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pirouetti/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/pixel/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/pixel/wR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/bR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/bR.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wB.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wK.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wN.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wP.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wQ.svg -------------------------------------------------------------------------------- /assets/static/images/pieces/shapes/wR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/images/pieces/shapes/wR.svg -------------------------------------------------------------------------------- /assets/static/js/confetti.browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/confetti.browser.min.js -------------------------------------------------------------------------------- /assets/static/js/holidays/april-fools.21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/holidays/april-fools.21.js -------------------------------------------------------------------------------- /assets/static/js/holidays/new-year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/holidays/new-year.js -------------------------------------------------------------------------------- /assets/static/js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /assets/static/js/pgnviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/pgnviewer/README.md -------------------------------------------------------------------------------- /assets/static/js/pgnviewer/pgnv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/pgnviewer/pgnv.css -------------------------------------------------------------------------------- /assets/static/js/pgnviewer/pgnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/pgnviewer/pgnv.js -------------------------------------------------------------------------------- /assets/static/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/js/select2.min.js -------------------------------------------------------------------------------- /assets/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/mstile-144x144.png -------------------------------------------------------------------------------- /assets/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/mstile-150x150.png -------------------------------------------------------------------------------- /assets/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/mstile-310x150.png -------------------------------------------------------------------------------- /assets/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/mstile-310x310.png -------------------------------------------------------------------------------- /assets/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/mstile-70x70.png -------------------------------------------------------------------------------- /assets/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /assets/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/site.webmanifest -------------------------------------------------------------------------------- /assets/static/sounds/other/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/sounds/other/error.mp3 -------------------------------------------------------------------------------- /assets/static/sounds/other/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/sounds/other/success.mp3 -------------------------------------------------------------------------------- /assets/static/sounds/standard/Capture.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/sounds/standard/Capture.mp3 -------------------------------------------------------------------------------- /assets/static/sounds/standard/Move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/sounds/standard/Move.mp3 -------------------------------------------------------------------------------- /assets/static/stockfish/js/stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/js/stockfish.js -------------------------------------------------------------------------------- /assets/static/stockfish/js/stockfish.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/js/stockfish.wasm -------------------------------------------------------------------------------- /assets/static/stockfish/js/stockfish.wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/js/stockfish.wasm.js -------------------------------------------------------------------------------- /assets/static/stockfish/stockfish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/stockfish.js -------------------------------------------------------------------------------- /assets/static/stockfish/stockfish.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/stockfish.wasm -------------------------------------------------------------------------------- /assets/static/stockfish/stockfish.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/static/stockfish/stockfish.worker.js -------------------------------------------------------------------------------- /assets/test/blind_tactics_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/blind_tactics_test.js -------------------------------------------------------------------------------- /assets/test/codecept.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/codecept.conf.js -------------------------------------------------------------------------------- /assets/test/data/invalid.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/data/invalid.pgn -------------------------------------------------------------------------------- /assets/test/data/valid.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/data/valid.pgn -------------------------------------------------------------------------------- /assets/test/endgames_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/endgames_test.js -------------------------------------------------------------------------------- /assets/test/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/jsconfig.json -------------------------------------------------------------------------------- /assets/test/login_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/login_test.js -------------------------------------------------------------------------------- /assets/test/play-stockfish_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/play-stockfish_test.js -------------------------------------------------------------------------------- /assets/test/register_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/register_test.js -------------------------------------------------------------------------------- /assets/test/steps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/steps.d.ts -------------------------------------------------------------------------------- /assets/test/steps_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/steps_file.js -------------------------------------------------------------------------------- /assets/test/study_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/study_test.js -------------------------------------------------------------------------------- /assets/test/tactics_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/test/tactics_test.js -------------------------------------------------------------------------------- /assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/assets/webpack.config.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/prod.secret.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/config/prod.secret.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/config/test.exs -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/devbox.json -------------------------------------------------------------------------------- /devbox.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/devbox.lock -------------------------------------------------------------------------------- /lib/listudy.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy.ex -------------------------------------------------------------------------------- /lib/listudy/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/application.ex -------------------------------------------------------------------------------- /lib/listudy/authors.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/authors.ex -------------------------------------------------------------------------------- /lib/listudy/authors/author.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/authors/author.ex -------------------------------------------------------------------------------- /lib/listudy/blind_tactics.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/blind_tactics.ex -------------------------------------------------------------------------------- /lib/listudy/blind_tactics/blind_tactic.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/blind_tactics/blind_tactic.ex -------------------------------------------------------------------------------- /lib/listudy/blog_faqs.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/blog_faqs.ex -------------------------------------------------------------------------------- /lib/listudy/blog_faqs/blog_faq.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/blog_faqs/blog_faq.ex -------------------------------------------------------------------------------- /lib/listudy/book_openings.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/book_openings.ex -------------------------------------------------------------------------------- /lib/listudy/book_openings/book_opening.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/book_openings/book_opening.ex -------------------------------------------------------------------------------- /lib/listudy/book_tags.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/book_tags.ex -------------------------------------------------------------------------------- /lib/listudy/book_tags/book_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/book_tags/book_tag.ex -------------------------------------------------------------------------------- /lib/listudy/books.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/books.ex -------------------------------------------------------------------------------- /lib/listudy/books/book.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/books/book.ex -------------------------------------------------------------------------------- /lib/listudy/comments.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/comments.ex -------------------------------------------------------------------------------- /lib/listudy/content.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/content.ex -------------------------------------------------------------------------------- /lib/listudy/content/post.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/content/post.ex -------------------------------------------------------------------------------- /lib/listudy/events.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/events.ex -------------------------------------------------------------------------------- /lib/listudy/events/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/events/event.ex -------------------------------------------------------------------------------- /lib/listudy/expert_recommendations.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/expert_recommendations.ex -------------------------------------------------------------------------------- /lib/listudy/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/helpers.ex -------------------------------------------------------------------------------- /lib/listudy/images.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/images.ex -------------------------------------------------------------------------------- /lib/listudy/images/image.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/images/image.ex -------------------------------------------------------------------------------- /lib/listudy/motifs.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/motifs.ex -------------------------------------------------------------------------------- /lib/listudy/motifs/motif.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/motifs/motif.ex -------------------------------------------------------------------------------- /lib/listudy/opening_faqs.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/opening_faqs.ex -------------------------------------------------------------------------------- /lib/listudy/opening_faqs/opening_faq.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/opening_faqs/opening_faq.ex -------------------------------------------------------------------------------- /lib/listudy/openings.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/openings.ex -------------------------------------------------------------------------------- /lib/listudy/openings/opening.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/openings/opening.ex -------------------------------------------------------------------------------- /lib/listudy/pieceless_tactics.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/pieceless_tactics.ex -------------------------------------------------------------------------------- /lib/listudy/pieceless_tactics/pieceless_tactic.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/pieceless_tactics/pieceless_tactic.ex -------------------------------------------------------------------------------- /lib/listudy/players.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/players.ex -------------------------------------------------------------------------------- /lib/listudy/players/player.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/players/player.ex -------------------------------------------------------------------------------- /lib/listudy/post_comments/post_comment.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/post_comments/post_comment.ex -------------------------------------------------------------------------------- /lib/listudy/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/repo.ex -------------------------------------------------------------------------------- /lib/listudy/seeds.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/seeds.ex -------------------------------------------------------------------------------- /lib/listudy/slug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/slug.ex -------------------------------------------------------------------------------- /lib/listudy/studies.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/studies.ex -------------------------------------------------------------------------------- /lib/listudy/studies/study.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/studies/study.ex -------------------------------------------------------------------------------- /lib/listudy/study_comments/study_comment.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/study_comments/study_comment.ex -------------------------------------------------------------------------------- /lib/listudy/study_favorites.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/study_favorites.ex -------------------------------------------------------------------------------- /lib/listudy/study_favorites/study_favorites.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/study_favorites/study_favorites.ex -------------------------------------------------------------------------------- /lib/listudy/tactics.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/tactics.ex -------------------------------------------------------------------------------- /lib/listudy/tactics/tactic.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/tactics/tactic.ex -------------------------------------------------------------------------------- /lib/listudy/tags.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/tags.ex -------------------------------------------------------------------------------- /lib/listudy/tags/tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/tags/tag.ex -------------------------------------------------------------------------------- /lib/listudy/users.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/users.ex -------------------------------------------------------------------------------- /lib/listudy/users/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy/users/user.ex -------------------------------------------------------------------------------- /lib/listudy_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web.ex -------------------------------------------------------------------------------- /lib/listudy_web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/channels/user_socket.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/author_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/author_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/blog_faq_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/blog_faq_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/book_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/book_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/book_tag_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/book_tag_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/comment_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/comment_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/endgame_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/endgame_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/event_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/event_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/iframe_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/iframe_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/image_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/image_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/motif_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/motif_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/opening_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/opening_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/page_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/player_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/player_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/post_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/post_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/sitemap_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/sitemap_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/stats_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/stats_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/study_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/study_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/tactic_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/tactic_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/controllers/tag_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/controllers/tag_controller.ex -------------------------------------------------------------------------------- /lib/listudy_web/eex_markdown/eex_markdown.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/eex_markdown/eex_markdown.ex -------------------------------------------------------------------------------- /lib/listudy_web/eex_markdown/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/eex_markdown/helpers.ex -------------------------------------------------------------------------------- /lib/listudy_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/endpoint.ex -------------------------------------------------------------------------------- /lib/listudy_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/gettext.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/blind_tactics_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/blind_tactics_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/book_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/book_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/chessclicker_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/chessclicker_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/event_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/event_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/motif_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/motif_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/opening_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/opening_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/player_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/player_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/study_search_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/study_search_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/live/tactics_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/live/tactics_live.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/allow_iframe.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/allow_iframe.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/csp.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/csp.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/ensure_role_plug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/ensure_role_plug.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/last_visited.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/last_visited.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/locale.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/locale.ex -------------------------------------------------------------------------------- /lib/listudy_web/plugs/stockfish.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/plugs/stockfish.ex -------------------------------------------------------------------------------- /lib/listudy_web/pow/messages.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/pow/messages.ex -------------------------------------------------------------------------------- /lib/listudy_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/router.ex -------------------------------------------------------------------------------- /lib/listudy_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/telemetry.ex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/public.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/public.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/author/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/author/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/blog_faq/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/blog_faq/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/blog_faq/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/blog_faq/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/footer.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/footer.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/public.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/public.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book/thumb.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book/thumb.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/book_tag/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/book_tag/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/endgame/game.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/endgame/game.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/public.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/public.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/event/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/event/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/faq/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/faq/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/image/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/image/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/image/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/image/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/image/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/image/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/image/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/image/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/image/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/image/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/layout/_head.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/layout/_head.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/layout/app.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/layout/app.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/layout/live.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/layout/live.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/public.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/public.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/motif/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/motif/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/opening/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/opening/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/opening/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/opening/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/opening/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/opening/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/opening/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/opening/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/page/icons.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/page/icons.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/page/imprint.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/page/imprint.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/page/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/page/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/page/privacy.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/page/privacy.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/page/thanks.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/page/thanks.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/player/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/player/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/player/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/player/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/player/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/player/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/player/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/player/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/player/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/player/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/post/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/post/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/post/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/post/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/post/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/post/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/post/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/post/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/post/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/post/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/sitemap/books.xml.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/sitemap/books.xml.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/sitemap/index.xml.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/sitemap/index.xml.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/stats/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/stats/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/list.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/list.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/search.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/search.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/study/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/study/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/daily.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/daily.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tactic/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tactic/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/edit.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/form.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/index.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/new.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/public.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/public.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/templates/tag/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/templates/tag/show.html.eex -------------------------------------------------------------------------------- /lib/listudy_web/uploaders/image.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/uploaders/image.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/author_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/author_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/blind_tactic_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/blind_tactic_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/blog_faq_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/blog_faq_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/book_opening_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/book_opening_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/book_tag_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/book_tag_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/book_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/book_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/comment_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/comment_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/component_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/component_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/endgame_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/endgame_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/error_helpers.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/error_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/event_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/event_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/faq_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/faq_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/helpers/page_title.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/helpers/page_title.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/helpers/seo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/helpers/seo.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/iframe_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/iframe_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/image_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/image_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/layout_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/live_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/live_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/motif_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/motif_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/opening_faq_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/opening_faq_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/opening_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/opening_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/page_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/pieceless_tactic_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/pieceless_tactic_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/player_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/player_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/post_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/post_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/pow/registration_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/pow/registration_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/pow/session_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/pow/session_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/sitemap_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/sitemap_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/stats_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/stats_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/study_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/study_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/tactic_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/tactic_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/tag_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/tag_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/user_profile_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/user_profile_view.ex -------------------------------------------------------------------------------- /lib/listudy_web/views/webmaster_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/lib/listudy_web/views/webmaster_view.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/gettext/achievements.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/achievements.pot -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/ar/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ar/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/blind-tactics.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/blind-tactics.pot -------------------------------------------------------------------------------- /priv/gettext/book.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/book.pot -------------------------------------------------------------------------------- /priv/gettext/changelog.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/changelog.pot -------------------------------------------------------------------------------- /priv/gettext/chessclicker.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/chessclicker.pot -------------------------------------------------------------------------------- /priv/gettext/comments.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/comments.pot -------------------------------------------------------------------------------- /priv/gettext/copyright.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/copyright.pot -------------------------------------------------------------------------------- /priv/gettext/daily-puzzle.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/daily-puzzle.pot -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/de/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/de/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/default.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/default.pot -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/en/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/endgame.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/endgame.pot -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/es/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/es/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/events.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/events.pot -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/fa/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fa/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/faq.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/faq.pot -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/fr/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/fr/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/he/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/he/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/index.pot -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/it/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/it/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/nl/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/nl/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/openings.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/openings.pot -------------------------------------------------------------------------------- /priv/gettext/page_descriptions.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/page_descriptions.pot -------------------------------------------------------------------------------- /priv/gettext/page_titles.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/page_titles.pot -------------------------------------------------------------------------------- /priv/gettext/play_stockfish.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/play_stockfish.pot -------------------------------------------------------------------------------- /priv/gettext/player.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/player.pot -------------------------------------------------------------------------------- /priv/gettext/privacy.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/privacy.pot -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/pt/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/pt/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/ru/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/ru/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/statistics.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/statistics.pot -------------------------------------------------------------------------------- /priv/gettext/study.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/study.pot -------------------------------------------------------------------------------- /priv/gettext/tactics.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tactics.pot -------------------------------------------------------------------------------- /priv/gettext/terms.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/terms.pot -------------------------------------------------------------------------------- /priv/gettext/thanks.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/thanks.pot -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/tr/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/tr/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/user_profile.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/user_profile.pot -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/achievements.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/achievements.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/blind-tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/blind-tactics.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/book.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/book.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/changelog.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/changelog.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/chessclicker.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/chessclicker.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/comments.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/comments.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/copyright.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/copyright.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/daily-puzzle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/daily-puzzle.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/endgame.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/endgame.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/events.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/openings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/openings.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/page_titles.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/page_titles.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/play_stockfish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/play_stockfish.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/player.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/player.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/privacy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/privacy.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/statistics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/statistics.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/study.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/study.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/tactics.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/tactics.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/terms.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/thanks.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/user_profile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/user_profile.po -------------------------------------------------------------------------------- /priv/gettext/vi/LC_MESSAGES/webmaster.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/vi/LC_MESSAGES/webmaster.po -------------------------------------------------------------------------------- /priv/gettext/webmaster.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/gettext/webmaster.pot -------------------------------------------------------------------------------- /priv/repo/migrations/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/repo/migrations/.formatter.exs -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /priv/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /priv/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /priv/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/apple-touch-icon.png -------------------------------------------------------------------------------- /priv/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/browserconfig.xml -------------------------------------------------------------------------------- /priv/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/favicon-16x16.png -------------------------------------------------------------------------------- /priv/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/favicon-32x32.png -------------------------------------------------------------------------------- /priv/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/mstile-144x144.png -------------------------------------------------------------------------------- /priv/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/mstile-150x150.png -------------------------------------------------------------------------------- /priv/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/mstile-310x150.png -------------------------------------------------------------------------------- /priv/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/mstile-310x310.png -------------------------------------------------------------------------------- /priv/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/mstile-70x70.png -------------------------------------------------------------------------------- /priv/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /priv/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/priv/static/site.webmanifest -------------------------------------------------------------------------------- /scripts/action/svg_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/action/svg_generator.py -------------------------------------------------------------------------------- /scripts/gettext/merge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mix gettext.extract --merge 3 | -------------------------------------------------------------------------------- /scripts/gettext/new_lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/gettext/new_lang.sh -------------------------------------------------------------------------------- /scripts/npm/audit_fix.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd assets 3 | npm audit fix 4 | -------------------------------------------------------------------------------- /scripts/npm/update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd assets 3 | npm update 4 | -------------------------------------------------------------------------------- /scripts/prod/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/ci.sh -------------------------------------------------------------------------------- /scripts/prod/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/compile.sh -------------------------------------------------------------------------------- /scripts/prod/env.example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/env.example.sh -------------------------------------------------------------------------------- /scripts/prod/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/migrate.sh -------------------------------------------------------------------------------- /scripts/prod/start_server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ./scripts/prod/env.sh 3 | mix phx.server >/dev/null 2>&1 & 4 | -------------------------------------------------------------------------------- /scripts/prod/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/stop_server.sh -------------------------------------------------------------------------------- /scripts/prod/webpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/prod/webpack.sh -------------------------------------------------------------------------------- /scripts/update_stockfish_wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/scripts/update_stockfish_wasm.sh -------------------------------------------------------------------------------- /test/listudy/blog_faqs_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/listudy/blog_faqs_test.exs -------------------------------------------------------------------------------- /test/listudy/opening_faqs_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/listudy/opening_faqs_test.exs -------------------------------------------------------------------------------- /test/listudy_web/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/listudy_web/views/error_view_test.exs -------------------------------------------------------------------------------- /test/listudy_web/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/listudy_web/views/layout_view_test.exs -------------------------------------------------------------------------------- /test/listudy_web/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/listudy_web/views/page_view_test.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/support/data_case.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArneVogel/listudy/HEAD/test/test_helper.exs --------------------------------------------------------------------------------