Skip to content

Commit 989daac

Browse files
author
Anita Steiner
authored
Merge pull request #31 from Caleydo/release-2.0.0
Release 2.0.0
2 parents 7ee711c + c103930 commit 989daac

File tree

81 files changed

+1409
-750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1409
-750
lines changed

.yo-rc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"selection": "some"
5454
}
5555
}
56-
]
56+
],
57+
"copyFiles": ["dist/clientConfig.json"]
5758
}
5859
}

coral/db.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@
2828
for col in columns[table]:
2929
db_builder.column(col[0], type=col[1])
3030

31-
# assign_ids ... the tdp server should automatically manage and assign unique integer ids based on the 'id' column
3231
# call(inject_where) ... utility to inject a where clause that is used for dynamic filtering
33-
views[table] = db_builder.assign_ids() \
34-
.call(inject_where) \
32+
views[table] = db_builder.call(inject_where) \
3533
.build()
3634

3735
add_common_queries(views, schema_table, id_type, 'id', columns[table])
@@ -41,7 +39,6 @@
4139
# by convention the 'id' column contains the identifier column of a row --> we have an id column in the db
4240
# derive_columns ... try to automatically derive column and column types
4341
# column(column, attrs) ... would explicitly set a column type
44-
# assign_ids ... the tdp server should automatically manage and assign unique integer ids based on the 'id' column
4542
# filter (get the filter with key 'month' / year and add a where clause like giessdatum_monat='1')
4643
# .call(inject_where) ... utility to inject a where clause that is used for dynamic filtering ---> otherwise the filter callc above do not work and all the data is retrieved
4744

dist/Cohort.d.ts

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Cohort.js

Lines changed: 17 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Cohort.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/CohortRepresentations.js

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/CohortRepresentations.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Provenance/CohortEV.js

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Provenance/CohortEV.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Taskview/SearchBar.js

Lines changed: 10 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)