├── .gitignore ├── LICENSE ├── README.markdown ├── TODO ├── app ├── AppKernel.php ├── Resources │ └── java │ │ └── yuicompressor-2.4.7.jar ├── autoload.php ├── config │ ├── akismet.yml │ ├── apc.yml │ ├── assetic.yml │ ├── comment.yml │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── doctrine.yml │ ├── elastica.yml │ ├── forum.yml │ ├── framework.yml │ ├── lichess.yml │ ├── message.yml │ ├── monolog.yml │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ ├── twig.yml │ └── user.yml ├── console └── phpunit.xml ├── bin ├── base_script.php ├── deploy ├── install_crafty_books ├── maintenance ├── refresh ├── reload ├── rsync_exclude ├── translate ├── vendors └── vendors_status ├── deps ├── deps.lock ├── src ├── Application │ ├── ForumBundle │ │ ├── Akismet.php │ │ ├── AuthorNamePersistence.php │ │ ├── Blamer │ │ │ └── PostBlamer.php │ │ ├── Command │ │ │ ├── RemoveAllFromAuthorCommand.php │ │ │ ├── RemoveRecentAnonymousCommand.php │ │ │ └── UpdateCommand.php │ │ ├── Controller │ │ │ ├── PostController.php │ │ │ ├── SearchController.php │ │ │ └── TopicController.php │ │ ├── DataFixtures │ │ │ └── MongoDB │ │ │ │ └── LoadForumData.php │ │ ├── DependencyInjection │ │ │ └── LichessForumExtension.php │ │ ├── Document │ │ │ ├── Category.php │ │ │ ├── Post.php │ │ │ └── Topic.php │ │ ├── Form │ │ │ ├── NewTopicFormType.php │ │ │ └── PostFormType.php │ │ ├── LichessForumBundle.php │ │ ├── NewPostsCache.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── config.xml │ │ │ │ └── routing.yml │ │ │ ├── public │ │ │ │ ├── css │ │ │ │ │ └── forum.css │ │ │ │ └── js │ │ │ │ │ └── form.js │ │ │ └── views │ │ │ │ ├── Category │ │ │ │ ├── list.html.twig │ │ │ │ ├── show.html.twig │ │ │ │ └── show.xml.twig │ │ │ │ ├── Forum │ │ │ │ └── index.html.twig │ │ │ │ ├── Post │ │ │ │ ├── captcha.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ ├── list.xml.twig │ │ │ │ ├── new.html.twig │ │ │ │ └── recent.html.twig │ │ │ │ ├── Search │ │ │ │ ├── form.html.twig │ │ │ │ ├── results.html.twig │ │ │ │ └── search.html.twig │ │ │ │ ├── Topic │ │ │ │ ├── list.html.twig │ │ │ │ ├── list.xml.twig │ │ │ │ ├── new.html.twig │ │ │ │ ├── show.html.twig │ │ │ │ └── show.xml.twig │ │ │ │ ├── layout.html.twig │ │ │ │ └── pagination.php │ │ ├── Search │ │ │ └── ModelToElasticaTransformer.php │ │ ├── Tests │ │ │ ├── Acceptance │ │ │ │ ├── AbstractAcceptanceTest.php │ │ │ │ ├── AbstractCreatePostAcceptanceTest.php │ │ │ │ ├── AbstractCreateTopicAcceptanceTest.php │ │ │ │ ├── AnonymousCreatePostAcceptanceTest.php │ │ │ │ ├── AnonymousCreateTopicAcceptanceTest.php │ │ │ │ ├── AuthenticatedCreatePostAcceptanceTest.php │ │ │ │ ├── AuthenticatedCreateTopicAcceptanceTest.php │ │ │ │ ├── CategoryAcceptanceTest.php │ │ │ │ ├── IndexAcceptanceTest.php │ │ │ │ └── TopicAcceptanceTest.php │ │ │ └── Model │ │ │ │ └── PostTest.php │ │ └── Twig │ │ │ └── ForumExtension.php │ └── UserBundle │ │ ├── AccountCloser.php │ │ ├── Command │ │ ├── FixUsernameCommand.php │ │ ├── MigrateUserCommand.php │ │ └── UserChatBanCommand.php │ │ ├── Controller │ │ ├── CheatController.php │ │ ├── ExportController.php │ │ ├── OnlineController.php │ │ ├── ProfileController.php │ │ ├── RegistrationController.php │ │ ├── SecurityController.php │ │ └── StatsController.php │ │ ├── DataFixtures │ │ └── MongoDB │ │ │ └── LoadUserData.php │ │ ├── DependencyInjection │ │ └── LichessUserExtension.php │ │ ├── Document │ │ ├── User.php │ │ └── UserRepository.php │ │ ├── Form │ │ └── RegistrationFormType.php │ │ ├── GameExporter.php │ │ ├── LichessUserBundle.php │ │ ├── Resources │ │ ├── config │ │ │ ├── config.xml │ │ │ ├── form.xml │ │ │ ├── repository.xml │ │ │ └── routing │ │ │ │ ├── online.yml │ │ │ │ ├── profile.yml │ │ │ │ ├── registration.yml │ │ │ │ ├── security.yml │ │ │ │ └── stats.yml │ │ ├── public │ │ │ ├── css │ │ │ │ ├── list.css │ │ │ │ ├── show.css │ │ │ │ ├── signup.css │ │ │ │ └── useredit.css │ │ │ └── js │ │ │ │ ├── charts.js │ │ │ │ ├── jquery.editable-set.js │ │ │ │ ├── jquery.editable-set.min.js │ │ │ │ ├── user.js │ │ │ │ └── useredit.js │ │ └── views │ │ │ ├── Registration │ │ │ └── register.html.twig │ │ │ ├── Security │ │ │ └── embeddedLogin.html.twig │ │ │ ├── Stats │ │ │ └── index.html.twig │ │ │ ├── User │ │ │ ├── closeAccount.html.twig │ │ │ ├── disabled.html.twig │ │ │ ├── home.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listOnline.html.twig │ │ │ ├── preview.html.twig │ │ │ ├── show.html.twig │ │ │ ├── showMenu.html.twig │ │ │ ├── showOrHome.html.twig │ │ │ └── unknownUser.html.twig │ │ │ └── layoutUser.html.twig │ │ ├── Settings.php │ │ └── Tests │ │ └── Acceptance │ │ ├── AbstractAcceptanceTest.php │ │ ├── SigninAcceptanceTest.php │ │ ├── SignupAcceptanceTest.php │ │ ├── UserListAcceptanceTest.php │ │ └── UserPageAcceptanceTest.php ├── Bundle │ └── LichessBundle │ │ ├── Blamer │ │ └── PlayerBlamer.php │ │ ├── CachePagerAdapter.php │ │ ├── Chess │ │ ├── Board.php │ │ ├── Generator.php │ │ ├── Generator │ │ │ ├── Chess960PositionGenerator.php │ │ │ ├── PositionGenerator.php │ │ │ └── StandardPositionGenerator.php │ │ ├── PieceFilter.php │ │ ├── Rematcher.php │ │ └── Square.php │ │ ├── Command │ │ ├── DenormalizeIsAiCommand.php │ │ ├── GameDebugCommand.php │ │ └── WikiCommand.php │ │ ├── ConsoleGuardRail.php │ │ ├── Controller │ │ ├── ApiController.php │ │ ├── ExceptionController.php │ │ ├── GameController.php │ │ ├── MainController.php │ │ ├── PgnController.php │ │ ├── PlayerController.php │ │ └── WikiController.php │ │ ├── Critic │ │ └── UserCritic.php │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── LichessExtension.php │ │ ├── Document │ │ ├── Clock.php │ │ ├── Game.php │ │ ├── GameRepository.php │ │ ├── History.php │ │ ├── HistoryRepository.php │ │ ├── Piece.php │ │ ├── Player.php │ │ ├── WikiPage.php │ │ └── WikiPageRepository.php │ │ ├── Elo │ │ ├── Calculator.php │ │ └── Updater.php │ │ ├── KernelRequestListener.php │ │ ├── LICENSE │ │ ├── LichessBundle.php │ │ ├── Lila.php │ │ ├── Logger.php │ │ ├── Notation │ │ └── Forsyth.php │ │ ├── Provider.php │ │ ├── Resources │ │ ├── config │ │ │ ├── cache.xml │ │ │ ├── chess.xml │ │ │ ├── config.xml │ │ │ ├── lila.xml │ │ │ ├── listener.xml │ │ │ ├── model.xml │ │ │ ├── provider.xml │ │ │ ├── routing.yml │ │ │ └── test.xml │ │ ├── public │ │ │ ├── browser.html │ │ │ ├── css │ │ │ │ ├── analyse.css │ │ │ │ ├── board.css │ │ │ │ ├── common.css │ │ │ │ ├── gamelist.css │ │ │ │ ├── gamestats.css │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── reset.css │ │ │ │ ├── share.css │ │ │ │ ├── tipsy.css │ │ │ │ ├── tooltip.css │ │ │ │ ├── translation.css │ │ │ │ └── wiki.css │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── balloon.png │ │ │ │ ├── big-right.png │ │ │ │ ├── black_king.png │ │ │ │ ├── browser-chrome.png │ │ │ │ ├── browser-firefox.png │ │ │ │ ├── browser-opera.png │ │ │ │ ├── browser-safari.png │ │ │ │ ├── browsers.png │ │ │ │ ├── browsers.xcf │ │ │ │ ├── buttons.png │ │ │ │ ├── clock.png │ │ │ │ ├── close24.png │ │ │ │ ├── engine_big.png │ │ │ │ ├── engine_small.png │ │ │ │ ├── error.jpg │ │ │ │ ├── exchange.png │ │ │ │ ├── eye.png │ │ │ │ ├── feed-balloon.png │ │ │ │ ├── head_bg.png │ │ │ │ ├── hloader.gif │ │ │ │ ├── interrogation.png │ │ │ │ ├── kb14.png │ │ │ │ ├── kw14.png │ │ │ │ ├── loader2.gif │ │ │ │ ├── opensource.png │ │ │ │ ├── over5.png │ │ │ │ ├── play32.png │ │ │ │ ├── rematch.gif │ │ │ │ ├── s16.png │ │ │ │ ├── sover.png │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_color.png │ │ │ │ ├── sprite_color_24.png │ │ │ │ ├── sprite_mini.png │ │ │ │ ├── sprite_question.png │ │ │ │ ├── sprite_question.xcf │ │ │ │ ├── system.png │ │ │ │ ├── user.png │ │ │ │ └── white_king.png │ │ │ ├── js │ │ │ │ ├── analyse.js │ │ │ │ ├── chart.js │ │ │ │ ├── clock.js │ │ │ │ ├── ctrl.js │ │ │ │ ├── game.js │ │ │ │ ├── gamelist.js │ │ │ │ ├── gamestats.js │ │ │ │ ├── infinitescroll.js │ │ │ │ ├── socket.js │ │ │ │ ├── tipsy.js │ │ │ │ ├── tipsy.min.js │ │ │ │ └── translation.js │ │ │ ├── sound │ │ │ │ ├── alert.mp3 │ │ │ │ └── alert.ogg │ │ │ └── vendor │ │ │ │ ├── google.corechart.js │ │ │ │ ├── jquery-ui.autocomplete.min.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.infinitescroll.js │ │ │ │ ├── jquery.infinitescroll.min.js │ │ │ │ ├── jquery.json-2.3.js │ │ │ │ ├── jquery.json-2.3.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ ├── qtip │ │ │ │ ├── jquery.qtip.css │ │ │ │ ├── jquery.qtip.js │ │ │ │ ├── jquery.qtip.min.css │ │ │ │ └── jquery.qtip.min.js │ │ │ │ └── tipsy │ │ │ │ ├── images │ │ │ │ └── tipsy.gif │ │ │ │ ├── javascripts │ │ │ │ ├── jquery.tipsy.js │ │ │ │ └── jquery.tipsy.min.js │ │ │ │ └── stylesheets │ │ │ │ └── tipsy.css │ │ ├── translations │ │ │ ├── messages.af.yml │ │ │ ├── messages.ar.yml │ │ │ ├── messages.az.yml │ │ │ ├── messages.be.yml │ │ │ ├── messages.bg.yml │ │ │ ├── messages.bs.yml │ │ │ ├── messages.ca.yml │ │ │ ├── messages.cs.yml │ │ │ ├── messages.cy.yml │ │ │ ├── messages.da.yml │ │ │ ├── messages.de.yml │ │ │ ├── messages.el.yml │ │ │ ├── messages.eo.yml │ │ │ ├── messages.es.yml │ │ │ ├── messages.et.yml │ │ │ ├── messages.fa.yml │ │ │ ├── messages.fi.yml │ │ │ ├── messages.fr.yml │ │ │ ├── messages.frp.yml │ │ │ ├── messages.ga.yml │ │ │ ├── messages.gd.yml │ │ │ ├── messages.gl.yml │ │ │ ├── messages.he.yml │ │ │ ├── messages.hi.yml │ │ │ ├── messages.hr.yml │ │ │ ├── messages.hu.yml │ │ │ ├── messages.hy.yml │ │ │ ├── messages.id.yml │ │ │ ├── messages.is.yml │ │ │ ├── messages.it.yml │ │ │ ├── messages.ja.yml │ │ │ ├── messages.ka.yml │ │ │ ├── messages.lt.yml │ │ │ ├── messages.lv.yml │ │ │ ├── messages.mk.yml │ │ │ ├── messages.mn.yml │ │ │ ├── messages.mr.yml │ │ │ ├── messages.nb.yml │ │ │ ├── messages.nl.yml │ │ │ ├── messages.nn.yml │ │ │ ├── messages.no.yml │ │ │ ├── messages.pl.yml │ │ │ ├── messages.ps.yml │ │ │ ├── messages.pt.yml │ │ │ ├── messages.ro.yml │ │ │ ├── messages.ru.yml │ │ │ ├── messages.si.yml │ │ │ ├── messages.sk.yml │ │ │ ├── messages.sl.yml │ │ │ ├── messages.sq.yml │ │ │ ├── messages.sr.yml │ │ │ ├── messages.sv.yml │ │ │ ├── messages.sw.yml │ │ │ ├── messages.te.yml │ │ │ ├── messages.th.yml │ │ │ ├── messages.tk.yml │ │ │ ├── messages.tp.yml │ │ │ ├── messages.tr.yml │ │ │ ├── messages.uk.yml │ │ │ ├── messages.vi.yml │ │ │ └── messages.zh.yml │ │ └── views │ │ │ ├── Exception │ │ │ ├── base.html.twig │ │ │ └── error.html.twig │ │ │ ├── Game │ │ │ ├── cemetery.html.twig │ │ │ ├── clock.html.twig │ │ │ ├── join.html.twig │ │ │ ├── layoutGame.html.twig │ │ │ ├── layoutGameList.html.twig │ │ │ ├── list.html.twig │ │ │ ├── listAll.html.twig │ │ │ ├── listCurrent.html.twig │ │ │ ├── listCurrentInner.html.twig │ │ │ ├── listMates.html.twig │ │ │ ├── listSuspicious.html.twig │ │ │ ├── listWidget.html.twig │ │ │ ├── share.html.twig │ │ │ ├── stats.html.twig │ │ │ ├── table.html.twig │ │ │ ├── tableEnd.html.twig │ │ │ └── watchTable.html.twig │ │ │ ├── Main │ │ │ ├── connectionLost.html.twig │ │ │ ├── staticBoard_black.html.twig │ │ │ └── staticBoard_white.html.twig │ │ │ ├── Pgn │ │ │ ├── analyse.html.twig │ │ │ └── layoutAnalyse.html.twig │ │ │ ├── Player │ │ │ ├── layoutPlayer.html.twig │ │ │ ├── player.html.twig │ │ │ ├── room.html.twig │ │ │ ├── show.html.twig │ │ │ ├── waitFriend.html.twig │ │ │ ├── waitOpponent.html.twig │ │ │ └── watch.html.twig │ │ │ ├── Wiki │ │ │ ├── layout.html.twig │ │ │ ├── pages.html.twig │ │ │ └── show.html.twig │ │ │ ├── layout.html.twig │ │ │ └── layoutCommon.html.twig │ │ ├── Session │ │ ├── Storage │ │ │ └── FileSessionStorage.php │ │ └── TestSession.php │ │ ├── Tests │ │ ├── Ai │ │ │ ├── CraftyTest.php │ │ │ └── StupidTest.php │ │ ├── Chess │ │ │ ├── BoardTest.php │ │ │ ├── GeneratorTest.php │ │ │ ├── Manipulator960Test.php │ │ │ ├── ManipulatorAbstractTest.php │ │ │ ├── ManipulatorStandardTest.php │ │ │ ├── PieceFilterTest.php │ │ │ ├── PlayTest.php │ │ │ └── SquareTest.php │ │ ├── Controller │ │ │ ├── AbstractControllerTest.php │ │ │ ├── GameControllerTest.php │ │ │ ├── MainControllerTest.php │ │ │ ├── PgnControllerTest.php │ │ │ └── PlayerWithAiControllerTest.php │ │ ├── Document │ │ │ ├── GameTest.php │ │ │ ├── HistoryTest.php │ │ │ └── PlayerTest.php │ │ ├── Elo │ │ │ └── CalculatorTest.php │ │ ├── Notation │ │ │ ├── ForsythTest.php │ │ │ └── PgnParser.php │ │ ├── Recorded │ │ │ └── fixtures │ │ │ │ └── immortal.pgn │ │ ├── TwigExtensionTest.php │ │ └── Util │ │ │ └── KeyGeneratorTest.php │ │ ├── Twig │ │ └── LichessExtension.php │ │ └── Util │ │ ├── Cache.php │ │ └── KeyGenerator.php └── Lichess │ ├── ChartBundle │ ├── Chart │ │ ├── GameEndChart.php │ │ ├── PlayerMoveTimeChart.php │ │ ├── PlayerMoveTimeDistributionChart.php │ │ ├── UserEloChart.php │ │ ├── UserWinChart.php │ │ └── UsersEloChart.php │ └── LichessChartBundle.php │ ├── MessageBundle │ ├── Cache.php │ ├── Command │ │ ├── DenormalizeCommand.php │ │ ├── FixMissingMessageCommand.php │ │ └── MigrateCommand.php │ ├── DataFixtures │ │ └── MongoDB │ │ │ └── LoadMessageData.php │ ├── DependencyInjection │ │ └── LichessMessageExtension.php │ ├── Document │ │ ├── Message.php │ │ └── Thread.php │ ├── Event │ │ └── MessageListener.php │ ├── FormFactory │ │ └── NewThreadMessageFormFactory.php │ ├── LichessMessageBundle.php │ ├── Resources │ │ ├── config │ │ │ └── config.xml │ │ ├── public │ │ │ └── css │ │ │ │ ├── message.css │ │ │ │ └── message.png │ │ └── views │ │ │ ├── Message │ │ │ ├── inbox.html.twig │ │ │ ├── newThread.html.twig │ │ │ ├── sent.html.twig │ │ │ ├── thread.html.twig │ │ │ └── threads_list.html.twig │ │ │ └── layout.html.twig │ ├── Security │ │ └── InteractiveLoginListener.php │ └── Twig │ │ └── Extension │ │ └── MessageExtension.php │ ├── OpeningBundle │ ├── Config │ │ ├── AiGameConfig.php │ │ ├── GameConfig.php │ │ ├── GameConfigView.php │ │ └── Persistence.php │ ├── Controller │ │ ├── ConfigController.php │ │ └── HookController.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── LichessOpeningExtension.php │ ├── Document │ │ ├── Hook.php │ │ └── HookRepository.php │ ├── Form │ │ ├── AiGameConfigFormType.php │ │ ├── GameConfigFormManager.php │ │ └── GameConfigFormType.php │ ├── LichessOpeningBundle.php │ ├── Resources │ │ ├── config │ │ │ ├── config_persistence.xml │ │ │ ├── form.xml │ │ │ ├── routing.yml │ │ │ └── starter.xml │ │ ├── public │ │ │ ├── css │ │ │ │ ├── hook.css │ │ │ │ └── opening.css │ │ │ └── js │ │ │ │ ├── hook.js │ │ │ │ └── opening.js │ │ └── views │ │ │ ├── Config │ │ │ ├── ai.html.twig │ │ │ ├── config.html.twig │ │ │ ├── friend.html.twig │ │ │ └── hook.html.twig │ │ │ ├── Hook │ │ │ └── hook.html.twig │ │ │ ├── index.html.twig │ │ │ ├── layoutOpening.html.twig │ │ │ └── startButtons.html.twig │ └── Starter │ │ ├── AiStarter.php │ │ ├── ApiStarter.php │ │ ├── FriendStarter.php │ │ ├── GameStarter.php │ │ ├── Joiner.php │ │ └── StarterInterface.php │ └── TranslationBundle │ ├── Command │ ├── DumpTranslationCommand.php │ ├── FetchTranslationsCommand.php │ └── FixTranslationCommand.php │ ├── Controller │ └── ContributionController.php │ ├── DependencyInjection │ └── LichessTranslationExtension.php │ ├── Document │ ├── Translation.php │ └── TranslationRepository.php │ ├── Fetcher.php │ ├── Form │ └── TranslationFormType.php │ ├── LichessTranslationBundle.php │ ├── Provider.php │ ├── Resources │ ├── config │ │ ├── config.xml │ │ └── routing.yml │ ├── locales.php │ └── views │ │ ├── Contribution │ │ ├── incomplete.html.twig │ │ ├── index.html.twig │ │ ├── locale.html.twig │ │ ├── missing.html.twig │ │ └── translators.html.twig │ │ └── layout.html.twig │ ├── Switcher.php │ ├── Tests │ └── Acceptance │ │ ├── ContributionAcceptanceTest.php │ │ └── TranslationAcceptanceTest.php │ ├── TranslationManager.php │ └── Twig │ └── TranslationExtension.php └── web ├── favicon.ico ├── fortune.php ├── images ├── knight.svg ├── lichess_time_control.jpg ├── maintenance.jpg ├── screenshot.jpg ├── screenshot1.png ├── screenshot2.png └── screenshot3.png ├── index.php ├── index_dev.php ├── maintenance.php ├── robots.txt └── vendor └── pgn4web /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/README.markdown -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/TODO -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/java/yuicompressor-2.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/Resources/java/yuicompressor-2.4.7.jar -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/akismet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/akismet.yml -------------------------------------------------------------------------------- /app/config/apc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/apc.yml -------------------------------------------------------------------------------- /app/config/assetic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/assetic.yml -------------------------------------------------------------------------------- /app/config/comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/comment.yml -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/doctrine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/doctrine.yml -------------------------------------------------------------------------------- /app/config/elastica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/elastica.yml -------------------------------------------------------------------------------- /app/config/forum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/forum.yml -------------------------------------------------------------------------------- /app/config/framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/framework.yml -------------------------------------------------------------------------------- /app/config/lichess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/lichess.yml -------------------------------------------------------------------------------- /app/config/message.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/message.yml -------------------------------------------------------------------------------- /app/config/monolog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/monolog.yml -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/twig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/twig.yml -------------------------------------------------------------------------------- /app/config/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/config/user.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/console -------------------------------------------------------------------------------- /app/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/app/phpunit.xml -------------------------------------------------------------------------------- /bin/base_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/base_script.php -------------------------------------------------------------------------------- /bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/deploy -------------------------------------------------------------------------------- /bin/install_crafty_books: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/install_crafty_books -------------------------------------------------------------------------------- /bin/maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/maintenance -------------------------------------------------------------------------------- /bin/refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/refresh -------------------------------------------------------------------------------- /bin/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/reload -------------------------------------------------------------------------------- /bin/rsync_exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/rsync_exclude -------------------------------------------------------------------------------- /bin/translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/translate -------------------------------------------------------------------------------- /bin/vendors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/vendors -------------------------------------------------------------------------------- /bin/vendors_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/bin/vendors_status -------------------------------------------------------------------------------- /deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/deps -------------------------------------------------------------------------------- /deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/deps.lock -------------------------------------------------------------------------------- /src/Application/ForumBundle/Akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Akismet.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/AuthorNamePersistence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/AuthorNamePersistence.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Blamer/PostBlamer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Blamer/PostBlamer.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Command/RemoveAllFromAuthorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Command/RemoveAllFromAuthorCommand.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Command/RemoveRecentAnonymousCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Command/RemoveRecentAnonymousCommand.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Command/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Command/UpdateCommand.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Controller/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Controller/PostController.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Controller/SearchController.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Controller/TopicController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Controller/TopicController.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/DataFixtures/MongoDB/LoadForumData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/DataFixtures/MongoDB/LoadForumData.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/DependencyInjection/LichessForumExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/DependencyInjection/LichessForumExtension.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Document/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Document/Category.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Document/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Document/Post.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Document/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Document/Topic.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Form/NewTopicFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Form/NewTopicFormType.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Form/PostFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Form/PostFormType.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/LichessForumBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/LichessForumBundle.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/NewPostsCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/NewPostsCache.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/public/css/forum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/public/css/forum.css -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/public/js/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/public/js/form.js -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Category/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Category/list.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Category/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Category/show.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Category/show.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Category/show.xml.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Forum/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Forum/index.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Post/captcha.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Post/captcha.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Post/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Post/list.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Post/list.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Post/list.xml.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Post/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Post/new.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Post/recent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Post/recent.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Search/form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Search/form.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Search/results.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Search/results.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Search/search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Search/search.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Topic/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Topic/list.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Topic/list.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Topic/list.xml.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Topic/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Topic/new.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Topic/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Topic/show.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/Topic/show.xml.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/Topic/show.xml.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Application/ForumBundle/Resources/views/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Resources/views/pagination.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Search/ModelToElasticaTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Search/ModelToElasticaTransformer.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AbstractAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AbstractAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AbstractCreatePostAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AbstractCreatePostAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AbstractCreateTopicAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AbstractCreateTopicAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AnonymousCreatePostAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AnonymousCreatePostAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AnonymousCreateTopicAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AnonymousCreateTopicAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AuthenticatedCreatePostAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AuthenticatedCreatePostAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/AuthenticatedCreateTopicAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/AuthenticatedCreateTopicAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/CategoryAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/CategoryAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/IndexAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/IndexAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Acceptance/TopicAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Acceptance/TopicAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Tests/Model/PostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Tests/Model/PostTest.php -------------------------------------------------------------------------------- /src/Application/ForumBundle/Twig/ForumExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/ForumBundle/Twig/ForumExtension.php -------------------------------------------------------------------------------- /src/Application/UserBundle/AccountCloser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/AccountCloser.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Command/FixUsernameCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Command/FixUsernameCommand.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Command/MigrateUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Command/MigrateUserCommand.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Command/UserChatBanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Command/UserChatBanCommand.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/CheatController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/CheatController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/ExportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/ExportController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/OnlineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/OnlineController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/ProfileController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/RegistrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/RegistrationController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Controller/StatsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Controller/StatsController.php -------------------------------------------------------------------------------- /src/Application/UserBundle/DataFixtures/MongoDB/LoadUserData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/DataFixtures/MongoDB/LoadUserData.php -------------------------------------------------------------------------------- /src/Application/UserBundle/DependencyInjection/LichessUserExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/DependencyInjection/LichessUserExtension.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Document/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Document/User.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Document/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Document/UserRepository.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Form/RegistrationFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Form/RegistrationFormType.php -------------------------------------------------------------------------------- /src/Application/UserBundle/GameExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/GameExporter.php -------------------------------------------------------------------------------- /src/Application/UserBundle/LichessUserBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/LichessUserBundle.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/form.xml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/repository.xml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/routing/online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/routing/online.yml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/routing/profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/routing/profile.yml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/routing/registration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/routing/registration.yml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/routing/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/routing/security.yml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/config/routing/stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/config/routing/stats.yml -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/css/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/css/list.css -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/css/show.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/css/show.css -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/css/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/css/signup.css -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/css/useredit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/css/useredit.css -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/js/charts.js -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/js/jquery.editable-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/js/jquery.editable-set.js -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/js/jquery.editable-set.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/js/jquery.editable-set.min.js -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/js/user.js -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/public/js/useredit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/public/js/useredit.js -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/Registration/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/Registration/register.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/Security/embeddedLogin.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/Security/embeddedLogin.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/Stats/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/Stats/index.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/closeAccount.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/closeAccount.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/disabled.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/disabled.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/home.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/home.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/list.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/listOnline.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/listOnline.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/preview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/preview.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/show.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/showMenu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/showMenu.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/showOrHome.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/showOrHome.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/User/unknownUser.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/User/unknownUser.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Resources/views/layoutUser.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Resources/views/layoutUser.html.twig -------------------------------------------------------------------------------- /src/Application/UserBundle/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Settings.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Tests/Acceptance/AbstractAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Tests/Acceptance/AbstractAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Tests/Acceptance/SigninAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Tests/Acceptance/SigninAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Tests/Acceptance/SignupAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Tests/Acceptance/SignupAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Tests/Acceptance/UserListAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Tests/Acceptance/UserListAcceptanceTest.php -------------------------------------------------------------------------------- /src/Application/UserBundle/Tests/Acceptance/UserPageAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Application/UserBundle/Tests/Acceptance/UserPageAcceptanceTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Blamer/PlayerBlamer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Blamer/PlayerBlamer.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/CachePagerAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/CachePagerAdapter.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Board.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Board.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Generator.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Generator/Chess960PositionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Generator/Chess960PositionGenerator.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Generator/PositionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Generator/PositionGenerator.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Generator/StandardPositionGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Generator/StandardPositionGenerator.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/PieceFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/PieceFilter.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Rematcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Rematcher.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Chess/Square.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Chess/Square.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Command/DenormalizeIsAiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Command/DenormalizeIsAiCommand.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Command/GameDebugCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Command/GameDebugCommand.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Command/WikiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Command/WikiCommand.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/ConsoleGuardRail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/ConsoleGuardRail.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/ApiController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/ExceptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/ExceptionController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/GameController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/GameController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/MainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/MainController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/PgnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/PgnController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/PlayerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/PlayerController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Controller/WikiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Controller/WikiController.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Critic/UserCritic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Critic/UserCritic.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/DependencyInjection/LichessExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/DependencyInjection/LichessExtension.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/Clock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/Clock.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/Game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/Game.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/GameRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/GameRepository.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/History.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/HistoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/HistoryRepository.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/Piece.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/Piece.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/Player.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/WikiPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/WikiPage.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Document/WikiPageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Document/WikiPageRepository.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Elo/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Elo/Calculator.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Elo/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Elo/Updater.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/KernelRequestListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/KernelRequestListener.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/LICENSE -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/LichessBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/LichessBundle.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Lila.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Lila.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Logger.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Notation/Forsyth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Notation/Forsyth.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Provider.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/cache.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/chess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/chess.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/lila.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/lila.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/listener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/listener.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/model.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/provider.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/config/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/config/test.xml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/browser.html -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/analyse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/analyse.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/board.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/board.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/common.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/gamelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/gamelist.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/gamestats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/gamestats.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/jquery-ui.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/reset.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/share.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/share.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/tipsy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/tipsy.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/tooltip.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/translation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/translation.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/css/wiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/css/wiki.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/add.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/balloon.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/big-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/big-right.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/black_king.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browser-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browser-chrome.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browser-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browser-firefox.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browser-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browser-opera.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browser-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browser-safari.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browsers.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/browsers.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/browsers.xcf -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/buttons.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/clock.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/close24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/close24.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/engine_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/engine_big.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/engine_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/engine_small.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/error.jpg -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/exchange.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/eye.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/feed-balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/feed-balloon.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/head_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/head_bg.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/hloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/hloader.gif -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/interrogation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/interrogation.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/kb14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/kb14.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/kw14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/kw14.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/loader2.gif -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/opensource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/opensource.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/over5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/over5.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/play32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/play32.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/rematch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/rematch.gif -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/s16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/s16.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sover.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite_color.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite_color_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite_color_24.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite_mini.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite_question.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/sprite_question.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/sprite_question.xcf -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/system.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/user.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/images/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/images/white_king.png -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/analyse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/analyse.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/chart.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/clock.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/ctrl.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/game.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/gamelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/gamelist.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/gamestats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/gamestats.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/infinitescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/infinitescroll.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/socket.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/tipsy.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/tipsy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/tipsy.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/js/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/js/translation.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/sound/alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/sound/alert.mp3 -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/sound/alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/sound/alert.ogg -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/google.corechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/google.corechart.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery-ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery-ui.autocomplete.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery-ui.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.infinitescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.infinitescroll.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.infinitescroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.infinitescroll.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.json-2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.json-2.3.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.json-2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.json-2.3.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/jquery.mousewheel.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.min.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/qtip/jquery.qtip.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/tipsy/images/tipsy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/tipsy/images/tipsy.gif -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/tipsy/javascripts/jquery.tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/tipsy/javascripts/jquery.tipsy.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/tipsy/javascripts/jquery.tipsy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/tipsy/javascripts/jquery.tipsy.min.js -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/public/vendor/tipsy/stylesheets/tipsy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/public/vendor/tipsy/stylesheets/tipsy.css -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.af.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.af.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ar.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.az.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.az.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.be.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.be.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.bg.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.bs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.bs.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ca.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.cs.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.cy.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.da.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.da.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.de.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.el.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.eo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.eo.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.es.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.et.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.et.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.fa.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.fi.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.fr.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.frp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.frp.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ga.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.gd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.gd.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.gl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.gl.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.he.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.hi.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.hr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.hr.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.hu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.hu.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.hy.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.id.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.is.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.is.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.it.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ja.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ka.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.lt.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.lv.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.mk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.mk.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.mn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.mn.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.mr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.mr.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.nb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.nb.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.nl.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.nn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.nn.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.no.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.pl.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ps.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.pt.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ro.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.ru.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.si.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sk.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sl.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sq.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sr.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sv.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.sw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.sw.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.te.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.te.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.th.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.tk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.tk.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.tp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.tp.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.tr.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.uk.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.vi.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/translations/messages.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/translations/messages.zh.yml -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Exception/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Exception/base.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Exception/error.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Exception/error.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/cemetery.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/cemetery.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/clock.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/clock.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/join.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/join.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/layoutGame.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/layoutGame.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/layoutGameList.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/layoutGameList.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/list.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listAll.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listAll.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listCurrent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listCurrent.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listCurrentInner.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listCurrentInner.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listMates.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listMates.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listSuspicious.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listSuspicious.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/listWidget.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/listWidget.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/share.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/share.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/stats.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/stats.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/table.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/table.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/tableEnd.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/tableEnd.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Game/watchTable.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Game/watchTable.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Main/connectionLost.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Main/connectionLost.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Main/staticBoard_black.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Main/staticBoard_black.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Main/staticBoard_white.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Main/staticBoard_white.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Pgn/analyse.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Pgn/analyse.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Pgn/layoutAnalyse.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Pgn/layoutAnalyse.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/layoutPlayer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/layoutPlayer.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/player.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/player.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/room.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/room.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/show.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/waitFriend.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/waitFriend.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/waitOpponent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/waitOpponent.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Player/watch.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Player/watch.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Wiki/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Wiki/layout.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Wiki/pages.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Wiki/pages.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/Wiki/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/Wiki/show.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Resources/views/layoutCommon.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Resources/views/layoutCommon.html.twig -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Session/Storage/FileSessionStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Session/Storage/FileSessionStorage.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Session/TestSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Session/TestSession.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Ai/CraftyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Ai/CraftyTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Ai/StupidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Ai/StupidTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/BoardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/BoardTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/GeneratorTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/Manipulator960Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/Manipulator960Test.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/ManipulatorAbstractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/ManipulatorAbstractTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/ManipulatorStandardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/ManipulatorStandardTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/PieceFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/PieceFilterTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/PlayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/PlayTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Chess/SquareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Chess/SquareTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Controller/AbstractControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Controller/AbstractControllerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Controller/GameControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Controller/GameControllerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Controller/MainControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Controller/MainControllerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Controller/PgnControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Controller/PgnControllerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Controller/PlayerWithAiControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Controller/PlayerWithAiControllerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Document/GameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Document/GameTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Document/HistoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Document/HistoryTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Document/PlayerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Document/PlayerTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Elo/CalculatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Elo/CalculatorTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Notation/ForsythTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Notation/ForsythTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Notation/PgnParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Notation/PgnParser.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Recorded/fixtures/immortal.pgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Recorded/fixtures/immortal.pgn -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/TwigExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/TwigExtensionTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Tests/Util/KeyGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Tests/Util/KeyGeneratorTest.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Twig/LichessExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Twig/LichessExtension.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Util/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Util/Cache.php -------------------------------------------------------------------------------- /src/Bundle/LichessBundle/Util/KeyGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Bundle/LichessBundle/Util/KeyGenerator.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/GameEndChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/GameEndChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/PlayerMoveTimeChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/PlayerMoveTimeChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/PlayerMoveTimeDistributionChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/PlayerMoveTimeDistributionChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/UserEloChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/UserEloChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/UserWinChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/UserWinChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/Chart/UsersEloChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/Chart/UsersEloChart.php -------------------------------------------------------------------------------- /src/Lichess/ChartBundle/LichessChartBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/ChartBundle/LichessChartBundle.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Cache.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Command/DenormalizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Command/DenormalizeCommand.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Command/FixMissingMessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Command/FixMissingMessageCommand.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Command/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Command/MigrateCommand.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/DataFixtures/MongoDB/LoadMessageData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/DataFixtures/MongoDB/LoadMessageData.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/DependencyInjection/LichessMessageExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/DependencyInjection/LichessMessageExtension.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Document/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Document/Message.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Document/Thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Document/Thread.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Event/MessageListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Event/MessageListener.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/FormFactory/NewThreadMessageFormFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/FormFactory/NewThreadMessageFormFactory.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/LichessMessageBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/LichessMessageBundle.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/public/css/message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/public/css/message.css -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/public/css/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/public/css/message.png -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/Message/inbox.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/Message/inbox.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/Message/newThread.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/Message/newThread.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/Message/sent.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/Message/sent.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/Message/thread.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/Message/thread.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/Message/threads_list.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/Message/threads_list.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Security/InteractiveLoginListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Security/InteractiveLoginListener.php -------------------------------------------------------------------------------- /src/Lichess/MessageBundle/Twig/Extension/MessageExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/MessageBundle/Twig/Extension/MessageExtension.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Config/AiGameConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Config/AiGameConfig.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Config/GameConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Config/GameConfig.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Config/GameConfigView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Config/GameConfigView.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Config/Persistence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Config/Persistence.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Controller/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Controller/ConfigController.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Controller/HookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Controller/HookController.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/DependencyInjection/LichessOpeningExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/DependencyInjection/LichessOpeningExtension.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Document/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Document/Hook.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Document/HookRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Document/HookRepository.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Form/AiGameConfigFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Form/AiGameConfigFormType.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Form/GameConfigFormManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Form/GameConfigFormManager.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Form/GameConfigFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Form/GameConfigFormType.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/LichessOpeningBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/LichessOpeningBundle.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/config/config_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/config/config_persistence.xml -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/config/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/config/form.xml -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/config/starter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/config/starter.xml -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/public/css/hook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/public/css/hook.css -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/public/css/opening.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/public/css/opening.css -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/public/js/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/public/js/hook.js -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/public/js/opening.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/public/js/opening.js -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/Config/ai.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/Config/ai.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/Config/config.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/Config/config.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/Config/friend.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/Config/friend.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/Config/hook.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/Config/hook.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/Hook/hook.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/Hook/hook.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/index.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/layoutOpening.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/layoutOpening.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Resources/views/startButtons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Resources/views/startButtons.html.twig -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/AiStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/AiStarter.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/ApiStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/ApiStarter.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/FriendStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/FriendStarter.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/GameStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/GameStarter.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/Joiner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/Joiner.php -------------------------------------------------------------------------------- /src/Lichess/OpeningBundle/Starter/StarterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/OpeningBundle/Starter/StarterInterface.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Command/DumpTranslationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Command/DumpTranslationCommand.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Command/FetchTranslationsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Command/FetchTranslationsCommand.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Command/FixTranslationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Command/FixTranslationCommand.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Controller/ContributionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Controller/ContributionController.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/DependencyInjection/LichessTranslationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/DependencyInjection/LichessTranslationExtension.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Document/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Document/Translation.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Document/TranslationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Document/TranslationRepository.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Fetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Fetcher.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Form/TranslationFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Form/TranslationFormType.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/LichessTranslationBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/LichessTranslationBundle.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Provider.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/config/config.xml -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/locales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/locales.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/Contribution/incomplete.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/Contribution/incomplete.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/Contribution/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/Contribution/index.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/Contribution/locale.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/Contribution/locale.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/Contribution/missing.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/Contribution/missing.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/Contribution/translators.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/Contribution/translators.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Switcher.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Tests/Acceptance/ContributionAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Tests/Acceptance/ContributionAcceptanceTest.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Tests/Acceptance/TranslationAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Tests/Acceptance/TranslationAcceptanceTest.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/TranslationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/TranslationManager.php -------------------------------------------------------------------------------- /src/Lichess/TranslationBundle/Twig/TranslationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/src/Lichess/TranslationBundle/Twig/TranslationExtension.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/fortune.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/fortune.php -------------------------------------------------------------------------------- /web/images/knight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/knight.svg -------------------------------------------------------------------------------- /web/images/lichess_time_control.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/lichess_time_control.jpg -------------------------------------------------------------------------------- /web/images/maintenance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/maintenance.jpg -------------------------------------------------------------------------------- /web/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/screenshot.jpg -------------------------------------------------------------------------------- /web/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/screenshot1.png -------------------------------------------------------------------------------- /web/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/screenshot2.png -------------------------------------------------------------------------------- /web/images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/images/screenshot3.png -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/index.php -------------------------------------------------------------------------------- /web/index_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/index_dev.php -------------------------------------------------------------------------------- /web/maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/maintenance.php -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/lichess-old/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/vendor/pgn4web: -------------------------------------------------------------------------------- 1 | ../../vendor/pgn4web --------------------------------------------------------------------------------