Skip to content

Commit

Permalink
fixup! [Docs] Add hybrid plugin system notebook
Browse files Browse the repository at this point in the history
Use URL for `LocatableContentTrait.location`, not POSIX path, whoops.

Signed-off-by: David Feltell <[email protected]>
  • Loading branch information
feltech committed Sep 25, 2024
1 parent ffede96 commit 669f143
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions examples/hybrid_plugin_system.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:16.927468Z",
"start_time": "2024-09-20T07:28:16.901376Z"
"end_time": "2024-09-25T10:51:56.201797Z",
"start_time": "2024-09-25T10:51:56.171156Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -144,8 +144,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:16.966383Z",
"start_time": "2024-09-20T07:28:16.959210Z"
"end_time": "2024-09-25T10:51:56.209189Z",
"start_time": "2024-09-25T10:51:56.206563Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -175,8 +175,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.097817Z",
"start_time": "2024-09-20T07:28:17.084463Z"
"end_time": "2024-09-25T10:51:56.339454Z",
"start_time": "2024-09-25T10:51:56.323959Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -231,8 +231,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.149217Z",
"start_time": "2024-09-20T07:28:17.144232Z"
"end_time": "2024-09-25T10:51:56.379374Z",
"start_time": "2024-09-25T10:51:56.375898Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -272,8 +272,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.201569Z",
"start_time": "2024-09-20T07:28:17.198604Z"
"end_time": "2024-09-25T10:51:56.431456Z",
"start_time": "2024-09-25T10:51:56.428572Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -309,8 +309,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.268483Z",
"start_time": "2024-09-20T07:28:17.265302Z"
"end_time": "2024-09-25T10:51:56.490738Z",
"start_time": "2024-09-25T10:51:56.487400Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -353,8 +353,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.337338Z",
"start_time": "2024-09-20T07:28:17.328692Z"
"end_time": "2024-09-25T10:51:56.544062Z",
"start_time": "2024-09-25T10:51:56.540234Z"
}
},
"cell_type": "code",
Expand Down Expand Up @@ -390,8 +390,8 @@
{
"metadata": {
"ExecuteTime": {
"end_time": "2024-09-20T07:28:17.393969Z",
"start_time": "2024-09-20T07:28:17.390013Z"
"end_time": "2024-09-25T10:51:56.596321Z",
"start_time": "2024-09-25T10:51:56.592109Z"
}
},
"cell_type": "code",
Expand All @@ -410,7 +410,7 @@
"outputs": [
{
"data": {
"text/markdown": "> **Result:**\n> `/some/path.exr`"
"text/markdown": "> **Result:**\n> `file:///some/path.exr`"
},
"metadata": {},
"output_type": "display_data"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ constexpr std::string_view kPluginId = "org.openassetio.examples.simplehybridman
// The one and only entity reference we support. These two lines
// represent our backend database.
constexpr std::string_view kTheEntityReference = "examplehybrid://example_entity";
constexpr std::string_view kTheEntityPath = "/some/path.exr";
constexpr std::string_view kTheEntityPath = "file:///some/path.exr";
} // namespace

/**
Expand Down

0 comments on commit 669f143

Please sign in to comment.