trestletech
ecefdcd951
Convert R to MD
...
Used roxygen2md::roxygen2md(scope="simple")
Not manually reviewed.
2019-06-19 15:28:03 -05:00
trestletech
a976cfa98d
Remove escaping for % in preparation for MD conversion
...
Obtained by running `sed -i "" -E "s/^(.*)\\\%(.*)$/\1%\2/g" *` in the R
directory on a Mac.
2019-06-19 15:13:25 -05:00
Jeff Allen
9dad5e6362
Define optgroup when using ( #2502 )
2019-06-18 16:06:29 -05:00
Jeff Allen
f51b5421f2
Add sep argument to renderText ( #2497 )
...
* Add sep argument to renderText
Closes #2469
* Add link to PR
* Regenerate docs
2019-06-14 16:26:28 -05:00
trestletech
b5ca1d48e0
Add link to renderCachedPlot.
...
Closes #2476
2019-06-14 14:22:49 -05:00
trestletech
396f170738
Bundle deprecated reactive functions into a single file.
2019-06-14 14:20:31 -05:00
trestletech
5199371025
Mark deprecated functions as internal.
...
This prevents them from being listed in the documentation index. Closes #2482 .
2019-06-13 15:47:20 -05:00
Winston Chang
d26d339f97
Ensure that dependents are sorted
2019-06-04 14:02:36 -05:00
Winston Chang
17afce6fa1
Merge pull request #2429 from rstudio/wch-fastmap
...
Use fastmap as backing store for Map class
2019-05-31 15:39:34 -05:00
Winston Chang
8f24d667d6
Unquote key
2019-05-30 15:12:15 -05:00
Winston Chang
5cd4588ef2
Use grep(value=TRUE)
2019-05-30 14:38:05 -05:00
Carson Sievert
57cc44f662
Coordmap info should retain discrete limits ( #2410 )
...
* ggplot2 input brushes should retain discrete range mapping, and be imposed in brushedPoints(), closes #1433
* simplify logic and reduce required storage
* get nearPoints() working as well, cleanup
* only remember scale range if ggplot is facet with a free discrete axis
* Use the scale limits (before the range) since the former is specified, that's what is actually shown on the plot
also, introduce within_brush() helper to consistently handle missing values produced by asNumber()
* also use scale limits in older versions of ggplot2
* DRY
* discrete_mapping -> discrete_limits; better comments
* update test expectation
* a couple unit tests
* update comment to reflect new coordmap data structure
* use unlink() not rm()
* add some tests for specifying scale limits and labels
* Use get_limits() if available
* update news
* better name and comment for new asNumber() argument
2019-05-14 16:34:00 -05:00
Winston Chang
1ef2074a10
Fastmap objects can now be saved and loaded
2019-05-14 10:36:37 -05:00
Winston Chang
0747b2a72a
fastmap: exists() was renamed to has()
2019-05-14 10:35:50 -05:00
Winston Chang
38d2809131
Convert MemoryCache to use fastmap
2019-05-09 10:20:33 -05:00
Winston Chang
d7718991a6
Import fastmap::fastmap
2019-05-09 10:20:33 -05:00
Winston Chang
32c2bff6eb
Convert ReactiveValues$.metadata to use Map
2019-05-09 10:20:33 -05:00
Winston Chang
555ede03ed
Convert ReactiveValues$.values to use Map
2019-05-08 20:33:52 -05:00
Winston Chang
2a6f218700
Convert ReactiveValues$.dependents to use Map
2019-05-08 20:33:52 -05:00
Winston Chang
b087c19b52
Use fastmap as backing store for Map class
2019-05-08 20:33:52 -05:00
Carson Sievert
68eeb338da
Have input labels always include 'control-label' class
2019-05-08 15:15:09 -05:00
Carson Sievert
ea54c17902
merge with master
2019-05-08 15:10:22 -05:00
Joe Cheng
8a0731493f
Fix rstudio/reactlog#36 : Changes to reactive values not displaying accurately
2019-05-07 09:30:59 -07:00
Carson Sievert
07e2b80b5d
merge with master; fix NEWS conflicts
2019-05-03 17:21:06 -05:00
Carson Sievert
1311e1fca2
have class come before the for attribute
2019-05-03 17:16:17 -05:00
Winston Chang
e6c2133520
Merge pull request #2416 from rstudio/updateSliderInput
...
getSliderType() should be able to handle NULL min/max/value, fixes #2250
2019-05-03 16:54:57 -05:00
Carson Sievert
3d6f734ff2
update comment
2019-05-03 15:58:45 -05:00
Carson Sievert
ced6622b25
Have getSliderType() return '' early if min, max, and value are NULL
2019-05-03 15:54:48 -05:00
Carson Sievert
370f1b51ee
Inputs now always supply a <label> tag with a special CSS class for hiding NULL labels
...
This helps to simplify the updating logic on the client
2019-05-03 15:38:57 -05:00
Carson Sievert
c61a585e79
getSliderType() should be able to handle NULL min/max/value, fixes #2250
2019-05-01 19:41:26 -05:00
Carson Sievert
4c50c064d3
make return value of dateYMD() slightly more clear
2019-04-30 17:08:13 -05:00
Carson Sievert
b04133bf65
Include argName with warning when length > 1
2019-04-30 17:00:34 -05:00
Carson Sievert
3602358d2c
fix typo in warning message
2019-04-30 17:00:34 -05:00
Carson Sievert
67b0416eba
Throw informative warning if date coercion fails and original input
2019-04-30 17:00:34 -05:00
Carson Sievert
f8d69ecb1f
Consistent approach to coercing and formatting date strings, closes #2402
2019-04-30 17:00:34 -05:00
Joe Cheng
1415b57181
Add sys.www.root to createAppHandlers, so that subapps can access /shared/*
2019-04-16 18:40:29 -07:00
Joe Cheng
65d4a4e906
Add comments
2019-04-16 18:12:09 -07:00
Joe Cheng
1b8d822226
Fix #2385 : R Markdown documents containing subapps not rendering properly
2019-04-14 17:19:17 -07:00
Winston Chang
1e88990a0b
Fix serving of www/index.html. Closes #2380
2019-04-11 11:57:48 -05:00
Barret Schloerke
a287ebe324
Minimize str usage in rlog$valueStr ( #2377 )
...
* return early if loggin is disabled
* do not allow str to recurse
* add news item for #2377
* change " " to " "
* Not a "world-ending performance issue"
2019-04-10 11:27:29 -07:00
Alan Dipert
9afc06028d
Restore intuitive bookmarking behavior ( #2360 )
...
* Adding flushPending() to ShinySession's flushOutput() restores intuitive bookmarking behavior
* Check that restoreContext is present
* Update NEWS
2019-03-26 15:08:34 -05:00
Barret Schloerke
7b6cc50238
Merge branch 'master' into rc-v1.3.0
...
* master:
fix shortString is NA or NULL logic
add coverage for situation where label might be na or NULL
increase default length of label to 250chars from 100chars
make sure labels are short for reactlog
2019-03-01 15:45:19 -05:00
Barret Schloerke
93d3b78ac1
fix shortString is NA or NULL logic
2019-03-01 15:22:40 -05:00
Barret Schloerke
69e82f6e0e
add coverage for situation where label might be na or NULL
2019-03-01 14:57:05 -05:00
Barret Schloerke
1f83a6db7b
increase default length of label to 250chars from 100chars
2019-03-01 14:34:21 -05:00
Barret Schloerke
8f37951e14
make sure labels are short for reactlog
2019-03-01 14:30:23 -05:00
Joe Cheng
e1f4d43926
Merge pull request #2342 from rstudio/reactlog-cran
...
Reactlog github location removed
2019-02-27 10:31:08 -08:00
Winston Chang
f18c426151
addResourcePath: create staticPath object immediately. Fixes #2339
2019-02-27 11:12:55 -06:00
Barret Schloerke
e46debb6d1
remove github location for reactlog and clean up flow of check_suggested
2019-02-27 09:19:46 -05:00
Winston Chang
d7d8e78e42
Make sure the is.na() check in %AND% looks for length-1 input
...
This is to avoid errors with R CMD check on R-devel like this:
https://travis-ci.org/rstudio/shiny/jobs/498880293
2019-02-26 14:32:41 -06:00