├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── Procfile ├── README.md ├── app ├── css │ ├── app.css │ ├── bootstrap.min.css │ ├── codemirror.css │ ├── dark │ │ ├── darkTheme.css │ │ └── topcoder.css │ ├── light │ │ ├── lightTheme.css │ │ └── topcoder.css │ ├── local.css │ ├── notifications.css │ └── orange │ │ ├── orangeTheme.css │ │ └── topcoder.css ├── data │ ├── ZeroClipboard.swf │ ├── assignmentMethod.json │ ├── balloons.json │ ├── challengers-div1.json │ ├── challengers-div1room1.json │ ├── challengers-div2.json │ ├── challengers-div2room1.json │ ├── challenges-div1.json │ ├── challenges-div1room1.json │ ├── challenges-div2.json │ ├── challenges-div2room1.json │ ├── chat.mp3 │ ├── compile-errors.json │ ├── languages.json │ ├── management-hiddenContests.json │ ├── management-keys.json │ ├── management-pastContests.json │ ├── my-status.json │ ├── notification.mp3 │ ├── notifications-0.json │ ├── notifications-1.json │ ├── notifications-2.json │ ├── notifications-3.json │ ├── notifications.json │ ├── past-notifications.json │ ├── practice-problem-filter-options.json │ ├── problems.json │ ├── themes.json │ └── upload │ │ ├── Thumbs.db │ │ └── user.png ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── baloon-arrow-d.png │ ├── baloon-arrow.png │ ├── black-header.png │ ├── check-mark.png │ ├── copy-link.png │ ├── dark │ │ ├── bg.png │ │ ├── checkbox.png │ │ ├── company_logo.png │ │ ├── company_logo_small.png │ │ ├── compiled.png │ │ ├── expand-alt.png │ │ ├── filter-bg.png │ │ ├── help-dark.png │ │ ├── icon-bug.png │ │ ├── loadinfo.net.gif │ │ ├── popup-bg.png │ │ ├── preloader.gif │ │ ├── saved.png │ │ ├── sprite-2.png │ │ ├── sprite-codeArena.png │ │ ├── sprite-contestManagement.png │ │ ├── sprite-practiceRoom.png │ │ ├── sprite-room-summary.png │ │ ├── sprite-test.png │ │ ├── sprite-wizard.png │ │ ├── sprite.png │ │ └── submitted.png │ ├── dn.png │ ├── entering.png │ ├── facebook.png │ ├── favicon.ico │ ├── feedbackArrow.png │ ├── history.png │ ├── ico-close.png │ ├── leaving.png │ ├── light │ │ ├── bg.png │ │ ├── checkbox.png │ │ ├── company_logo.png │ │ ├── company_logo_small.png │ │ ├── compiled.png │ │ ├── expand-alt.png │ │ ├── filter-bg.png │ │ ├── help-light.png │ │ ├── icon-bug.png │ │ ├── loadinfo.net.gif │ │ ├── popup-bg.png │ │ ├── preloader.gif │ │ ├── saved.png │ │ ├── sprite-2.png │ │ ├── sprite-codeArena.png │ │ ├── sprite-contestManagement.png │ │ ├── sprite-practiceRoom.png │ │ ├── sprite-room-summary.png │ │ ├── sprite-test.png │ │ ├── sprite-wizard.png │ │ ├── sprite.png │ │ ├── submitted.png │ │ └── twitter.png │ ├── loading-bl.png │ ├── loading-o.png │ ├── loading.png │ ├── match_editorial_ico.png │ ├── orange │ │ ├── checkbox.png │ │ ├── company_logo.png │ │ ├── company_logo_small.png │ │ ├── compiled.png │ │ ├── expand-alt.png │ │ ├── filter-bg.png │ │ ├── help-orange.png │ │ ├── icon-bug.png │ │ ├── loadinfo.net.gif │ │ ├── popup-bg.png │ │ ├── preloader.gif │ │ ├── saved.png │ │ ├── select.png │ │ ├── sprite-2.png │ │ ├── sprite-codeArena.png │ │ ├── sprite-contestManagement.png │ │ ├── sprite-contestPlan.png │ │ ├── sprite-practiceRoom.png │ │ ├── sprite-room-summary.png │ │ ├── sprite-test.png │ │ ├── sprite-wizard.png │ │ ├── sprite.png │ │ └── submitted.png │ ├── refresh_system_test.png │ ├── select.png │ ├── sprite-contestPlan.png │ ├── sprite-new-header.png │ ├── tc-arena-logo.png │ ├── twitter.png │ ├── up.png │ └── wizard-icon.png ├── index.html ├── index.html.local ├── js │ ├── app.js │ ├── config.def.js │ ├── controllers │ │ ├── activeContestsCtrl.js │ │ ├── activeUsersCtrl.js │ │ ├── anonHomeCtrl.js │ │ ├── balloonCtrl.js │ │ ├── baseCtrl.js │ │ ├── challengesAdvertisingCtrl.js │ │ ├── chatAreaCtrl.js │ │ ├── connectionStatusCtrl.js │ │ ├── contestCountdownCtrl.js │ │ ├── contestCreationCtrl.js │ │ ├── contestManagementCtrl.js │ │ ├── contestPlanCtrl.js │ │ ├── contestScheduleConfigCtrl.js │ │ ├── contestStatsCtrl.js │ │ ├── contestSummaryCtrl.js │ │ ├── contestTermsConfigCtrl.js │ │ ├── errorCtrl.js │ │ ├── leaderboardCtrl.js │ │ ├── leaderboardUsersCtrl.js │ │ ├── manageAnswerCtrl.js │ │ ├── manageQuestionCtrl.js │ │ ├── matchScheduleCtrl.js │ │ ├── memberFeedbackCtrl.js │ │ ├── messageArenaCtrl.js │ │ ├── notificationsCtrl.js │ │ ├── overviewCtrl.js │ │ ├── overviewLeaderboardCtrl.js │ │ ├── practiceProblemListCtrl.js │ │ ├── registrationQuestionsCtrl.js │ │ ├── resizerCtrl.js │ │ ├── tcTimeCtrl.js │ │ ├── testPanelCtrl.js │ │ ├── userCodingCtrl.js │ │ ├── userCodingEditorCtrl.js │ │ ├── userCodingTimeCtrl.js │ │ ├── userContestCtrl.js │ │ ├── userContestDetailCtrl.js │ │ ├── userDashboardCtrl.js │ │ └── userProfileCtrl.js │ ├── directives │ │ ├── activeUser.js │ │ ├── activecontests.js │ │ ├── autoFillFix.js │ │ ├── challengesAdvertiser.js │ │ ├── chatSettings.js │ │ ├── chatarea.js │ │ ├── codingTime.js │ │ ├── codingeditor.js │ │ ├── codingproblem.js │ │ ├── connectionstatus.js │ │ ├── contestPlan.js │ │ ├── contestScheduleConfig.js │ │ ├── contestSummary.js │ │ ├── contestTermsConfig.js │ │ ├── contestcountdown.js │ │ ├── conteststats.js │ │ ├── leaderboard.js │ │ ├── leaderboardusers.js │ │ ├── manageAnswer.js │ │ ├── manageQuestion.js │ │ ├── memberFeedback.js │ │ ├── messageArena.js │ │ ├── ngBallons.js │ │ ├── ngScrollbarAutoscroll.js │ │ ├── overview.js │ │ ├── overviewLeaderboard.js │ │ ├── pastNotifications.js │ │ ├── preloader.js │ │ ├── qTip.js │ │ ├── ratingIndicator.js │ │ ├── registrationQuestions.js │ │ ├── resizer.js │ │ ├── sglclick.js │ │ ├── testPanel.js │ │ ├── testReport.js │ │ ├── toggleSetting.js │ │ ├── topcodertime.js │ │ └── twitter.js │ ├── factories.js │ ├── filters.js │ ├── helper.js │ ├── newrelic.js │ ├── resolvers.js │ ├── server_newrelic.js │ └── ucr-processors │ │ ├── CPPProcessor.js │ │ ├── CSharpProcessor.js │ │ ├── JavaProcessor.js │ │ ├── ProcessorHelper.js │ │ ├── UCRProcessorFactory.js │ │ └── VBProcessor.js ├── partials │ ├── anon.home.html │ ├── anon.leaderboard.users.html │ ├── balloons.html │ ├── base.html │ ├── contestCreationWizard.html │ ├── error.html │ ├── leaderboard.html │ ├── memberFeedback.html │ ├── testPanel.html │ ├── testReport.html │ ├── user.activeUsers.html │ ├── user.challenges.advertising.html │ ├── user.chat.area.alert.html │ ├── user.chat.area.coderinfo.html │ ├── user.chat.area.html │ ├── user.chat.settings.html │ ├── user.code.history.html │ ├── user.coding.editor.html │ ├── user.coding.html │ ├── user.coding.problem.html │ ├── user.coding.time.html │ ├── user.connection.html │ ├── user.contest.countdown.html │ ├── user.contest.detail.html │ ├── user.contest.html │ ├── user.contest.management.html │ ├── user.contest.management.manageAnswer.html │ ├── user.contest.management.manageQuestion.html │ ├── user.contest.management.registrationQuestions.html │ ├── user.contest.management.schedule.html │ ├── user.contest.management.terms.html │ ├── user.contest.registrants.html │ ├── user.contest.registration.html │ ├── user.contest.stats.html │ ├── user.contest.summary.html │ ├── user.contestPlan.html │ ├── user.contests.active.html │ ├── user.dashboard.html │ ├── user.matchSchedule.html │ ├── user.messageArena.html │ ├── user.notifications.html │ ├── user.overview.html │ ├── user.overview.leaderboard.html │ ├── user.practiceProblemList.html │ ├── user.profile.details.html │ ├── user.profile.html │ ├── user.profile.privacy.html │ ├── user.profile.terms.html │ └── user.tctime.html └── robots.txt ├── arena-web-deploy.md ├── bower.json ├── config ├── dev-local.bat ├── dev-local.sh ├── tc-dev.sh └── tc-prod.sh ├── docker └── Dockerfile-Build ├── heroku.sh ├── new_relic ├── newrelic.js ├── server_tasks │ ├── grunt-newrelic.js │ └── server_newrelic.js └── tasks │ └── grunt-newrelic.js ├── package.json ├── thirdparty ├── bootstrap-notify │ ├── .gitignore │ ├── History.md │ ├── README.md │ ├── component.json │ ├── css │ │ ├── bootstrap-notify.css │ │ └── styles │ │ │ ├── alert-bangtidy.css │ │ │ └── alert-blackgloss.css │ └── js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-notify.js │ │ └── bootstrap-transition.js ├── jquery.qtip │ ├── imagesloaded.pkg.min.js │ ├── jquery.qtip.css │ ├── jquery.qtip.js │ ├── jquery.qtip.min.css │ ├── jquery.qtip.min.js │ └── jquery.qtip.min.map ├── jquery │ ├── .bower.json │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── component.json │ ├── composer.json │ ├── jquery-migrate.js │ ├── jquery-migrate.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ └── package.json ├── ng-clip │ ├── ZeroClipboard.js │ └── ngClip.js ├── ng-scrollbar │ └── dist │ │ ├── LICENSE │ │ ├── ng-customscrollbar.js │ │ ├── ng-scrollbar.css │ │ ├── ng-scrollbar.js │ │ └── ng-scrollbar.min.css └── perfect-scrollbar │ ├── angular-perfect-scrollbar.js │ ├── perfect-scrollbar.css │ └── perfect-scrollbar.js └── wiki └── img ├── balloon1.png ├── balloon2.png └── balloon3.png /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/README.md -------------------------------------------------------------------------------- /app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/app.css -------------------------------------------------------------------------------- /app/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/codemirror.css -------------------------------------------------------------------------------- /app/css/dark/darkTheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/dark/darkTheme.css -------------------------------------------------------------------------------- /app/css/dark/topcoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/dark/topcoder.css -------------------------------------------------------------------------------- /app/css/light/lightTheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/light/lightTheme.css -------------------------------------------------------------------------------- /app/css/light/topcoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/light/topcoder.css -------------------------------------------------------------------------------- /app/css/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/local.css -------------------------------------------------------------------------------- /app/css/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/notifications.css -------------------------------------------------------------------------------- /app/css/orange/orangeTheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/orange/orangeTheme.css -------------------------------------------------------------------------------- /app/css/orange/topcoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/css/orange/topcoder.css -------------------------------------------------------------------------------- /app/data/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/ZeroClipboard.swf -------------------------------------------------------------------------------- /app/data/assignmentMethod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/assignmentMethod.json -------------------------------------------------------------------------------- /app/data/balloons.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /app/data/challengers-div1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challengers-div1.json -------------------------------------------------------------------------------- /app/data/challengers-div1room1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challengers-div1room1.json -------------------------------------------------------------------------------- /app/data/challengers-div2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challengers-div2.json -------------------------------------------------------------------------------- /app/data/challengers-div2room1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challengers-div2room1.json -------------------------------------------------------------------------------- /app/data/challenges-div1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challenges-div1.json -------------------------------------------------------------------------------- /app/data/challenges-div1room1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challenges-div1room1.json -------------------------------------------------------------------------------- /app/data/challenges-div2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challenges-div2.json -------------------------------------------------------------------------------- /app/data/challenges-div2room1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/challenges-div2room1.json -------------------------------------------------------------------------------- /app/data/chat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/chat.mp3 -------------------------------------------------------------------------------- /app/data/compile-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/compile-errors.json -------------------------------------------------------------------------------- /app/data/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/languages.json -------------------------------------------------------------------------------- /app/data/management-hiddenContests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/management-hiddenContests.json -------------------------------------------------------------------------------- /app/data/management-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/management-keys.json -------------------------------------------------------------------------------- /app/data/management-pastContests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/management-pastContests.json -------------------------------------------------------------------------------- /app/data/my-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/my-status.json -------------------------------------------------------------------------------- /app/data/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notification.mp3 -------------------------------------------------------------------------------- /app/data/notifications-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notifications-0.json -------------------------------------------------------------------------------- /app/data/notifications-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notifications-1.json -------------------------------------------------------------------------------- /app/data/notifications-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notifications-2.json -------------------------------------------------------------------------------- /app/data/notifications-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notifications-3.json -------------------------------------------------------------------------------- /app/data/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/notifications.json -------------------------------------------------------------------------------- /app/data/past-notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/past-notifications.json -------------------------------------------------------------------------------- /app/data/practice-problem-filter-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/practice-problem-filter-options.json -------------------------------------------------------------------------------- /app/data/problems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/problems.json -------------------------------------------------------------------------------- /app/data/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/themes.json -------------------------------------------------------------------------------- /app/data/upload/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/upload/Thumbs.db -------------------------------------------------------------------------------- /app/data/upload/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/data/upload/user.png -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/img/baloon-arrow-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/baloon-arrow-d.png -------------------------------------------------------------------------------- /app/img/baloon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/baloon-arrow.png -------------------------------------------------------------------------------- /app/img/black-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/black-header.png -------------------------------------------------------------------------------- /app/img/check-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/check-mark.png -------------------------------------------------------------------------------- /app/img/copy-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/copy-link.png -------------------------------------------------------------------------------- /app/img/dark/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/bg.png -------------------------------------------------------------------------------- /app/img/dark/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/checkbox.png -------------------------------------------------------------------------------- /app/img/dark/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/company_logo.png -------------------------------------------------------------------------------- /app/img/dark/company_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/company_logo_small.png -------------------------------------------------------------------------------- /app/img/dark/compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/compiled.png -------------------------------------------------------------------------------- /app/img/dark/expand-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/expand-alt.png -------------------------------------------------------------------------------- /app/img/dark/filter-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/filter-bg.png -------------------------------------------------------------------------------- /app/img/dark/help-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/help-dark.png -------------------------------------------------------------------------------- /app/img/dark/icon-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/icon-bug.png -------------------------------------------------------------------------------- /app/img/dark/loadinfo.net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/loadinfo.net.gif -------------------------------------------------------------------------------- /app/img/dark/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/popup-bg.png -------------------------------------------------------------------------------- /app/img/dark/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/preloader.gif -------------------------------------------------------------------------------- /app/img/dark/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/saved.png -------------------------------------------------------------------------------- /app/img/dark/sprite-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-2.png -------------------------------------------------------------------------------- /app/img/dark/sprite-codeArena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-codeArena.png -------------------------------------------------------------------------------- /app/img/dark/sprite-contestManagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-contestManagement.png -------------------------------------------------------------------------------- /app/img/dark/sprite-practiceRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-practiceRoom.png -------------------------------------------------------------------------------- /app/img/dark/sprite-room-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-room-summary.png -------------------------------------------------------------------------------- /app/img/dark/sprite-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-test.png -------------------------------------------------------------------------------- /app/img/dark/sprite-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite-wizard.png -------------------------------------------------------------------------------- /app/img/dark/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/sprite.png -------------------------------------------------------------------------------- /app/img/dark/submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dark/submitted.png -------------------------------------------------------------------------------- /app/img/dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/dn.png -------------------------------------------------------------------------------- /app/img/entering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/entering.png -------------------------------------------------------------------------------- /app/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/facebook.png -------------------------------------------------------------------------------- /app/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/favicon.ico -------------------------------------------------------------------------------- /app/img/feedbackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/feedbackArrow.png -------------------------------------------------------------------------------- /app/img/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/history.png -------------------------------------------------------------------------------- /app/img/ico-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/ico-close.png -------------------------------------------------------------------------------- /app/img/leaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/leaving.png -------------------------------------------------------------------------------- /app/img/light/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/bg.png -------------------------------------------------------------------------------- /app/img/light/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/checkbox.png -------------------------------------------------------------------------------- /app/img/light/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/company_logo.png -------------------------------------------------------------------------------- /app/img/light/company_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/company_logo_small.png -------------------------------------------------------------------------------- /app/img/light/compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/compiled.png -------------------------------------------------------------------------------- /app/img/light/expand-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/expand-alt.png -------------------------------------------------------------------------------- /app/img/light/filter-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/filter-bg.png -------------------------------------------------------------------------------- /app/img/light/help-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/help-light.png -------------------------------------------------------------------------------- /app/img/light/icon-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/icon-bug.png -------------------------------------------------------------------------------- /app/img/light/loadinfo.net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/loadinfo.net.gif -------------------------------------------------------------------------------- /app/img/light/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/popup-bg.png -------------------------------------------------------------------------------- /app/img/light/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/preloader.gif -------------------------------------------------------------------------------- /app/img/light/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/saved.png -------------------------------------------------------------------------------- /app/img/light/sprite-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-2.png -------------------------------------------------------------------------------- /app/img/light/sprite-codeArena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-codeArena.png -------------------------------------------------------------------------------- /app/img/light/sprite-contestManagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-contestManagement.png -------------------------------------------------------------------------------- /app/img/light/sprite-practiceRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-practiceRoom.png -------------------------------------------------------------------------------- /app/img/light/sprite-room-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-room-summary.png -------------------------------------------------------------------------------- /app/img/light/sprite-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-test.png -------------------------------------------------------------------------------- /app/img/light/sprite-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite-wizard.png -------------------------------------------------------------------------------- /app/img/light/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/sprite.png -------------------------------------------------------------------------------- /app/img/light/submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/submitted.png -------------------------------------------------------------------------------- /app/img/light/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/light/twitter.png -------------------------------------------------------------------------------- /app/img/loading-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/loading-bl.png -------------------------------------------------------------------------------- /app/img/loading-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/loading-o.png -------------------------------------------------------------------------------- /app/img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/loading.png -------------------------------------------------------------------------------- /app/img/match_editorial_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/match_editorial_ico.png -------------------------------------------------------------------------------- /app/img/orange/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/checkbox.png -------------------------------------------------------------------------------- /app/img/orange/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/company_logo.png -------------------------------------------------------------------------------- /app/img/orange/company_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/company_logo_small.png -------------------------------------------------------------------------------- /app/img/orange/compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/compiled.png -------------------------------------------------------------------------------- /app/img/orange/expand-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/expand-alt.png -------------------------------------------------------------------------------- /app/img/orange/filter-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/filter-bg.png -------------------------------------------------------------------------------- /app/img/orange/help-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/help-orange.png -------------------------------------------------------------------------------- /app/img/orange/icon-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/icon-bug.png -------------------------------------------------------------------------------- /app/img/orange/loadinfo.net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/loadinfo.net.gif -------------------------------------------------------------------------------- /app/img/orange/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/popup-bg.png -------------------------------------------------------------------------------- /app/img/orange/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/preloader.gif -------------------------------------------------------------------------------- /app/img/orange/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/saved.png -------------------------------------------------------------------------------- /app/img/orange/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/select.png -------------------------------------------------------------------------------- /app/img/orange/sprite-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-2.png -------------------------------------------------------------------------------- /app/img/orange/sprite-codeArena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-codeArena.png -------------------------------------------------------------------------------- /app/img/orange/sprite-contestManagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-contestManagement.png -------------------------------------------------------------------------------- /app/img/orange/sprite-contestPlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-contestPlan.png -------------------------------------------------------------------------------- /app/img/orange/sprite-practiceRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-practiceRoom.png -------------------------------------------------------------------------------- /app/img/orange/sprite-room-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-room-summary.png -------------------------------------------------------------------------------- /app/img/orange/sprite-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-test.png -------------------------------------------------------------------------------- /app/img/orange/sprite-wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite-wizard.png -------------------------------------------------------------------------------- /app/img/orange/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/sprite.png -------------------------------------------------------------------------------- /app/img/orange/submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/orange/submitted.png -------------------------------------------------------------------------------- /app/img/refresh_system_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/refresh_system_test.png -------------------------------------------------------------------------------- /app/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/select.png -------------------------------------------------------------------------------- /app/img/sprite-contestPlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/sprite-contestPlan.png -------------------------------------------------------------------------------- /app/img/sprite-new-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/sprite-new-header.png -------------------------------------------------------------------------------- /app/img/tc-arena-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/tc-arena-logo.png -------------------------------------------------------------------------------- /app/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/twitter.png -------------------------------------------------------------------------------- /app/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/up.png -------------------------------------------------------------------------------- /app/img/wizard-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/img/wizard-icon.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.html.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/index.html.local -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/config.def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/config.def.js -------------------------------------------------------------------------------- /app/js/controllers/activeContestsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/activeContestsCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/activeUsersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/activeUsersCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/anonHomeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/anonHomeCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/balloonCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/balloonCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/baseCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/baseCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/challengesAdvertisingCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/challengesAdvertisingCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/chatAreaCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/chatAreaCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/connectionStatusCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/connectionStatusCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestCountdownCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestCountdownCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestCreationCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestCreationCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestManagementCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestManagementCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestPlanCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestPlanCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestScheduleConfigCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestScheduleConfigCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestStatsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestStatsCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestSummaryCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestSummaryCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/contestTermsConfigCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/contestTermsConfigCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/errorCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/errorCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/leaderboardCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/leaderboardCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/leaderboardUsersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/leaderboardUsersCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/manageAnswerCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/manageAnswerCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/manageQuestionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/manageQuestionCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/matchScheduleCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/matchScheduleCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/memberFeedbackCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/memberFeedbackCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/messageArenaCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/messageArenaCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/notificationsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/notificationsCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/overviewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/overviewCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/overviewLeaderboardCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/overviewLeaderboardCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/practiceProblemListCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/practiceProblemListCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/registrationQuestionsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/registrationQuestionsCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/resizerCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/resizerCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/tcTimeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/tcTimeCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/testPanelCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/testPanelCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userCodingCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userCodingCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userCodingEditorCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userCodingEditorCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userCodingTimeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userCodingTimeCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userContestCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userContestCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userContestDetailCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userContestDetailCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userDashboardCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userDashboardCtrl.js -------------------------------------------------------------------------------- /app/js/controllers/userProfileCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/controllers/userProfileCtrl.js -------------------------------------------------------------------------------- /app/js/directives/activeUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/activeUser.js -------------------------------------------------------------------------------- /app/js/directives/activecontests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/activecontests.js -------------------------------------------------------------------------------- /app/js/directives/autoFillFix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/autoFillFix.js -------------------------------------------------------------------------------- /app/js/directives/challengesAdvertiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/challengesAdvertiser.js -------------------------------------------------------------------------------- /app/js/directives/chatSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/chatSettings.js -------------------------------------------------------------------------------- /app/js/directives/chatarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/chatarea.js -------------------------------------------------------------------------------- /app/js/directives/codingTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/codingTime.js -------------------------------------------------------------------------------- /app/js/directives/codingeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/codingeditor.js -------------------------------------------------------------------------------- /app/js/directives/codingproblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/codingproblem.js -------------------------------------------------------------------------------- /app/js/directives/connectionstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/connectionstatus.js -------------------------------------------------------------------------------- /app/js/directives/contestPlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/contestPlan.js -------------------------------------------------------------------------------- /app/js/directives/contestScheduleConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/contestScheduleConfig.js -------------------------------------------------------------------------------- /app/js/directives/contestSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/contestSummary.js -------------------------------------------------------------------------------- /app/js/directives/contestTermsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/contestTermsConfig.js -------------------------------------------------------------------------------- /app/js/directives/contestcountdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/contestcountdown.js -------------------------------------------------------------------------------- /app/js/directives/conteststats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/conteststats.js -------------------------------------------------------------------------------- /app/js/directives/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/leaderboard.js -------------------------------------------------------------------------------- /app/js/directives/leaderboardusers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/leaderboardusers.js -------------------------------------------------------------------------------- /app/js/directives/manageAnswer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/manageAnswer.js -------------------------------------------------------------------------------- /app/js/directives/manageQuestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/manageQuestion.js -------------------------------------------------------------------------------- /app/js/directives/memberFeedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/memberFeedback.js -------------------------------------------------------------------------------- /app/js/directives/messageArena.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/messageArena.js -------------------------------------------------------------------------------- /app/js/directives/ngBallons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/ngBallons.js -------------------------------------------------------------------------------- /app/js/directives/ngScrollbarAutoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/ngScrollbarAutoscroll.js -------------------------------------------------------------------------------- /app/js/directives/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/overview.js -------------------------------------------------------------------------------- /app/js/directives/overviewLeaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/overviewLeaderboard.js -------------------------------------------------------------------------------- /app/js/directives/pastNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/pastNotifications.js -------------------------------------------------------------------------------- /app/js/directives/preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/preloader.js -------------------------------------------------------------------------------- /app/js/directives/qTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/qTip.js -------------------------------------------------------------------------------- /app/js/directives/ratingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/ratingIndicator.js -------------------------------------------------------------------------------- /app/js/directives/registrationQuestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/registrationQuestions.js -------------------------------------------------------------------------------- /app/js/directives/resizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/resizer.js -------------------------------------------------------------------------------- /app/js/directives/sglclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/sglclick.js -------------------------------------------------------------------------------- /app/js/directives/testPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/testPanel.js -------------------------------------------------------------------------------- /app/js/directives/testReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/testReport.js -------------------------------------------------------------------------------- /app/js/directives/toggleSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/toggleSetting.js -------------------------------------------------------------------------------- /app/js/directives/topcodertime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/topcodertime.js -------------------------------------------------------------------------------- /app/js/directives/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/directives/twitter.js -------------------------------------------------------------------------------- /app/js/factories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/factories.js -------------------------------------------------------------------------------- /app/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/filters.js -------------------------------------------------------------------------------- /app/js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/helper.js -------------------------------------------------------------------------------- /app/js/newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/newrelic.js -------------------------------------------------------------------------------- /app/js/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/resolvers.js -------------------------------------------------------------------------------- /app/js/server_newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/server_newrelic.js -------------------------------------------------------------------------------- /app/js/ucr-processors/CPPProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/CPPProcessor.js -------------------------------------------------------------------------------- /app/js/ucr-processors/CSharpProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/CSharpProcessor.js -------------------------------------------------------------------------------- /app/js/ucr-processors/JavaProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/JavaProcessor.js -------------------------------------------------------------------------------- /app/js/ucr-processors/ProcessorHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/ProcessorHelper.js -------------------------------------------------------------------------------- /app/js/ucr-processors/UCRProcessorFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/UCRProcessorFactory.js -------------------------------------------------------------------------------- /app/js/ucr-processors/VBProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/js/ucr-processors/VBProcessor.js -------------------------------------------------------------------------------- /app/partials/anon.home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/anon.home.html -------------------------------------------------------------------------------- /app/partials/anon.leaderboard.users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/anon.leaderboard.users.html -------------------------------------------------------------------------------- /app/partials/balloons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/balloons.html -------------------------------------------------------------------------------- /app/partials/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/base.html -------------------------------------------------------------------------------- /app/partials/contestCreationWizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/contestCreationWizard.html -------------------------------------------------------------------------------- /app/partials/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/error.html -------------------------------------------------------------------------------- /app/partials/leaderboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/leaderboard.html -------------------------------------------------------------------------------- /app/partials/memberFeedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/memberFeedback.html -------------------------------------------------------------------------------- /app/partials/testPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/testPanel.html -------------------------------------------------------------------------------- /app/partials/testReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/testReport.html -------------------------------------------------------------------------------- /app/partials/user.activeUsers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.activeUsers.html -------------------------------------------------------------------------------- /app/partials/user.challenges.advertising.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.challenges.advertising.html -------------------------------------------------------------------------------- /app/partials/user.chat.area.alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.chat.area.alert.html -------------------------------------------------------------------------------- /app/partials/user.chat.area.coderinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.chat.area.coderinfo.html -------------------------------------------------------------------------------- /app/partials/user.chat.area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.chat.area.html -------------------------------------------------------------------------------- /app/partials/user.chat.settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.chat.settings.html -------------------------------------------------------------------------------- /app/partials/user.code.history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.code.history.html -------------------------------------------------------------------------------- /app/partials/user.coding.editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.coding.editor.html -------------------------------------------------------------------------------- /app/partials/user.coding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.coding.html -------------------------------------------------------------------------------- /app/partials/user.coding.problem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.coding.problem.html -------------------------------------------------------------------------------- /app/partials/user.coding.time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.coding.time.html -------------------------------------------------------------------------------- /app/partials/user.connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.connection.html -------------------------------------------------------------------------------- /app/partials/user.contest.countdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.countdown.html -------------------------------------------------------------------------------- /app/partials/user.contest.detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.detail.html -------------------------------------------------------------------------------- /app/partials/user.contest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.manageAnswer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.manageAnswer.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.manageQuestion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.manageQuestion.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.registrationQuestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.registrationQuestions.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.schedule.html -------------------------------------------------------------------------------- /app/partials/user.contest.management.terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.management.terms.html -------------------------------------------------------------------------------- /app/partials/user.contest.registrants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.registrants.html -------------------------------------------------------------------------------- /app/partials/user.contest.registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.registration.html -------------------------------------------------------------------------------- /app/partials/user.contest.stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.stats.html -------------------------------------------------------------------------------- /app/partials/user.contest.summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contest.summary.html -------------------------------------------------------------------------------- /app/partials/user.contestPlan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contestPlan.html -------------------------------------------------------------------------------- /app/partials/user.contests.active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.contests.active.html -------------------------------------------------------------------------------- /app/partials/user.dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.dashboard.html -------------------------------------------------------------------------------- /app/partials/user.matchSchedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.matchSchedule.html -------------------------------------------------------------------------------- /app/partials/user.messageArena.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.messageArena.html -------------------------------------------------------------------------------- /app/partials/user.notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.notifications.html -------------------------------------------------------------------------------- /app/partials/user.overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.overview.html -------------------------------------------------------------------------------- /app/partials/user.overview.leaderboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.overview.leaderboard.html -------------------------------------------------------------------------------- /app/partials/user.practiceProblemList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.practiceProblemList.html -------------------------------------------------------------------------------- /app/partials/user.profile.details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.profile.details.html -------------------------------------------------------------------------------- /app/partials/user.profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.profile.html -------------------------------------------------------------------------------- /app/partials/user.profile.privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.profile.privacy.html -------------------------------------------------------------------------------- /app/partials/user.profile.terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.profile.terms.html -------------------------------------------------------------------------------- /app/partials/user.tctime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/app/partials/user.tctime.html -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /arena-web-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/arena-web-deploy.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/bower.json -------------------------------------------------------------------------------- /config/dev-local.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/config/dev-local.bat -------------------------------------------------------------------------------- /config/dev-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/config/dev-local.sh -------------------------------------------------------------------------------- /config/tc-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/config/tc-dev.sh -------------------------------------------------------------------------------- /config/tc-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/config/tc-prod.sh -------------------------------------------------------------------------------- /docker/Dockerfile-Build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/docker/Dockerfile-Build -------------------------------------------------------------------------------- /heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/heroku.sh -------------------------------------------------------------------------------- /new_relic/newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/new_relic/newrelic.js -------------------------------------------------------------------------------- /new_relic/server_tasks/grunt-newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/new_relic/server_tasks/grunt-newrelic.js -------------------------------------------------------------------------------- /new_relic/server_tasks/server_newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/new_relic/server_tasks/server_newrelic.js -------------------------------------------------------------------------------- /new_relic/tasks/grunt-newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/new_relic/tasks/grunt-newrelic.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/package.json -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/History.md -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/README.md -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/component.json -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/css/bootstrap-notify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/css/bootstrap-notify.css -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/css/styles/alert-bangtidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/css/styles/alert-bangtidy.css -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/css/styles/alert-blackgloss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/css/styles/alert-blackgloss.css -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/js/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/js/bootstrap-alert.js -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/js/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/js/bootstrap-notify.js -------------------------------------------------------------------------------- /thirdparty/bootstrap-notify/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/bootstrap-notify/js/bootstrap-transition.js -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/imagesloaded.pkg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/imagesloaded.pkg.min.js -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/jquery.qtip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/jquery.qtip.css -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/jquery.qtip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/jquery.qtip.js -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/jquery.qtip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/jquery.qtip.min.css -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/jquery.qtip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/jquery.qtip.min.js -------------------------------------------------------------------------------- /thirdparty/jquery.qtip/jquery.qtip.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery.qtip/jquery.qtip.min.map -------------------------------------------------------------------------------- /thirdparty/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/.bower.json -------------------------------------------------------------------------------- /thirdparty/jquery/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /thirdparty/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/README.md -------------------------------------------------------------------------------- /thirdparty/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/bower.json -------------------------------------------------------------------------------- /thirdparty/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/component.json -------------------------------------------------------------------------------- /thirdparty/jquery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/composer.json -------------------------------------------------------------------------------- /thirdparty/jquery/jquery-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/jquery-migrate.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery-migrate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/jquery-migrate.min.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/jquery.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/jquery.min.js -------------------------------------------------------------------------------- /thirdparty/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/jquery.min.map -------------------------------------------------------------------------------- /thirdparty/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/jquery/package.json -------------------------------------------------------------------------------- /thirdparty/ng-clip/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-clip/ZeroClipboard.js -------------------------------------------------------------------------------- /thirdparty/ng-clip/ngClip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-clip/ngClip.js -------------------------------------------------------------------------------- /thirdparty/ng-scrollbar/dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-scrollbar/dist/LICENSE -------------------------------------------------------------------------------- /thirdparty/ng-scrollbar/dist/ng-customscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-scrollbar/dist/ng-customscrollbar.js -------------------------------------------------------------------------------- /thirdparty/ng-scrollbar/dist/ng-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-scrollbar/dist/ng-scrollbar.css -------------------------------------------------------------------------------- /thirdparty/ng-scrollbar/dist/ng-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-scrollbar/dist/ng-scrollbar.js -------------------------------------------------------------------------------- /thirdparty/ng-scrollbar/dist/ng-scrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/ng-scrollbar/dist/ng-scrollbar.min.css -------------------------------------------------------------------------------- /thirdparty/perfect-scrollbar/angular-perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/perfect-scrollbar/angular-perfect-scrollbar.js -------------------------------------------------------------------------------- /thirdparty/perfect-scrollbar/perfect-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/perfect-scrollbar/perfect-scrollbar.css -------------------------------------------------------------------------------- /thirdparty/perfect-scrollbar/perfect-scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/thirdparty/perfect-scrollbar/perfect-scrollbar.js -------------------------------------------------------------------------------- /wiki/img/balloon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/wiki/img/balloon1.png -------------------------------------------------------------------------------- /wiki/img/balloon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/wiki/img/balloon2.png -------------------------------------------------------------------------------- /wiki/img/balloon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topcoder-archive/appirio_tech-arena-web/HEAD/wiki/img/balloon3.png --------------------------------------------------------------------------------