-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from StepicOrg/feature/new_catalog
Updated courses catalog #IDEA-244 Fixed
- Loading branch information
Showing
14 changed files
with
223 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
stepik-union/src/main/java/org/stepik/plugin/projectWizard/CoursesList.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package org.stepik.plugin.projectWizard | ||
|
||
import org.stepik.core.SupportedLanguages.ASM32 | ||
import org.stepik.core.SupportedLanguages.ASM64 | ||
import org.stepik.core.SupportedLanguages.C | ||
import org.stepik.core.SupportedLanguages.CLOJURE | ||
import org.stepik.core.SupportedLanguages.CPP | ||
import org.stepik.core.SupportedLanguages.CPP_11 | ||
import org.stepik.core.SupportedLanguages.GO | ||
import org.stepik.core.SupportedLanguages.HASKELL | ||
import org.stepik.core.SupportedLanguages.HASKELL_7_10 | ||
import org.stepik.core.SupportedLanguages.HASKELL_8_0 | ||
import org.stepik.core.SupportedLanguages.JAVA | ||
import org.stepik.core.SupportedLanguages.JAVA8 | ||
import org.stepik.core.SupportedLanguages.JAVASCRIPT | ||
import org.stepik.core.SupportedLanguages.KOTLIN | ||
import org.stepik.core.SupportedLanguages.MONO_CS | ||
import org.stepik.core.SupportedLanguages.OCTAVE | ||
import org.stepik.core.SupportedLanguages.PASCAL_ABC | ||
import org.stepik.core.SupportedLanguages.PYTHON3 | ||
import org.stepik.core.SupportedLanguages.R | ||
import org.stepik.core.SupportedLanguages.RUBY | ||
import org.stepik.core.SupportedLanguages.RUST | ||
import org.stepik.core.SupportedLanguages.SCALA | ||
import org.stepik.core.SupportedLanguages.SHELL | ||
|
||
object CoursesList { | ||
val DEFAULT_COURSES = listOf(156L, 217L, 1127L, 125L, 126L, 150L) | ||
|
||
val ASM_COURSES = listOf(253L, 1780L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val CPP_COURSES = listOf(579L, 363L, 144L, 153L, 538L, 7L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val HASKELL_COURSES = listOf(75L, 693L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val JAVA_COURSES = listOf(187L, 150L, 2403L, 2600L, 1891L, 1595L, 2262L, 217L, 1127L, 125L, 126L) | ||
val JAVASCRIPT_COURSES = listOf(2606L, 2223L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val KOTLIN_COURSES = listOf(2852L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val PYTHON_COURSES = listOf(67L, 512L, 401L, 568L, 431L, 2057L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val R_COURSES = listOf(497L, 129L, 724L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
val RUBY_COURSES = listOf(156L, 1127L, 125L, 126L, 150L) | ||
val SCALA_COURSES = listOf(2294L, 156L, 217L, 1127L, 125L, 126L, 150L) | ||
|
||
@JvmField | ||
val COURSES = mapOf( | ||
ASM32 to ASM_COURSES, | ||
ASM64 to ASM_COURSES, | ||
C to DEFAULT_COURSES, | ||
CLOJURE to DEFAULT_COURSES, | ||
CPP to CPP_COURSES, | ||
CPP_11 to CPP_COURSES, | ||
GO to DEFAULT_COURSES, | ||
HASKELL to HASKELL_COURSES, | ||
HASKELL_7_10 to HASKELL_COURSES, | ||
HASKELL_8_0 to HASKELL_COURSES, | ||
JAVA to JAVA_COURSES, | ||
JAVA8 to JAVA_COURSES, | ||
JAVASCRIPT to JAVASCRIPT_COURSES, | ||
KOTLIN to KOTLIN_COURSES, | ||
MONO_CS to DEFAULT_COURSES, | ||
OCTAVE to DEFAULT_COURSES, | ||
PASCAL_ABC to DEFAULT_COURSES, | ||
PYTHON3 to PYTHON_COURSES, | ||
R to R_COURSES, | ||
RUBY to RUBY_COURSES, | ||
RUST to DEFAULT_COURSES, | ||
SCALA to SCALA_COURSES, | ||
SHELL to DEFAULT_COURSES | ||
) | ||
} |
Oops, something went wrong.