-
-
Notifications
You must be signed in to change notification settings - Fork 31
Support for index page templating #168
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
Changes from 7 commits
f6c13a9
f81fcb5
a58d4f2
4d72243
30251cf
3346a93
2e58b37
0984660
3aa0f50
a2410d5
a158a37
1138e4c
fd67f8a
17a61d1
13ebec4
ab54aa0
ce4a8b6
036e4e5
09b0851
4023b67
8e98370
0ce3158
7fd1ebe
a0c2f7e
5ae7549
79b0faa
39d52e0
8b71875
f3dbfb9
e3a40c3
df3d780
84f8464
5bbba6e
2aef1f3
56904ba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence | ||
@alexcjohnson @Marc-Andre-Rivet @rpkyle | ||
rpkyle marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Package: dash | ||
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications | ||
Version: 0.1.0 | ||
Version: 0.2.0 | ||
rpkyle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Authors@R: c(person("Chris", "Parmer", role = c("aut"), email = "[email protected]"), person("Ryan Patrick", "Kyle", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5829-9867"), email = "[email protected]"), person("Carson", "Sievert", role = c("aut"), comment = c(ORCID = "0000-0002-4958-2844")), person(family = "Plotly Technologies", role = "cph")) | ||
Description: A framework for building analytical web applications, Dash offers a pleasant and productive development experience. No JavaScript required. | ||
Depends: | ||
R (>= 3.0.2) | ||
Imports: | ||
dashHtmlComponents (== 1.0.0), | ||
dashCoreComponents (== 1.0.0), | ||
dashTable (== 4.0.2), | ||
dashHtmlComponents (== 1.0.2), | ||
rpkyle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
dashCoreComponents (== 1.6.0), | ||
dashTable (== 4.5.1), | ||
R6, | ||
fiery (> 1.0.0), | ||
routr (> 0.2.0), | ||
plotly, | ||
reqres, | ||
reqres (>= 0.2.3), | ||
jsonlite, | ||
htmltools, | ||
assertthat, | ||
|
@@ -31,13 +31,13 @@ Collate: | |
'imports.R' | ||
'print.R' | ||
'internal.R' | ||
Remotes: plotly/dash-html-components@17da1f4, | ||
plotly/dash-core-components@cc1e654, | ||
plotly/dash-table@042ad65, | ||
plotly/reqres@55072ab | ||
Remotes: plotly/dash-html-components@55c3884, | ||
rpkyle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
plotly/dash-core-components@c107e0f, | ||
plotly/dash-table@3058bd5 | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
KeepSource: true | ||
RoxygenNote: 6.1.1 | ||
Roxygen: list(markdown = TRUE) | ||
URL: https://github.com/plotly/dashR | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
S3method(print,dash_component) | ||
export(Dash) | ||
export(clientsideFunction) | ||
export(dashNoUpdate) | ||
export(input) | ||
export(output) | ||
|
@@ -26,4 +27,4 @@ importFrom(routr,RouteStack) | |
importFrom(routr,ressource_route) | ||
importFrom(stats,setNames) | ||
importFrom(tools,file_ext) | ||
importFrom(utils,getFromNamespace) | ||
importFrom(utils,getFromNamespace) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @HammadTheOne Watch out for the lack of CRLF at EOF, as denoted by the 🚫 above. We'll want to restore this (might have been my accidental doing, but would need to check the history). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in a2410d. |
Uh oh!
There was an error while loading. Please reload this page.