Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit a5da3cb

Browse files
committed
Replace all instances of plot.ly with plotly.com.
1 parent 00c9b65 commit a5da3cb

8 files changed

+19
-19
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
custom: https://plot.ly/products/consulting-and-oem/
1+
custom: https://plotly.com/products/consulting-and-oem/

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ Use the [GitHub flow][] when proposing contributions to this repository (i.e. cr
2727

2828
If your company wishes to sponsor development of open source dash components, please [get in touch][].
2929

30-
[Dash HTML Components]: https://dash.plot.ly/dash-html-components
30+
[Dash HTML Components]: https://dash.plotly.com/dash-html-components
3131
[MDN spec]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element
3232
[W3 index of elements]: https://dev.w3.org/html5/html-author/#index-of-elements
3333
[Dash Core Components]: https://github.com/plotly/dash-core-components
3434
[issues]: https://github.com/plotly/dash-html-components/issues
3535
[GitHub flow]: https://guides.github.com/introduction/flow/
3636
[eslintrc-react.json]: https://github.com/plotly/dash-components-archetype/blob/master/config/eslint/eslintrc-react.json
37-
[get in touch]: https://plot.ly/products/consulting-and-oem
37+
[get in touch]: https://plotly.com/products/consulting-and-oem
3838

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ See the [contributing guide](CONTRIBUTING.md) for guidelines on contributing to
108108
```
109109
_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)._
110110
111-
[Dash]: https://plot.ly/dash
111+
[Dash]: https://plotly.com/dash
112112
[MDN HTML attribute reference]: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
113113
[NPM package authors]: https://www.npmjs.com/package/dash-html-components/access
114114
[PyPi]: https://pypi.python.org/pypi

dash-info.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ r_examples:
2020
app$layout(
2121
htmlDiv(list(
2222
htmlA(children='Link to external site',
23-
href='https://plot.ly',
23+
href='https://plotly.com',
2424
target='_blank')
2525
)
2626
)
@@ -843,7 +843,7 @@ r_examples:
843843
844844
app$layout(htmlDiv(list(
845845
htmlFigure(children = list(
846-
htmlImg(src = 'https://brand.plot.ly/static/images/[email protected]'),
846+
htmlImg(src = 'https://brand.plotly.com/static/images/[email protected]'),
847847
htmlFigcaption(children = 'Plotly Logo')))
848848
)
849849
)
@@ -860,7 +860,7 @@ r_examples:
860860
861861
app$layout(htmlDiv(list(
862862
htmlFigure(children = list(
863-
htmlImg(src = 'https://brand.plot.ly/static/images/[email protected]',
863+
htmlImg(src = 'https://brand.plotly.com/static/images/[email protected]',
864864
width = '400',
865865
height = '150')
866866
)
@@ -1130,7 +1130,7 @@ r_examples:
11301130
11311131
app$layout(htmlDiv(list(
11321132
htmlIframe(width = "600px", height = "600px",
1133-
src = "https://dashr.plot.ly/")
1133+
src = "https://dashr.plotly.com/")
11341134
)
11351135
)
11361136
)
@@ -1145,7 +1145,7 @@ r_examples:
11451145
app <- Dash$new()
11461146
11471147
app$layout(htmlDiv(list(
1148-
htmlImg(src ='https://brand.plot.ly/static/images/[email protected]',
1148+
htmlImg(src ='https://brand.plotly.com/static/images/[email protected]',
11491149
height='200', width='400')
11501150
)
11511151
)
@@ -1476,11 +1476,11 @@ r_examples:
14761476
htmlDiv(list(
14771477
htmlNav(
14781478
list(
1479-
htmlA("Plotly", href = "https://plot.ly/"),
1479+
htmlA("Plotly", href = "https://plotly.com/"),
14801480
'> ",
1481-
htmlA("Dash", href = "https://plot.ly/dash"),
1481+
htmlA("Dash", href = "https://plotly.com/dash"),
14821482
'> ",
1483-
htmlA("Request Trial", href = "https://go.plot.ly/dash-enterprise-trial")
1483+
htmlA("Request Trial", href = "https://go.plotly.com/dash-enterprise-trial")
14841484
)
14851485
)
14861486
))

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"test:py": "python -m unittest tests.test_dash_html_components tests.test_integration",
2828
"test": "run-s -c test:py test:import lint"
2929
},
30-
"author": "Chris Parmer <chris@plot.ly>",
31-
"maintainer": "Ryan Patrick Kyle <ryan@plot.ly>",
30+
"author": "Chris Parmer <chris@plotly.com>",
31+
"maintainer": "Ryan Patrick Kyle <ryan@plotly.com>",
3232
"dependencies": {
3333
"babel-core": "^6.26.3",
3434
"babel-eslint": "^8.2.3",
@@ -63,4 +63,4 @@
6363
"react": "^15.4.0 || ^16.0.0",
6464
"react-dom": "^15.4.0 || ^16.0.0"
6565
}
66-
}
66+
}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
name='dash_html_components',
1212
version=package["version"],
1313
author=package['author'],
14-
author_email='chris@plot.ly',
14+
author_email='chris@plotly.com',
1515
packages=[package_name],
1616
url='https://github.com/plotly/dash-html-components',
1717
include_package_data=True,

tests/test_dash_html_components.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ def test_sample_items(self):
2626

2727
layout = Div(
2828
Div(
29-
Img(src='https://plot.ly/~chris/1638.png')
29+
Img(src='https://plotly.com/~chris/1638.png')
3030
), style={'color': 'red'}
3131
)
3232

3333
self.assertEqual(
3434
repr(layout),
3535
''.join([
36-
"Div(children=Div(Img(src='https://plot.ly/~chris/1638.png')), "
36+
"Div(children=Div(Img(src='https://plotly.com/~chris/1638.png')), "
3737
"style={'color': 'red'})"
3838
])
3939
)

vignettes/dash-html-components.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ vignette: >
99

1010
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).
1111

12-
Please visit our online documentation, which is interactive and frequently updated: https://dashr.plot.ly.
12+
Please visit our online documentation, which is interactive and frequently updated: https://dashr.plotly.com.
1313

1414
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/
1515

0 commit comments

Comments
 (0)