You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/examples/Widget List.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1291,7 +1291,7 @@
1291
1291
"source": [
1292
1292
"## Output\n",
1293
1293
"\n",
1294
-
"The `Output` widget can capture and display stdout, stderr and [rich output generated by IPython](http://ipython.readthedocs.io/en/stable/api/generated/IPython.display.html#module-IPython.display). For detailed documentation, see the [output widget examples](/examples/Output Widget.html)."
1294
+
"The `Output` widget can capture and display stdout, stderr and [rich output generated by IPython](http://ipython.readthedocs.io/en/stable/api/generated/IPython.display.html#module-IPython.display). For detailed documentation, see the [output widget examples](https://ipywidgets.readthedocs.io/en/latest/examples/Output Widget.html)."
Copy file name to clipboardExpand all lines: docs/source/examples/Widget Low Level.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -326,7 +326,7 @@
326
326
"cell_type": "markdown",
327
327
"metadata": {},
328
328
"source": [
329
-
"After the Widget has been constructed, it can be displayed. Calling `display(widgetinstance)` causes a specially named repr method in the widget to run. This method sends a message to the front-end that tells the front-end to construct and display a widget view. The message is in response to the original code execution message, and the original message’s GUID is stored in the new message’s header. When the front-end receives the message, it uses the original messsage’s GUID to determine what cell the new view should belong to. Then, the view is created, using the WidgetView class specified in the WidgetModel’s state. The same require.js method is used to load the view class. Once the class is loaded, an instance of it is constructed, displayed in the right cell, and registers listeners for changes of the model."
329
+
"After the Widget has been constructed, it can be displayed. Calling `display(widgetinstance)` causes a specially named repr method in the widget to run. This method sends a message to the front-end that tells the front-end to construct and display a widget view. The message is in response to the original code execution message, and the original message’s GUID is stored in the new message’s header. When the front-end receives the message, it uses the original message’s GUID to determine what cell the new view should belong to. Then, the view is created, using the WidgetView class specified in the WidgetModel’s state. The same require.js method is used to load the view class. Once the class is loaded, an instance of it is constructed, displayed in the right cell, and registers listeners for changes of the model."
Copy file name to clipboardExpand all lines: packages/schema/messages.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ Symmetrically, when instantiating a widget in the kernel, the kernel widgets lib
91
91
}
92
92
```
93
93
94
-
The type of widget to be instantiated in the frontend is determined by the `_model_name`, `_model_module` and `_model_module_version` keys in the state, which respectively stand for the name of the class that must be instantiated in the frontend, the JavaScript module where this class is defined, and a semver range for that module. See the [Model State](modelstate.md) documentation for the serialized state for core Jupyter widgets.
94
+
The type of widget to be instantiated in the frontend is determined by the `_model_name`, `_model_module` and `_model_module_version` keys in the state, which respectively stand for the name of the class that must be instantiated in the frontend, the JavaScript module where this class is defined, and a semver range for that module. See the [Model State](jupyterwidgetmodels.v6.md) documentation for the serialized state for core Jupyter widgets.
95
95
96
96
### State synchronization
97
97
@@ -116,7 +116,7 @@ The `data.state` value is a dictionary of widget state keys and values that can
116
116
117
117
Comm messages for state synchronization may contain binary buffers. The optional `data.buffers` value contains a list of keys corresponding to the binary buffers. For example, if `data.buffers` is `['x', 'y']`, then the first binary buffer is the value of the `'x'` state attribute and the second binary buffer is the value of the `'y'` state attribute.
118
118
119
-
See the [Model state](modelstate.md) documentation for the attributes of core Jupyter widgets.
119
+
See the [Model state](jupyterwidgetmodels.v6.md) documentation for the attributes of core Jupyter widgets.
120
120
121
121
#### Synchronizing from frontend to kernel: `backbone`
122
122
@@ -269,7 +269,7 @@ The `data.state` value is a dictionary of widget state keys and values that can
269
269
270
270
Comm messages for state synchronization may contain binary buffers. The `data.buffer_paths` value contains a list of 'paths' in the `data.state` object corresponding to the binary buffers. For example, if `data.buffer_paths` is `[['x'], ['y', 'z', 0]]`, then the first binary buffer is the value of the `data.state['x']` attribute and the second binary buffer is the value of the `data.state['y']['z'][0]` state attribute. A path representing a list value (i.e., last index of the path is an integer) will be `null` in `data.state`, and a path representing a dictionary key (i.e., last index of the path is a string) will not exist in `data.state`.
271
271
272
-
See the [Model State](modelstate.md) documentation for the serialized state for core Jupyter widgets.
272
+
See the [Model State](jupyterwidgetmodels.latest.md) documentation for the serialized state for core Jupyter widgets.
273
273
274
274
### State synchronization
275
275
@@ -290,7 +290,7 @@ When a widget's state changes in either the kernel or the frontend, the changed
290
290
291
291
The `data.state` and `data.buffer_paths` values are the same as in the `comm_open` case.
292
292
293
-
See the [Model state](modelstate.md) documentation for the attributes of core Jupyter widgets.
293
+
See the [Model state](jupyterwidgetmodels.latest.md) documentation for the attributes of core Jupyter widgets.
0 commit comments