Skip to content

Commit e735381

Browse files
authored
Merge pull request #2012 from Esri/jy-rvw-expb
change links to relative and remove references to 2.2
2 parents e1f161d + f91d4ea commit e735381

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

guide/13-managing-arcgis-applications/experience-builder-workflows.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"source": [
88
"# Working with Web Experiences in the Python API\n",
99
"\n",
10-
"As of version 2.2.0 of the ArcGIS API for Python, users can now work directly with [Experience Builder](https://www.esri.com/en-us/arcgis/products/arcgis-experience-builder/overview) items, enabling some very helpful content management workflows. In this notebook, we'll give an overview of the class and its properties before diving into some handy usage examples.\n",
10+
"Users can work directly with [Experience Builder](https://www.esri.com/en-us/arcgis/products/arcgis-experience-builder/overview) items, enabling some very helpful content management workflows. In this notebook, we'll give an overview of the class and its properties before diving into some handy usage examples.\n",
1111
"\n",
1212
"## Class Basics\n",
1313
"\n",
14-
"First let's examine a screenshot of the `Web Experience` class help from the API reference:"
14+
"First let's examine a screenshot of the [`WebExperience`](/python/api-reference/arcgis.apps.expbuilder.html#webexperience) class help from the API reference:"
1515
]
1616
},
1717
{
@@ -271,7 +271,7 @@
271271
"source": [
272272
"## Cloning an Experience and Validating its Success\n",
273273
"\n",
274-
"Among other changes, 2.2.0 brought in the ability to clone experiences, meaning you can create experiences in one GIS organization and easily move them to another. As with other items, this can be done by using `gis.content.clone_items()`. We'll show here the helpful extra tools the class has to aid in this workflow."
274+
"You can create experiences in one GIS organization and easily move them to another. As with other items, this can be done by using [`gis.content.clone_items()`](/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.clone_items). We'll show here the helpful extra tools the class has to aid in this workflow."
275275
]
276276
},
277277
{
@@ -355,7 +355,7 @@
355355
"source": [
356356
"target = GIS(profile=\"another_online_profile\")\n",
357357
"cloned_list = target.content.clone_items(\n",
358-
" [portal_exp],\n",
358+
" items = [portal_exp],\n",
359359
" search_existing_items = False,\n",
360360
")\n",
361361
"cloned_exp = cloned_list[1]\n",
@@ -397,7 +397,7 @@
397397
"\n",
398398
"In addition to portal-based experiences, this class allows users to work with locally-based experiences created via the Developer Edition Experience Builder. In the past, users have expressed their desire to add local Experiences to their portals and remap data with ease, in order to cater to workflows such as moving from staging to production environments or migrating content to new Enterprise versions.\n",
399399
"\n",
400-
"We'll show how to get an experience from the Developer Edition Experience Builder, upload it to different portals, and make sure the dependent data items get remapped accordingly. Instructions downloading and installing the Developer Edition can be found [here](https://developers.arcgis.com/experience-builder/guide/install-guide/).\n",
400+
"We'll show how to get an experience from the Developer Edition Experience Builder, upload it to different portals, and make sure the dependent data items get remapped accordingly. Instructions downloading and installing the Developer Edition can be found [here](/experience-builder/guide/install-guide/).\n",
401401
"\n",
402402
"It's easy as just downloading your experience from the Developer Edition interface, and then knowing the path to your the download folder. Within the inner folders, there will be a file named `config.json`- this file contains the structure of your experience, expressed in the exact same way that online experiences are. You can pass in the path to this file to the `upload()` function, or the path to the main project folder in version 2.4.0 or higher."
403403
]
@@ -638,7 +638,7 @@
638638
"name": "python",
639639
"nbconvert_exporter": "python",
640640
"pygments_lexer": "ipython3",
641-
"version": "3.10.14"
641+
"version": "3.11.0"
642642
}
643643
},
644644
"nbformat": 4,

0 commit comments

Comments
 (0)