Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Initial implementation of asset serving in DashR #64

Merged
merged 28 commits into from
Apr 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
25bb34b
:hammer: update generate_css_dist_html to support locally served CSS
rpkyle Mar 20, 2019
16759b4
:sparkles: add generate_js_dist_html function, refactor to call it in…
rpkyle Mar 20, 2019
a642a1c
:sparkles: add initial support for asset serving
rpkyle Mar 20, 2019
f25952c
:tshirt: fix hanging whitespace
rpkyle Mar 20, 2019
fe32e15
change default for static_folder to 'static'
rpkyle Mar 20, 2019
5a773a6
:bug: insert missing parenthesis
rpkyle Mar 20, 2019
2de3fc8
:hammer: refactor index tag generation to avoid :hankey:
rpkyle Mar 21, 2019
b7676b7
Add mime package to list of imports
rpkyle Mar 22, 2019
8e4e2cf
version bump to 0.0.6
rpkyle Apr 5, 2019
16c4efa
:hocho: remove static_folder
rpkyle Apr 5, 2019
8b0b7cf
Merge branch 'master' into 0.0.5
rpkyle Apr 5, 2019
fd821fd
asset serving now supports distinct asset paths and folders
rpkyle Apr 7, 2019
74392b1
:sparkles: added favicon support
rpkyle Apr 7, 2019
3a26274
:hocho: dash-app-stylesheets
rpkyle Apr 8, 2019
cdf36ac
:hocho: dash-css export
rpkyle Apr 8, 2019
9c3169a
:hocho: css.R
rpkyle Apr 8, 2019
6a56f72
:hocho: htmltools.R example
rpkyle Apr 8, 2019
3861153
:hocho: examples, will replace
rpkyle Apr 8, 2019
f85d553
updated R documentation
rpkyle Apr 8, 2019
fe542cb
:hocho: dash_css.Rd
rpkyle Apr 8, 2019
6b8687d
:hocho: outdated roxygen documentation statements
rpkyle Apr 8, 2019
696523b
updated online help
rpkyle Apr 8, 2019
8afced3
:bug: fix issues with documentation not rendering correctly
rpkyle Apr 8, 2019
2b299a8
:bug: change NULL to double quotes when not serving favicon
rpkyle Apr 9, 2019
f603cd4
updated DESCRIPTION
rpkyle Apr 9, 2019
b23ff9b
removed unneeded codeblock
rpkyle Apr 9, 2019
5c4e23f
add missing comma in warning
rpkyle Apr 9, 2019
756954f
add check for character(0)
rpkyle Apr 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: dashR
Title: An interface to the dash ecosystem for authoring reactive web applications
Version: 0.0.5
Authors@R: c(person("Ryan", "Kyle", role = c("aut", "cre"), email = "ryan@plot.ly"), person("Carson", "Sievert", role = c("aut")))
Description: An interface to the dash ecosystem for authoring reactive web applications.
Title: An interface to the Dash ecosystem for authoring reactive web applications
Version: 0.0.6
Authors@R: c(person("Ryan", "Kyle", role = c("aut", "cre", "trl"), email = "ryan@plot.ly"), person("Chris", "Parmer", role = c("aut"), email = "chris@plot.ly"), person("Carson", "Sievert", role = c("aut")), person(family = "Plotly", role = "cph"))
Description: An interface to the Dash ecosystem for authoring reactive web applications.
Depends:
R (>= 3.0.2)
Imports:
Expand All @@ -14,7 +14,8 @@ Imports:
htmltools,
assertthat,
digest,
base64enc
base64enc,
mime
Suggests:
dashHtmlComponents (>= 0.13.5),
dashCoreComponents (>= 0.42.1),
Expand All @@ -27,13 +28,12 @@ Collate:
'dash.R'
'imports.R'
'print.R'
'css.R'
'heroku.R'
'internal.R'
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1.9000
RoxygenNote: 6.1.1
Roxygen: list(markdown = TRUE)
URL: https://github.com/plotly/dashR
BugReports: https://github.com/plotly/dashR/issues
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

S3method(print,dash_component)
export(Dash)
export(dash_css)
export(heroku_app_deploy)
export(heroku_app_template)
export(input)
Expand Down
44 changes: 0 additions & 44 deletions R/css.R

This file was deleted.

Loading