diff --git a/packages/dash-html-components/.github/FUNDING.yml b/packages/dash-html-components/.github/FUNDING.yml index 6f1019e2e2..c834fa224c 100644 --- a/packages/dash-html-components/.github/FUNDING.yml +++ b/packages/dash-html-components/.github/FUNDING.yml @@ -1 +1 @@ -custom: https://plot.ly/products/consulting-and-oem/ +custom: https://plotly.com/products/consulting-and-oem/ diff --git a/packages/dash-html-components/CONTRIBUTING.md b/packages/dash-html-components/CONTRIBUTING.md index cc3056aac2..c6e57a376b 100644 --- a/packages/dash-html-components/CONTRIBUTING.md +++ b/packages/dash-html-components/CONTRIBUTING.md @@ -27,12 +27,12 @@ Use the [GitHub flow][] when proposing contributions to this repository (i.e. cr If your company wishes to sponsor development of open source dash components, please [get in touch][]. -[Dash HTML Components]: https://dash.plot.ly/dash-html-components +[Dash HTML Components]: https://dash.plotly.com/dash-html-components [MDN spec]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element [W3 index of elements]: https://dev.w3.org/html5/html-author/#index-of-elements [Dash Core Components]: https://github.com/plotly/dash-core-components [issues]: https://github.com/plotly/dash-html-components/issues [GitHub flow]: https://guides.github.com/introduction/flow/ [eslintrc-react.json]: https://github.com/plotly/dash-components-archetype/blob/master/config/eslint/eslintrc-react.json -[get in touch]: https://plot.ly/products/consulting-and-oem +[get in touch]: https://plotly.com/products/consulting-and-oem diff --git a/packages/dash-html-components/README.md b/packages/dash-html-components/README.md index 54d24d19ef..a7408d261e 100644 --- a/packages/dash-html-components/README.md +++ b/packages/dash-html-components/README.md @@ -108,7 +108,7 @@ See the [contributing guide](CONTRIBUTING.md) for guidelines on contributing to ``` _Publishing your component to NPM will make the JavaScript bundles available on the unpkg CDN. By default, Dash servers the component library's CSS and JS from the remote unpkg CDN, so if you haven't published the component package to NPM you'll need to set the `serve_locally` flags to `True` (unless you choose `False` on `publish_on_npm`). We will eventually make `serve_locally=True` the default, [follow our progress in this issue](https://github.com/plotly/dash/issues/284)._ -[Dash]: https://plot.ly/dash +[Dash]: https://plotly.com/dash [MDN HTML attribute reference]: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes [NPM package authors]: https://www.npmjs.com/package/dash-html-components/access [PyPi]: https://pypi.python.org/pypi diff --git a/packages/dash-html-components/dash-info.yaml b/packages/dash-html-components/dash-info.yaml index 176b7a313a..1e757134a0 100644 --- a/packages/dash-html-components/dash-info.yaml +++ b/packages/dash-html-components/dash-info.yaml @@ -20,7 +20,7 @@ r_examples: app$layout( htmlDiv(list( htmlA(children='Link to external site', - href='https://plot.ly', + href='https://plotly.com', target='_blank') ) ) @@ -843,7 +843,7 @@ r_examples: app$layout(htmlDiv(list( htmlFigure(children = list( - htmlImg(src = 'https://brand.plot.ly/static/images/plotly-logo-01-stripe@2x.png'), + htmlImg(src = 'https://brand.plotly.com/static/images/plotly-logo-01-stripe@2x.png'), htmlFigcaption(children = 'Plotly Logo'))) ) ) @@ -860,7 +860,7 @@ r_examples: app$layout(htmlDiv(list( htmlFigure(children = list( - htmlImg(src = 'https://brand.plot.ly/static/images/plotly-logo-01-stripe@2x.png', + htmlImg(src = 'https://brand.plotly.com/static/images/plotly-logo-01-stripe@2x.png', width = '400', height = '150') ) @@ -1130,7 +1130,7 @@ r_examples: app$layout(htmlDiv(list( htmlIframe(width = "600px", height = "600px", - src = "https://dashr.plot.ly/") + src = "https://dashr.plotly.com/") ) ) ) @@ -1145,7 +1145,7 @@ r_examples: app <- Dash$new() app$layout(htmlDiv(list( - htmlImg(src ='https://brand.plot.ly/static/images/plotly-logo-01-stripe@2x.png', + htmlImg(src ='https://brand.plotly.com/static/images/plotly-logo-01-stripe@2x.png', height='200', width='400') ) ) @@ -1476,11 +1476,11 @@ r_examples: htmlDiv(list( htmlNav( list( - htmlA("Plotly", href = "https://plot.ly/"), + htmlA("Plotly", href = "https://plotly.com/"), '> ", - htmlA("Dash", href = "https://plot.ly/dash"), + htmlA("Dash", href = "https://plotly.com/dash"), '> ", - htmlA("Request Trial", href = "https://go.plot.ly/dash-enterprise-trial") + htmlA("Request Trial", href = "https://go.plotly.com/dash-enterprise-trial") ) ) )) diff --git a/packages/dash-html-components/package.json b/packages/dash-html-components/package.json index 1445feabda..daa314b155 100644 --- a/packages/dash-html-components/package.json +++ b/packages/dash-html-components/package.json @@ -27,8 +27,8 @@ "test:py": "python -m unittest tests.test_dash_html_components tests.test_integration", "test": "run-s -c test:py test:import lint" }, - "author": "Chris Parmer ", - "maintainer": "Ryan Patrick Kyle ", + "author": "Chris Parmer ", + "maintainer": "Ryan Patrick Kyle ", "dependencies": { "babel-core": "^6.26.3", "babel-eslint": "^8.2.3", @@ -63,4 +63,4 @@ "react": "^15.4.0 || ^16.0.0", "react-dom": "^15.4.0 || ^16.0.0" } -} \ No newline at end of file +} diff --git a/packages/dash-html-components/setup.py b/packages/dash-html-components/setup.py index e08477fb70..ecd37e2b84 100644 --- a/packages/dash-html-components/setup.py +++ b/packages/dash-html-components/setup.py @@ -11,7 +11,7 @@ name='dash_html_components', version=package["version"], author=package['author'], - author_email='chris@plot.ly', + author_email='chris@plotly.com', packages=[package_name], url='https://github.com/plotly/dash-html-components', include_package_data=True, diff --git a/packages/dash-html-components/tests/test_dash_html_components.py b/packages/dash-html-components/tests/test_dash_html_components.py index 00a734528f..8b276cfad4 100644 --- a/packages/dash-html-components/tests/test_dash_html_components.py +++ b/packages/dash-html-components/tests/test_dash_html_components.py @@ -26,14 +26,14 @@ def test_sample_items(self): layout = Div( Div( - Img(src='https://plot.ly/~chris/1638.png') + Img(src='https://plotly.com/~chris/1638.png') ), style={'color': 'red'} ) self.assertEqual( repr(layout), ''.join([ - "Div(children=Div(Img(src='https://plot.ly/~chris/1638.png')), " + "Div(children=Div(Img(src='https://plotly.com/~chris/1638.png')), " "style={'color': 'red'})" ]) ) diff --git a/packages/dash-html-components/vignettes/dash-html-components.Rmd b/packages/dash-html-components/vignettes/dash-html-components.Rmd index 7dfed59682..06126f6b9a 100644 --- a/packages/dash-html-components/vignettes/dash-html-components.Rmd +++ b/packages/dash-html-components/vignettes/dash-html-components.Rmd @@ -11,7 +11,7 @@ vignette: > Dash is a web application framework that provides pure R and Python abstraction around HTML, CSS, and JavaScript. Instead of writing HTML or using an HTML templating engine, you compose your layout using R functions within the `dashHtmlComponents` package. The source is on GitHub at [plotly/dash-html-components](https://github.com/plotly/dash-html-components). -Please visit our online documentation, which is interactive and frequently updated: https://dashr.plot.ly. +Please visit our online documentation, which is interactive and frequently updated: https://dashr.plotly.com. The components in this package are all simple wrappers for HTML5 elements. Extensive documentation for these elements is available online: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/