Barbara Borges Ribeiro
2d39e06c97
find i-tag elements with *any* class (to circumvent the issue of selecting italicized text)
2016-03-17 14:55:57 +00:00
Barbara Borges Ribeiro
e1fc74bdc1
updates to input_binding_actionbutton.js and got rid of isIcon function (substituted by simple check instead)
2016-03-17 14:47:48 +00:00
Barbara Borges Ribeiro
3ab5d7f861
verify that button icons are in the right format (not necessarily valid though) and added updateActionButton()
2016-03-15 22:19:21 +00:00
Winston Chang
3cadd1789b
Merge pull request #1130 from dmpe/master
...
update bootstrap to 3.3.6
2016-03-11 16:03:24 -06:00
dmpe
e486778b36
note to news file and upgrade number in R file
2016-03-11 19:21:25 +01:00
dmpe
b255fecc6e
update bootstrap to 3.3.6
...
see https://github.com/rstudio/shiny/issues/1056
2016-03-11 13:23:38 +01:00
Winston Chang
1bcb6ab931
Add note about grunt clean
2016-03-10 11:08:15 -06:00
Winston Chang
28db561cd9
Bump version to 0.13.1.9001 and update NEWS
2016-03-08 17:03:55 -06:00
Winston Chang
0622326e1b
Merge pull request #1126 from rstudio/commas
...
Add code diagnostics for missing/extra commas, and for unmatched }, ), and ]
2016-03-08 17:01:36 -06:00
Winston Chang
c6e2593e4e
Streamline diagnoseCode
2016-03-08 16:54:28 -06:00
Winston Chang
aee5bda9ec
Add workaround for quartz res bug
...
The quartz device is hard-coded to use 72 ppi in some places, and this
causes problems with grid unit calculations when a value other than 72
is used.
2016-03-08 09:54:01 -06:00
Winston Chang
ea9d94e42f
Add code diagnostics (missing/extra commas)
2016-03-04 15:11:34 -06:00
Winston Chang
5e98b930ee
Move tests from inst/ to tests/
2016-03-03 15:00:51 -06:00
Winston Chang
373e0d3a9f
Fix NEWS after weird merge
2016-02-22 11:37:30 -06:00
Joe Cheng
5e83403d0c
Update NEWS
2016-02-22 09:30:22 -08:00
Winston Chang
cbe76aab83
Merge pull request #1117 from rstudio/joe/feature/abort-output
...
Add ability to abort the processing of outputs
2016-02-22 11:20:17 -06:00
Joe Cheng
26de088520
s/abortOutput/cancelOutput/; add req option
2016-02-22 09:12:30 -08:00
Winston Chang
98430edb17
Merge branch 'replay-plot'
2016-02-19 13:57:38 -06:00
Winston Chang
48c6784e51
Change 'replay' option to 'execOnResize'
2016-02-19 13:52:36 -06:00
Winston Chang
dc0f5af3ef
Rename 'render' to 'plotObj'
2016-02-19 13:42:54 -06:00
Winston Chang
af85e6f2a6
Merge pull request #1116 from yihui/warn-non-UTF8
...
Closes #810 : check if the input file is encoded in UTF-8 and warn if not
2016-02-19 10:00:49 -06:00
Joe Cheng
4e91af4d64
Add ability to abort the processing of outputs
...
abortOutput() leaves the state of the output unchanged,
unlike req(), validate(), or stop().
2016-02-19 00:33:10 -08:00
Yihui Xie
faf87a5dee
Closes #810 : check if the input file is encoded in UTF-8 and warn if not
...
The validUTF8() function is still in R-devel, and they probably will never export it, so let's use iconv(x, from = 'UTF-8', to = 'UTF-8') to test if x is encoded in UTF-8
also closes #1113
2016-02-19 00:02:25 -06:00
Winston Chang
517c5d356f
Merge tag 'v0.13.1'
...
Manually bumped version to 0.13.1.9000.
2016-02-18 12:45:00 -06:00
Winston Chang
931be22247
Bump version to 0.13.1
v0.13.1
2016-02-17 12:03:55 -06:00
Joe Cheng
8697360eb7
Really fix docs.
2016-02-17 11:46:02 -06:00
Joe Cheng
e3a867132a
Use parent.frame() instead of sys.parent()
2016-02-17 11:45:48 -06:00
Joe Cheng
c96debadc5
Fix docs/check
2016-02-17 11:45:16 -06:00
Joe Cheng
02520d4f54
Pass tests. reactive(function() { ... }) is NO LONGER supported.
2016-02-17 11:45:10 -06:00
Joe Cheng
5070b63d5b
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-17 11:45:01 -06:00
Joe Cheng
eaa722b10d
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-02-17 11:32:47 -06:00
Winston Chang
1bc3c90286
Update NEWS
2016-02-16 14:07:49 -06:00
Winston Chang
afd00edee3
Add replay option
2016-02-16 14:07:49 -06:00
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
Yihui Xie
60d01e76e9
Merge pull request #1109 from vnijs/master
...
Closes #692
2016-02-13 00:38:06 -06:00
mostly-harmless
b5cfd4152e
Fix for https://github.com/rstudio/shiny/issues/692
2016-02-12 22:15:34 -08: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