Winston Chang
b712398208
If plot code errors, re-execute on resize
2016-02-16 13:39:11 -06:00
Winston Chang
7586e91b4f
Fix coordmap tests
2016-02-15 16:01:34 -06:00
Winston Chang
9eba82c107
Fix vars
2016-02-15 16:01:15 -06:00
Winston Chang
ccdc219a09
More cleanup
2016-02-15 15:39:05 -06:00
Winston Chang
32c4c8ae32
Code cleanup
2016-02-12 15:59:10 -06:00
Winston Chang
bd4c506d22
Implement replayPlot when width/height changes
2016-02-12 13:26:41 -06:00
Winston Chang
476dd7cd56
Collect needed data structures
2016-02-11 14:45:43 -06:00
Winston Chang
8176f84715
Restructure ggplot2 coordmap extraction
2016-02-11 14:25:20 -06:00
Winston Chang
6bd33721d8
Separate rendering code into a reactive
2016-02-11 12:27:16 -06:00
Winston Chang
c9d9671288
More restructuring
2016-02-11 12:25:38 -06:00
Winston Chang
2a821edf5f
Small restructure of renderPlot
2016-02-11 12:25:38 -06:00
Winston Chang
68b85bdc87
Merge branch 'fix-plot-flicker2'
2016-02-11 12:20:45 -06:00
Winston Chang
83cf5907c3
Merge pull request #1072 from rstudio/rm-do-call
...
Remove unneeded do.call
2016-02-11 10:24:47 -06:00
Winston Chang
c912b6547c
Merge pull request #1106 from yihui/travis-cache
...
Set sudo to false explicitly to enable caching
2016-02-11 10:23:08 -06:00
Yihui Xie
bf04b74f87
Set sudo to false explicitly to enable caching
2016-02-10 13:34:24 -06:00
Joe Cheng
9d1e008990
Merge pull request #1099 from rstudio/joe/bugfix/debug-fix
...
Partial fix of debugger breakage
2016-02-10 08:15:59 -08:00
Joe Cheng
d9e5285a3b
Really fix docs.
2016-02-09 16:29:15 -08:00
Joe Cheng
84937b7a0b
Use parent.frame() instead of sys.parent()
2016-02-09 16:29:15 -08:00
Joe Cheng
924b3e16cf
Fix docs/check
2016-02-09 16:29:15 -08:00
Joe Cheng
2a8cf01410
Pass tests. reactive(function() { ... }) is NO LONGER supported.
2016-02-09 16:29:14 -08:00
Joe Cheng
a3a5cfee6c
Partial fix of debugger breakage
...
There are two problems I'm trying to solve here.
1) Somewhere along the way, exprToFunction gained a hardcoded
assumption that two stack frames up is a variable "expr",
meaning anything that called installExprFunction had to have
the first argument be exactly "expr". I think I got this
fixed, now the only assumption made by both installExprFunc
and exprToFunc is if they are called with quoted = FALSE,
then the caller is merely passing through code that originated
exactly one more level up the stack frame. If the code is
less than one level up, i.e. an end user is directly passing
code into installExprFunction or exprToFunction, then it won't
work; and if the code is more than one level up (someone is
passing code into function A which passes through to function
B which calls installExprFunction, with quoted = FALSE) then
it also won't work.
2) registerDebugHook calls were broken in various places by the
name/envir registered with the hook being different than the
name/envir through which the function was actually called.
This generally seems fixable by moving the registerDebugHook
call closer to the name/envir that will ultimately be called
(e.g. call registerDebugHook directly from wrapFunctionLabel).
There still seems to be a problem here in that breakpoints in
RStudio are hit but then the IDE automatically runs "n" multiple
times. Also the unit tests don't currently pass, I haven't
investigated that yet.
2016-02-09 16:29:14 -08:00
Joe Cheng
2c04441591
Merge pull request #1105 from rstudio/travis-update
...
Take advantage of new travis features
2016-02-09 16:28:33 -08:00
Winston Chang
a4eab8e216
Grunt
2016-02-09 16:03:59 -06:00
Winston Chang
189f9589d4
Unset attributes in img that aren't present in new data
2016-02-09 16:02:39 -06:00
Hadley Wickham
880721e0d0
Take advantage of new travis features
...
This will cache package install between checks, which should make it run quite a bit faster - this is what @jimhester's has been working on
2016-02-09 14:02:33 -06:00
Winston Chang
6ab65e2031
Fix plot flickering on Safari and Firefox. Closes #776
...
Previously, a new img tag was added when a new plot was sent, but now it uses
the same img tag and changes the src attribute.
2016-02-09 11:08:25 -06:00
Winston Chang
e871934cfd
Fix package name for Travis
2016-02-06 14:46:51 -06:00
Winston Chang
686390c1f2
Merge pull request #1096 from yihui/bugfix/datatables-warning
...
Fixes #561 : make sure DataTables always gets a correct number of columns of data
2016-02-04 10:12:56 -06:00
Yihui Xie
a8b9fb1708
use the CRAN version of htmltools
2016-02-03 14:02:24 -06:00
Yihui Xie
55d3764169
Fixes #561 : should discard the query when the number of columns in the request is different with the number of columns of the actual data
2016-02-03 10:54:37 -06:00
Winston Chang
cb5bc3d631
Merge pull request #1088 from rstudio/joe/bugfix/flexcol
...
Fix flexCol on RStudio Desktop for Win/Linux
2016-01-20 12:12:51 -06:00
Joe Cheng
543e66eb00
Fix flexCol on RStudio Desktop for Win/Linux
...
RStudio Desktop requires the older -webkit vendor-prefixed
flex box properties. I missed the one for flex-direction.
2016-01-20 09:20:22 -08:00
Winston Chang
b658983fb8
Remove JavaScript events vignette
...
This vignette has been migrated to a Shiny Dev Center article.
2016-01-15 15:30:24 -06:00
Winston Chang
cfb3e42337
Merge pull request #1080 from rstudio/internal-messages
...
Don't use sendCustomMessage for messages internal to Shiny
2016-01-15 12:19:23 -06:00
Winston Chang
36815b5e43
Concat and minify shiny.js
2016-01-15 11:54:10 -06:00
Winston Chang
897e077aca
Convert internal use of sendCustomMessage to sendMessage
2016-01-15 11:53:51 -06:00
Winston Chang
f395960ffa
Add session$sendMessage wrapper function
2016-01-15 11:46:23 -06:00
Winston Chang
fb301717f5
Bump version to 0.13.0.9000
2016-01-14 10:49:08 -06:00
Winston Chang
46da93519f
Bump version to 0.13.0
v0.13.0
2016-01-12 13:33:14 -06:00
Winston Chang
ce0f2c51a9
Use explicit namespaces
2016-01-12 13:33:14 -06:00
Winston Chang
04b4b8da4f
Use --run-donttest when checking package
2016-01-12 13:16:18 -06:00
Winston Chang
877d7451dd
Merge pull request #1073 from rstudio/joe/staticdocs-tweaks
...
Tweaks for improved staticdocs rendering
2016-01-12 13:00:07 -06:00
Joe Cheng
7e6a68a2b1
CRAN maintainers prefer \donttest over \dontrun
2016-01-12 10:10:16 -08:00
Joe Cheng
caca515ba0
Tweaks for improved staticdocs rendering
...
- \donttest -> \dontrun, otherwise staticdocs hangs
- Put NS before ns.sep so usage entries are in a better order
2016-01-11 12:20:19 -08:00
Winston Chang
d548b78dee
Remove unneeded do.call
...
It's OK to remove this do.call now that we are using R6 instead of Ref Classes.
2016-01-08 16:19:08 -06:00
Joe Cheng
f2410abc48
Merge remote-tracking branch 'origin/image-attr'
...
Conflicts:
inst/www/shared/shiny.js
inst/www/shared/shiny.js.map
inst/www/shared/shiny.min.js
inst/www/shared/shiny.min.js.map
2016-01-08 10:55:21 -08:00
Joe Cheng
483a7d34c5
Merge pull request #1071 from rstudio/fix-hidden-slider
...
Fix hidden slider
2016-01-08 10:53:00 -08:00
Winston Chang
e872411285
Build and minify shiny.js
2016-01-08 10:00:22 -06:00
Winston Chang
fc7e6bf542
Revert "Simpler fix for updating hidden sliders ( #1010 )"
...
This reverts commit 4e1caee7da .
See https://github.com/rstudio/shiny/issues/1010#issuecomment-169971201
2016-01-08 10:00:05 -06:00
Winston Chang
16d42b6421
Add bootstrapLib to staticdocs index
2016-01-07 13:51:56 -06:00