@@ -54,7 +54,7 @@ Currently, Chartlets is available from PyPI only.
5454Implement the application-specific contributions that users
5555can add to their extensions.
5656
57- As an example, see [ ` panel.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/chartlets/ demo/contribs/panel.py ) :
57+ As an example, see [ ` panel.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/demo/server /contribs/panel.py ) :
5858
5959``` python
6060from chartlets import Contribution
@@ -71,11 +71,11 @@ class Panel(Contribution):
7171
7272Define the possible contribution points in your application.
7373
74- As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/chartlets/ demo/server.py ) :
74+ As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/demo/server /server.py ) :
7575
7676``` python
7777from chartlets import Extension
78- from chartlets.demo .contribs import Panel
78+ from .contribs import Panel
7979
8080Extension.add_contrib_point(" panels" , Panel)
8181```
@@ -84,7 +84,7 @@ Extension.add_contrib_point("panels", Panel)
8484
8585Load the extensions that augment your application.
8686
87- As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/chartlets/ demo/server.py ) :
87+ As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/demo/server /server.py ) :
8888
8989``` python
9090from chartlets import ExtensionContext
@@ -97,15 +97,15 @@ ext_ctx = ExtensionContext.load(app_ctx, extension_refs)
9797Implement the Chartlets API in your application-specific webserver using
9898the controller implementations in ` chartlets.controllers ` .
9999
100- As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/chartlets/ demo/server.py ) .
100+ As an example, see [ ` server.py ` of the demo] ( https://github.com/bcdev/chartlets/tree/main/chartlets.py/demo/server /server.py ) .
101101
102102## Frontend integration
103103
104104The JavaScript package ` chartlets ` provides the types, actions, and hooks
105105to allow for supporting server-side UI contributions in your React
106106application.
107107
108- As an example, see [ the demo application] ( https://github.com/bcdev/chartlets/tree/main/chartlets.js/src /demo ) .
108+ As an example, see [ the demo application] ( https://github.com/bcdev/chartlets/tree/main/chartlets.js/packages /demo/src ) .
109109
110110As an application provider you will need to perform the
111111following steps:
0 commit comments