diff --git a/.space.kts b/.space.kts deleted file mode 100644 index d614905593..0000000000 --- a/.space.kts +++ /dev/null @@ -1,20 +0,0 @@ -import java.nio.file.Files -import java.nio.file.Paths - -job("Polaris Artifact") { - container("registry.jetbrains.team/p/sa/public/qodana-jvm:polaris") { - kotlinScript { api -> - val spaceProjectKey = System.getenv("JB_SPACE_PROJECT_KEY") - val repoName = System.getenv("JB_SPACE_GIT_REPOSITORY_NAME") - val initialPath = System.getenv("JB_SPACE_FILE_SHARE_PATH") - val tid: String = api.space().projects.getProject(ProjectIdentifier.Key(spaceProjectKey)) { - repos { - id() - name() - } - }.repos.first { it.name == repoName }.id!! - Files.write(Paths.get("$initialPath/tid"), tid.encodeToByteArray()) - } - } - container("registry.jetbrains.team/p/sa/public/qodana-jvm:polaris") -} diff --git a/docs/StardustDocs/cfg/buildprofiles.xml b/docs/StardustDocs/cfg/buildprofiles.xml index f82e3865d3..7b7b05f0d6 100644 --- a/docs/StardustDocs/cfg/buildprofiles.xml +++ b/docs/StardustDocs/cfg/buildprofiles.xml @@ -3,6 +3,7 @@ + kotlin-logo.svg https://kotlin.github.io/dataframe/ false diff --git a/docs/StardustDocs/images/kotlin-logo.svg b/docs/StardustDocs/images/kotlin-logo.svg new file mode 100644 index 0000000000..6968f48444 --- /dev/null +++ b/docs/StardustDocs/images/kotlin-logo.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/StardustDocs/topics/gradleReference.md b/docs/StardustDocs/topics/gradleReference.md index be687e3cda..946457ea26 100644 --- a/docs/StardustDocs/topics/gradleReference.md +++ b/docs/StardustDocs/topics/gradleReference.md @@ -14,18 +14,18 @@ Note than name of the file and the interface are normalized: split by '_' and ' You can set parsing options for CSV: ```kotlin dataframes { - // output: build/generated/dataframe/main/kotlin/org/example/dataframe/Securities.Generated.kt + // output: build/generated/dataframe/main/kotlin/org/example/dataframe/JetbrainsRepositories.Generated.kt schema { - data = "https://raw.githubusercontent.com/Kotlin/dataframe/1765966904c5920154a4a480aa1fcff23324f477/data/securities.csv" + data = "https://raw.githubusercontent.com/Kotlin/dataframe/master/data/jetbrains_repositories.csv" csvOptions { - delimiter = ';' + delimiter = ',' } } } ``` -In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/Securities.Generated.kt +In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/JetbrainsRepositories.Generated.kt `. Note that name of the Kotlin file is derived from the name of the data file with the suffix `.Generated` and the package -is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `Securities`. You could specify it explicitly: +is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `JetbrainsRepositories`. You could specify it explicitly: ```kotlin schema { // output: build/generated/dataframe/main/kotlin/org/example/dataframe/MyName.Generated.kt