Joe Cheng
38cfa46131
Roxygenize
2014-08-18 13:27:15 -07:00
Winston Chang
9525df1381
Add missing semicolon
2014-08-15 16:36:45 -05:00
Winston Chang
d393577ba8
uiHttpHandler: return NULL if no ui
...
This restores missing UI detection for single-file apps, which was lost
in 0f431ed .
2014-08-13 15:39:18 -05:00
Winston Chang
f7c2a07b70
Update NEWS
2014-08-13 15:32:08 -05:00
Winston Chang
adf69b4890
Look for server.R before app.R
2014-08-13 15:30:40 -05:00
Winston Chang
593d22b640
Bump version to 0.10.9002
2014-08-13 14:48:45 -05:00
Winston Chang
7706eebafb
Remove single file example
...
The example will be moved to the gallery.
2014-08-13 14:22:26 -05:00
Joe Cheng
91bd5127fb
Merge pull request #563 from rstudio/single-file2
...
Single-file app support
2014-08-12 19:24:58 -07:00
Winston Chang
b87a0d7f25
Automatically display app.R file in showcase mode
2014-08-12 16:47:41 -05:00
Winston Chang
0f431ed384
Detect showcase mode for single-file apps
2014-08-12 16:36:00 -05:00
Winston Chang
d520921b13
Merge pull request #564 from rstudio/feature/output-resize
...
Add support for resize(el, width, height) method on output bindings
2014-08-12 15:13:22 -05:00
Joe Cheng
8d4b9076f7
Revert "Remove caTools dependency"
...
This reverts commit e4239c924b .
I totally forgot the problems this causes with R 2.15 and thus
glimmer/spark. httpuv 1.2.2 requires Rcpp 0.11 which requires
R 3.0. So existing installs (like glimmer/spark) that are
running just fine with httpuv 1.2.0 will be forced to upgrade,
which is hard to do when you don't know the provenance of
all the packages installed by your users.
2014-08-12 10:24:33 -07:00
Joe Cheng
93ebbcaf04
Merge pull request #567 from rstudio/feature/remove-prefix-warning
...
remove addResourcePath warning for overriding an existing prefix
2014-08-09 12:45:14 -07:00
JJ Allaire
ecde1580fd
remove addResourcePath warning for overriding an existing prefix
2014-08-09 06:39:27 -04:00
Joe Cheng
8f73bb222c
Add support for resize(el, width, height) method on output bindings
2014-08-08 00:43:02 -04:00
Winston Chang
1108e04eff
Update missing-UI web page to include app.R
2014-08-07 13:26:07 -05:00
Winston Chang
0f1a8f3358
Add single-file app example
2014-08-07 13:25:49 -05:00
Winston Chang
77de4df0ff
shinyApp: use NULL default for ui and server
...
This is so that, when a single-file app returns a shinyApp with a blank
`ui` argument, Shiny will not error out, and instead it can search for
a www/ subdirectory.
2014-08-07 13:18:21 -05:00
Winston Chang
0564de37ee
Add support for shinyAppDir with single-file app.R
2014-08-06 21:51:36 -05:00
Winston Chang
8c584ae0e0
Refactor file.path.ci, add find.file.ci and file.exists.ci
2014-08-06 21:19:46 -05:00
Winston Chang
30c80279c8
Remove accidental browser()
2014-08-06 21:18:45 -05:00
Winston Chang
3f0ab9a88a
Fixes to file.path.ci
...
There were two bugs, which are fixed:
* It didn't find files starting with '.' because `all.files` defaults to FALSE.
* It was too loose with file matching - the `pattern` argument to list.files
is a regexp, not string literal.
2014-08-06 12:19:08 -05:00
Yihui Xie
9e3a7f5eda
a typo in the news for 0.10.1
2014-08-01 17:16:47 -05:00
Yihui Xie
0a4f3db8ae
bump version
2014-08-01 16:37:20 -05:00
Yihui Xie
c095085d84
fixes #557 : choicesWithNames() turns a character vector to a list, which is no longer appropriate as a column in data.frame()
2014-08-01 16:37:20 -05:00
Yihui Xie
41cc4e68e3
no need to use wrap = FALSE for roxygen2 now
2014-08-01 16:37:20 -05:00
Winston Chang
21fb7959a5
Fix edge case with nested choices. Fixes #560
...
When the set of choices is a list containing a named vector of length 1,
choicesWithNames would return the wrong result.
2014-08-01 16:11:51 -05:00
Yihui Xie
3aa22127e0
a consequence of PR #552 is R 3.0.0
...
those who still wish to install shiny under R 2.15.x may take a look at these instructions: https://gist.github.com/yihui/43a68d811dade1d9e828
2014-08-01 15:28:43 -05:00
Winston Chang
cccdbc05a5
Bump to development version number
2014-07-27 22:22:22 -05:00
Winston Chang
dfa32b7be4
Merge tag 'v/0/10/1'
...
Shiny 0.10.1 released to CRAN
2014-07-27 22:19:44 -05:00
Winston Chang
c7e0bd037a
Merge pull request #552 from rstudio/no-catools
...
Remove caTools dependency
2014-07-25 14:43:15 -05:00
Winston Chang
6c711b76b0
Bump version to 0.10.1
v0.10.1
2014-07-25 14:20:43 -05:00
Winston Chang
9c914f10c4
Merge pull request #553 from wch/hidden-selectize
...
Add custom version of selectize.js to work around Firefox bug
2014-07-25 13:37:08 -05:00
Winston Chang
eda56d118a
Merge pull request #549 from yihui/bugfix/utf8-bom
...
warn against the byte order mark if exists; fixes #545
2014-07-24 16:09:56 -05:00
Winston Chang
02c7351c6d
Add custom version of selectize.js to work around Firefox bug
...
This is a workaround for issue #550 . This version is based on selectize version 0.9.1.
2014-07-24 15:29:23 -05:00
Yihui Xie
ab618235f1
one more check before we use UTF-8: see if there are embedded nul's
2014-07-24 14:48:23 -05:00
Joe Cheng
e4239c924b
Remove caTools dependency
...
Instead, use base64 encoding function from httpuv
2014-07-24 10:37:14 -07:00
Yihui Xie
ffead9ed70
add explanations of skipping *nix when checking encoding, and point to the shiny dev center article
2014-07-24 11:57:46 -05:00
Winston Chang
36aefadced
Merge pull request #550 from rstudio/bugfix/offscreen-shinyapps
...
Deal gracefully with elements that have no computed style available
2014-07-23 11:55:24 -05:00
Jonathan McPherson
75ccfe38ce
update comment with more specific browser notes
2014-07-23 09:43:42 -07:00
Jonathan McPherson
e3cb3fe2e4
deal gracefully with elements that have no computed style available
2014-07-22 14:41:34 -07:00
Yihui Xie
983e7e9b75
warn against the byte order mark if exists; fixes #545
2014-07-22 16:22:50 -05:00
Yihui Xie
3db47c076c
a news item for the optgroup feature
2014-07-18 14:40:58 -05:00
Yihui Xie
eeff285b33
add links to examples in shiny dev center
2014-07-18 14:40:31 -05:00
Yihui Xie
029595f8ea
an edge case selectInput(choices = NULL)
...
firstChoice() may fail with an error "subscript out of bounds"
2014-07-17 15:59:33 -05:00
Yihui Xie
ea2ec27724
bump version
2014-07-17 14:52:26 -05:00
Yihui Xie
f6bf4a416f
Merge pull request #537 from yihui/bugfix/native-encoding
...
Use native encoding internally
2014-07-17 14:49:53 -05:00
Yihui Xie
af978a68e3
tweak the warning message
...
and simply stop() in case the user has set option(encoding = 'UTF-8')
2014-07-17 14:39:21 -05:00
Yihui Xie
89dc1323e1
add a note section about the clickId/hoverId arguments in plotOutput(), since they seem to have been confusing grid graphics users
...
and re-wrap the roxygen comments
2014-07-16 17:27:00 -05:00
Yihui Xie
a4b5f63deb
a single quote ' was omitted here, making the Rd for plotOutput() incomplete since this line was ignored
2014-07-16 17:27:00 -05:00