From 50e03f742ced6fa04dbdbdba344da5ad976ce3ce Mon Sep 17 00:00:00 2001 From: JJ Allaire Date: Thu, 26 Jul 2012 12:44:21 -0700 Subject: [PATCH] brief preambles for each application --- _includes/tutorial/html-ui.md | 2 +- _includes/tutorial/more-widgets.md | 2 +- _includes/tutorial/reactivity.md | 5 +++-- _includes/tutorial/shiny-text.md | 2 +- _includes/tutorial/sliders.md | 2 +- _includes/tutorial/tabsets.md | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/_includes/tutorial/html-ui.md b/_includes/tutorial/html-ui.md index 90bb5dcb2..a6007fba1 100644 --- a/_includes/tutorial/html-ui.md +++ b/_includes/tutorial/html-ui.md @@ -2,7 +2,7 @@ ![HTML UI Screenshot](screenshots/html-ui.png) -To run the example type: +The HTML UI application demonstrates defining a Shiny user-interface using a standard HTML page rather than a ui.R script. To run the example type:
> library(shiny)
 > runExample("08_html")
diff --git a/_includes/tutorial/more-widgets.md b/_includes/tutorial/more-widgets.md
index c7f587fe1..09448f9b8 100644
--- a/_includes/tutorial/more-widgets.md
+++ b/_includes/tutorial/more-widgets.md
@@ -2,7 +2,7 @@
 
 ![More Widgets Screenshot](screenshots/more-widgets.png)
 
-To run the example type: 
+The More Widgets application demonstrates the helpText and submitButton widgets as well as the use of embedded HTML elements to customized formatting. To run the example type: 
 
 
> library(shiny)
 > runExample("07_widgets")
diff --git a/_includes/tutorial/reactivity.md b/_includes/tutorial/reactivity.md
index 92ad21862..600362eec 100644
--- a/_includes/tutorial/reactivity.md
+++ b/_includes/tutorial/reactivity.md
@@ -2,13 +2,14 @@
 
 ![Reactivity Screenshot](screenshots/reactivity.png)
 
-
-To run the example type: 
+The Reactivity application is very similar to Hello Text but goes into much more detail about reactive programming concepts. To run the example type: 
 
 
> library(shiny)
 > runExample("03_reactivity")
 
+Try changing the text in the Caption field to something else--you'll notice that the caption is updated immediately in the output pane. + #### ui.R
library(shiny)
diff --git a/_includes/tutorial/shiny-text.md b/_includes/tutorial/shiny-text.md
index d63499096..1bfb5b704 100644
--- a/_includes/tutorial/shiny-text.md
+++ b/_includes/tutorial/shiny-text.md
@@ -1,7 +1,7 @@
 
 ![Tabsets Screenshot](screenshots/shiny-text.png)
 
-To run the example type: 
+The Shiny Text application demonstrates printing R objects directly as well as displaying data-frames using HTML tables. To run the example type: 
 
 
> library(shiny)
 > runExample("02_text")
diff --git a/_includes/tutorial/sliders.md b/_includes/tutorial/sliders.md
index dd62c5195..86caabaa9 100644
--- a/_includes/tutorial/sliders.md
+++ b/_includes/tutorial/sliders.md
@@ -2,7 +2,7 @@
 
 ## (Under Construction)
 
-To run the example type: 
+The Sliders application demonstrates the many capabilities of slider controls, including the ability to run an animation sequence. To run the example type: 
 
 
> library(shiny)
 > runExample("05_sliders")
diff --git a/_includes/tutorial/tabsets.md b/_includes/tutorial/tabsets.md
index 21e3f1edb..7a669a564 100644
--- a/_includes/tutorial/tabsets.md
+++ b/_includes/tutorial/tabsets.md
@@ -2,7 +2,7 @@
 
 ![Tabsets Screenshot](screenshots/tabsets.png)
 
-To run the example type: 
+The Tabsets application demonstrates using tabs to present output. To run the example type: 
 
 
> library(shiny)
 > runExample("06_tabsets")