Joe Cheng
6e3e77f65d
Code review feedback for version checking stuff
2013-03-25 11:26:16 -07:00
Winston Chang
1c0279f17c
Undo commit 'Remove redundant code in shiny.js'
...
The code wasn't actually redundant.
2013-03-22 12:51:29 -05:00
Winston Chang
8866eb292b
Add section breaks in shiny.js
2013-03-21 21:09:16 -05:00
Winston Chang
6fdda3391e
Send initial value of URL hash
2013-03-20 16:53:40 -05:00
Winston Chang
fdb8dd4e5b
Remove redundant code in shiny.js
2013-03-20 13:22:21 -05:00
Joe Cheng
9a1d3783ee
Unbind controls in htmlOutput before displaying error
2013-03-19 13:32:14 -07:00
Winston Chang
f743d5d0b5
New method for detecting hidden outputs
2013-03-17 11:08:28 -07:00
Winston Chang
d511b82264
Add imageOutput function
2013-03-15 16:44:18 -05:00
Joe Cheng
dd046f3442
Merge remote-tracking branch 'jcheng5/master'
...
Conflicts:
R/shiny.R
2013-03-13 10:47:06 -07:00
Winston Chang
63d4798a50
Add tests for parseQueryString
2013-03-12 14:32:52 -05:00
Winston Chang
6c47517684
Move allowDataUriScheme into .clientdata
2013-03-12 14:24:48 -05:00
Joe Cheng
f489d9131b
File uploads failed when no content type was provided
...
The simple fix for this would've been to just guess the content
type on the server (or use empty string or something), but by
doing the fix this way we're also set up to handle uploads by
servers that don't allow custom headers on AJAX calls.
2013-03-12 09:50:01 -07:00
Winston Chang
f0109c5588
Send URL in clientdata
2013-03-11 18:44:58 -05:00
Winston Chang
4605788696
Add informative comments
2013-03-11 18:43:03 -05:00
Joe Cheng
87908313cc
Merge remote-tracking branch 'jcheng5/httpuv'
...
Conflicts:
R/shiny.R
2013-03-11 09:36:47 -07:00
Winston Chang
0bf6ce57ed
renderPlot: send height and width along with image
2013-03-11 09:39:38 -05:00
Winston Chang
1b692b6c37
Rename shinyapp to shinysession, and .shinyout_xx to .clientdata_output_xx
2013-03-05 19:07:36 -06:00
Winston Chang
40d8cef1a2
Rename .metadata to clientData
2013-03-05 16:21:02 -06:00
Winston Chang
79bdb9eed5
Add shiny metadata channel and send pixel ratio
...
This adds support for retina-resolution displays
2013-03-04 20:33:29 -06:00
Joe Cheng
dee43a3911
Don't animate when showing file upload error
2013-03-04 14:47:26 -08:00
Joe Cheng
0e5af2b16c
Check for excessively large uploads before they begin
...
The onHeaders callback is supposed to be able to stop large uploads before
they begin, but do not appear to be having the desired effect. The browsers
continue uploading until completion, before noticing the response. To work
around this for now, upload the sizes explicitly when the job begins and
let Shiny pre-emptively reject the whole thing. This is also beneficial
in cases where multiple files are being uploaded and not all of them
exceed the maximum upload size.
2013-03-01 19:31:18 -08:00
Joe Cheng
85ca3a3b27
Update upload docs
2013-03-01 15:54:19 -08:00
Joe Cheng
fc5f5f3b6c
Don't initiate file upload if no files were chosen
2013-02-28 21:14:06 -08:00
Joe Cheng
716fd8c0b9
File upload improvements
...
- Add "shiny.maxRequestSize" option
- Show upload progress
2013-02-28 21:06:06 -08:00
Joe Cheng
c2311faffe
httpuv-style file uploading
...
Use HTTP POST to upload files rather than sending 4K chunks
one at a time over the websocket. This is massively faster and
also means no binary websocket support is needed. In theory
this approach should be compatible with Shiny Server.
Currently the client side code still uses File API which means
IE8 and 9 users are out of luck.
2013-02-27 16:47:18 -08:00
Winston Chang
308c583254
setRatePolicy based on effectiveId. Fixes #110
...
Previously when getType() was defined for a type of object, shiny.js would
send updates immediately instead of applying the rate policy.
2013-02-20 11:39:22 -06:00
Winston Chang
3ea88a07d9
sliderInputBinding inherits from text instead of number. Fixes #110
2013-02-18 22:25:38 -06:00
Winston Chang
db60ac5c17
Empty numericInput gets converted to NA
2013-02-18 15:11:41 -06:00
Winston Chang
24656713a5
Remove unnecessary function() in renderXX
2013-02-17 12:02:00 -06:00
Winston Chang
e26f175a8f
Change reactiveXX to renderXX
2013-02-13 12:11:39 -06:00
Winston Chang
2ea38d6ecc
Clean up instances of reactive() and observe()
2013-02-12 15:24:50 -06:00
Winston Chang
5fd723cb80
reactive() and observe() now take expressions
2013-02-12 15:24:49 -06:00
Winston Chang
5d949842eb
Add garbage collection tests
2013-02-11 20:26:23 -06:00
Winston Chang
952b342859
Better checks for hidden output objects
2013-02-11 18:31:44 -06:00
Joe Cheng
63c5b05584
Stop extra update message from occurring on startup
2013-02-08 16:37:55 -08:00
Winston Chang
4b235e5b87
Send output hidden state on init
2013-02-07 14:29:03 -06:00
Winston Chang
6c51fffdaa
Fix tests
2013-02-07 14:29:03 -06:00
Joe Cheng
17526711a2
Change resume behavior for Observer
...
Eliminate multiple runs when resumed multiple times
2013-02-07 14:29:03 -06:00
Winston Chang
cf0118e090
Add tests for suspended observers
2013-02-07 14:29:03 -06:00
Winston Chang
eb5428c971
Suspend hidden outputs
2013-02-07 14:29:03 -06:00
Winston Chang
b3944127ea
Add note about using local() with isolate()
2013-02-01 15:16:33 -05:00
Winston Chang
d860d13361
Add comments to test
2013-01-30 15:04:50 -05:00
Winston Chang
4b077dbf4c
Observers can be suspended/resumed
2013-01-30 14:47:19 -05:00
Joe Cheng
38b0f71b01
Merge pull request #89 from wch/reactive-invisible
...
Store visibility state of functions called from Observable
2013-01-25 00:47:42 -08:00
Winston Chang
29d2f115f8
Better reactiveText test
2013-01-24 23:10:02 -06:00
Winston Chang
0f677b4891
Add tests for reactive function return visibility
2013-01-24 22:45:07 -06:00
Joe Cheng
330d102f62
Fix test on Linux (sort locale)
2013-01-23 12:17:45 -08:00
Joe Cheng
17c6a0f28a
Merge branch 'reactivePrint-invisible'
...
Conflicts:
man/plotOutput.Rd
2013-01-23 12:09:53 -08:00
Joe Cheng
ff99fbfbc9
Fix #64 : Hitting Enter in textbox causes form submit
2013-01-23 11:54:06 -08:00
Joe Cheng
a91e925221
Remove failure comment
2013-01-23 11:33:06 -08:00