-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Packaging/publication services and analysis execution results data providers for Shiny applications #2399
Open
alex-odysseus
wants to merge
34
commits into
master
Choose a base branch
from
shiny-applications
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Packaging/publication services and analysis execution results data providers for Shiny applications #2399
Changes from 29 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
47271f0
ATL-29 API Support for R Shiny Apps
wivern 34bab7d
ATL-29 API Support for R Shiny Apps
wivern e44462a
ATL-29 API Support for R Shiny Apps
wivern 9a714bd
Migrations
3246472
Posit API Client updates
6c0d9a6
Add data files to manifest before publishing
f5e31b4
Handling the disabled security case
alex-odysseus 2ac1eb2
Adding missing placeholders for Posit Connect and API key
alex-odysseus 57b2cb9
Adds default value for shiny properties
9e761fd
ATL-46: Changed filenaming
5968034
[ATL-48] Implemented Incidence Rates Analysis Shiny app publishing
oleg-odysseus fbdc8db
ATL-46: File name changed
d41dbd3
[IncidenceRate App] Datasource to be read from text file
oleg-odysseus 535294e
[ATL-53] Added datasource export via file to the data folder for the …
oleg-odysseus 8e9d15e
[ATL-49] Implemented Cohort Characterizations Shiny App Publishing
oleg-odysseus 88c417c
Added SourceKey to Shiny apps Titles
oleg-odysseus a763994
[ATL-50] Introduced Cohort Pathway Shiny app download and publishing
oleg-odysseus 1b444a4
Explicitly using the dot instead of the underscore as there were issu…
alex-odysseus 2ae926e
Unified Shiny apps names
oleg-odysseus 760403c
[ATL-48] Fixed issue with Incidence Rates app publishing for a No Rec…
oleg-odysseus d99a1e2
[ATL-50] Changed interface of the Cohort Pathways Shiny app to contai…
oleg-odysseus 16ca514
Added a configurable timeout for OkHttp client (posit shiny apps publ…
oleg-odysseus e6e972e
Changed MessageFormat to String.format for shiny app names to avoid l…
oleg-odysseus 532fd1d
Unified naming of generation versions for all shiny apps
oleg-odysseus 63c9d33
Added Content-Disposition header to CORS Filter to allow propagating …
oleg-odysseus 364bcce
Added 'analysis_name' to app.properties for Cohort Characterization S…
oleg-odysseus 6d91240
Added design JSON and chart data JSON files to Cohort Pathways Shiny app
oleg-odysseus 35fe824
Fix for eliminating statefulness between Shiny apps generation calls
oleg-odysseus 85266d5
Merge remote-tracking branch 'remotes/upstream/master' into ATL-29
alex-odysseus 4309e66
Added parameters required for the Shiny Apps introduction pages
oleg-odysseus c94aa0c
Exteacted common constants into a separate enum, changed datasource i…
oleg-odysseus 807603a
Added atlas_link to Pathways Shiny App Properties
oleg-odysseus 75cdbd6
Combining migration scripts
alex-odysseus b5dda3e
Fixed merge conflicts
oleg-odysseus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> | ||
<id>shiny-cohortCharacterizations</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>./apps/cohortCharacterization</directory> | ||
<excludes> | ||
<exclude>data/**</exclude> | ||
</excludes> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> | ||
<id>shiny-cohortCounts</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>./apps/cohortCounts</directory> | ||
<excludes> | ||
<exclude>data/**</exclude> | ||
</excludes> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> | ||
<id>shiny-incidenceRates</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>./apps/cohortPathways</directory> | ||
<excludes> | ||
<exclude>data/**</exclude> | ||
</excludes> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> | ||
<id>shiny-incidenceRates</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<fileSets> | ||
<fileSet> | ||
<directory>./apps/IncidenceRate</directory> | ||
<excludes> | ||
<exclude>data/**</exclude> | ||
</excludes> | ||
<outputDirectory>/</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should clean 'shiny-cohortPathways.zip' as well