Skip to content

Commit

Permalink
Renamed old Toolkit references to Tool and applied formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjanvHugten committed Jan 15, 2025
1 parent 4cec440 commit 85af019
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Migration.Tool.CLI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ controls. We recommend that you check your content type fields after the migrati
The following table describes how the Kentico Migration Tool maps the data types and form controls/components of page
type fields:

| KX13/12/11 Data type | XbyK Data type | KX13/12/11 Form control | XbyK Form component |
| KX13/12/11 Data type | XbyK Data type | KX13/12/11 Form control | XbyK Form component |
| ------------------------ | ------------------------ | ----------------------- | --------------------------------------------------------------------------------------- |
| Text | Text | Text box | Text input |
| Text | Text | Drop-down list | Dropdown selector |
Expand All @@ -118,7 +118,7 @@ type fields:
| Date and time | Date and time | _any_ | Datetime input |
| Date | Date | _any_ | Date input |
| Time interval | Time interval | _any_ | None (not supported) |
| Boolean (Yes/No) | Boolean (Yes/No) | _any_ | Check box |
| Boolean (Yes/No) | Boolean (Yes/No) | _any_ | Check box |
| Attachments | Media files | _any_ (Attachments) | Media file selector<br />(the [attachments](#attachments) are converted to media files) |
| File | Media files | _any_ (Direct uploader) | Media file selector<br />(the [attachments](#attachments) are converted to media files) |
| Unique identifier (Guid) | Unique identifier (Guid) | _any_ | None (not supported) |
Expand Down Expand Up @@ -413,7 +413,7 @@ Add the options under the `Settings` section in the configuration file.
| KxConnectionString | The connection string to the source Kentico Xperience 13, Kentico 12, or Kentico 11 database. |
| KxCmsDirPath | The absolute file system path of the **CMS** folder in the source Kentico Xperience 13, Kentico 12, or Kentico 11 administration project. Required to migrate media library files. |
| XbyKDirPath | The absolute file system path of the root of the target Xperience by Kentico project. Required to migrate media library and page attachment files. |
| XbyKApiSettings | Configuration options set for the API when creating migrated objects in the target application.<br /><br />The `ConnectionStrings.CMSConnectionString`option is required - set the connection string to the target Xperience by Kentico database (the same value as obsolete `XbKConnectionString`). |
| XbyKApiSettings | Configuration options set for the API when creating migrated objects in the target application.<br /><br />The `ConnectionStrings.CMSConnectionString`option is required - set the connection string to the target Xperience by Kentico database (the same value as obsolete `XbKConnectionString`). |
| MigrationProtocolPath | The absolute file system path of the location where the [migration protocol file](./MIGRATION_PROTOCOL_REFERENCE.md) is generated.<br /><br />For example: `"C:\\Logs\\Migration.Tool.Protocol.log"` |
| MigrateOnlyMediaFileInfo | If set to `true`, only the database representations of media files are migrated, without the files in the media folder in the project's file system. For example, enable this option if your media library files are mapped to a shared directory or Cloud storage.<br /><br />If `false`, media files are migrated based on the `KxCmsDirPath` location. |
| MigrateMediaToMediaLibrary | Determines whether media library files and attachments from the source instance are migrated to the target instance as media libraries or as [content item assets](https://docs.kentico.com/x/barWCQ) in the content hub. The default value is `false` – media files and attachments are migrated as content item assets. <br /><br /> See [Convert attachments and media library files to media libraries instad of content item assets](#convert-attachments-and-media-library-files-to-media-libraries-instead-of-content-item-assets) |
Expand Down Expand Up @@ -453,7 +453,7 @@ Add the options under the `Settings` section in the configuration file.
"CMSConnectionString": "Data Source=myserver;Initial Catalog=XperienceByKentico;Integrated Security=True;Persist Security Info=False;Connect Timeout=120;Encrypt=False;Current Language=English;"
}
},
"MigrationProtocolPath": "C:\\_Development\\xperience-migration-toolkit-master\\Migration.Toolkit.Protocol.log",
"MigrationProtocolPath": "C:\\_Development\\xperience-migration-toolkit-master\\Migration.Tool.Protocol.log",
"MemberIncludeUserSystemFields": "FirstName|MiddleName|LastName|FullName|UserPrivilegeLevel|UserIsExternal|LastLogon|UserLastModified|UserGender|UserDateOfBirth",
"MigrateOnlyMediaFileInfo": false,
"MigrateMediaToMediaLibrary": false,
Expand Down Expand Up @@ -776,4 +776,4 @@ This includes images and file download links that use **/getattachment** and **/

If you wish to continue using these legacy attachment URLs from earlier product versions, you need to add a custom
handler to your Xperience by Kentico project.
See [`Migration.Toolkit.KXP.Extensions/README.MD`](/Migration.Toolkit.KXP.Extensions/README.MD) for instructions.
See [`Migration.Tool.KXP.Extensions/README.MD`](/Migration.Tool.KXP.Extensions/README.MD) for instructions.
2 changes: 1 addition & 1 deletion Migration.Tool.KXP.Extensions/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ to [add a custom handler](#add-the-handler-to-your-project) to your Xperience by

## Prerequisite

To ensure that the handler provided in the `LegacyAttachmentHandler.cs` file works correctly, you need to [migrate](/Migration.Toolkit.CLI/README.md) your page attachments into a **media library** using the `MigrateMediaToMediaLibrary` configuration option, and **keep the default folder structure and file names**. By default, attachments are migrated into the content hub and the handler is not applicable.
To ensure that the handler provided in the `LegacyAttachmentHandler.cs` file works correctly, you need to [migrate](/Migration.Tool.CLI/README.md) your page attachments into a **media library** using the `MigrateMediaToMediaLibrary` configuration option, and **keep the default folder structure and file names**. By default, attachments are migrated into the content hub and the handler is not applicable.

### Attachment URLs in content

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Our documentation includes guides covering [the migration process from Kentico X
View all [project releases](https://github.com/Kentico/xperience-by-kentico-kentico-migration-tool/releases/).

| Xperience Version | Library Version |
|-------------------|-----------------|
| ----------------- | --------------- |
| 30.0.0 | 2.0.0 |
| 29.7.0 | 1.6.0 |
| 29.6.0 | 1.4.0 |
Expand Down Expand Up @@ -47,7 +47,7 @@ Follow the steps below to run the Kentico Migration Tool:
5. Open the the repository folder [in a terminal](https://github.com/microsoft/terminal).
6. Navigate to the output directory of the `Migration.Tool.CLI` project.

- `.\Migration.Toolkit.CLI\bin\Debug\net8.0`
- `.\Migration.Tool.CLI\bin\Debug\net8.0`

7. Run the `Migration.Tool.CLI.exe migrate` command.

Expand Down

0 comments on commit 85af019

Please sign in to comment.