mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
update DESCRIPTION files and a Readme; tweak spacing
This commit is contained in:
@@ -3,5 +3,7 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
This small Shiny application demonstrates Shiny's automatic UI updates. Click
|
||||
*Show Code* in the upper right, then look at the code for `server.R`. Move the
|
||||
This small Shiny application demonstrates Shiny's automatic UI updates. Move the
|
||||
*Number of observations* slider and notice how the `renderPlot` expression is
|
||||
automatically re-evaluated when its dependant, `input$obs`, changes, causing a
|
||||
new distribution to be generated and the plot to be rendered.
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
library(shiny)
|
||||
|
||||
# Define server logic required to generate and plot a random distribution
|
||||
# Define server logic required to generate and plot a random
|
||||
# distribution
|
||||
shinyServer(function(input, output) {
|
||||
|
||||
# Expression that generates a plot of the distribution. The expression
|
||||
# is wrapped in a call to renderPlot to indicate that:
|
||||
# Expression that generates a plot of the distribution. The
|
||||
# expression is wrapped in a call to renderPlot to indicate
|
||||
# that:
|
||||
#
|
||||
# 1) It is "reactive" and therefore should be automatically
|
||||
# re-executed when inputs change
|
||||
|
||||
@@ -3,3 +3,7 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
|
||||
@@ -3,3 +3,6 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
@@ -3,3 +3,6 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
@@ -3,3 +3,6 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
@@ -3,3 +3,6 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
@@ -3,3 +3,6 @@ Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
|
||||
8
inst/examples/09_upload/DESCRIPTION
Normal file
8
inst/examples/09_upload/DESCRIPTION
Normal file
@@ -0,0 +1,8 @@
|
||||
Title: File Upload
|
||||
Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
8
inst/examples/10_download/DESCRIPTION
Normal file
8
inst/examples/10_download/DESCRIPTION
Normal file
@@ -0,0 +1,8 @@
|
||||
Title: File Download
|
||||
Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
8
inst/examples/11_timer/DESCRIPTION
Normal file
8
inst/examples/11_timer/DESCRIPTION
Normal file
@@ -0,0 +1,8 @@
|
||||
Title: Timer
|
||||
Author: RStudio, Inc.
|
||||
AuthorUrl: http://www.rstudio.com/
|
||||
License: GPL-3
|
||||
DefaultShowcaseMode: 1
|
||||
AllowShowcaseModeOverride: TRUE
|
||||
Tags: getting-started
|
||||
Type: ShinyShowcase
|
||||
Reference in New Issue
Block a user