Newsroom Planner
6.0.0
6.0.0
  • What is Newsroom Planner?
  • User guide
    • Overview
    • Top menu
      • Template
    • Calendar view
      • Filtering
      • Cards in calendar columns
    • Search
    • Events
      • Create an event
      • Edit event
    • Planning
      • Create a planning
      • Edit a plan
    • Assignment
      • Create assignment
        • Text assignment
        • Photo assignment
          • Manage linked photos
        • Other types of assignments
      • Edit assignment
        • Article size
      • E-mail notification
    • Hotkeys
    • Action widget
    • Copying
  • My assignment
  • The list of my assignments
  • Text assignment
    • Edit article on assignment
    • Create new article on the assignment
    • Link an article to the assignment
    • Change article size
    • Make a copy of an article
    • Use linked photos in the article
    • Create article when there is no assignment created
  • Photo assignment
    • Upload photos
    • Link photos
    • Unlink photos
    • Manage linked photos
  • Set the assignment as done
  • Create new assignment
  • Opening plan/assignment
  • Copy a plan
  • Admin guide
    • Settings
      • Customization
        • Cards
        • Columns
        • Single view (My assignment)
        • Advanced concept settings
        • Loadable components
          • Event
          • Planning
          • Assignment
            • Type of assignment
          • Full package
          • Tags
      • Configuration
        • Types
        • Sortings
        • Filters
        • Property mappings
        • Properties to fetch
        • Queries & Suggestions
        • Providers
        • Map options
        • Writer
        • Email service
        • Debug
      • Templates
    • My assignment Workspace setting
    • Changelog
    • Requirements
    • E-mail notification
    • Integrate with Newsroom Planner
    • Develop with NRP
    • Migration
      • 5.x ➡ 6.x
      • 5.0.x ➡ 5.1.x
      • 4.x ➡ 5.x
        • Cleanup
      • 3.x ➡ 4.x
        • Templates
      • 2.x ➡ 3.x
      • 1.x ➡ 2.x
    • Concept relations
  • Developer guide
    • Link to plugin-development documentation
Powered by GitBook
On this page
  • Property mappings
  • Event
  • PlanningItem
  • Assignment
  • Properties to fetch
  • Event
  • PlanningItem
  • Assignment

Was this helpful?

  1. Admin guide
  2. Migration
  3. 4.x ➡ 5.x

Cleanup

This cleanup is only meant for the migration guide from 4.x to 5.x

If you are installing 5.x for the first time OR you upgraded to 5.x but you reseted the config to default, then you can skip the cleanup steps

If you have any custom config other than the listed ones below, DON'T REMOVE THEM

Make sure to only remove the listed configs below

Property mappings

You need to clean up and remove the "Property mappings" config for the following types:

  • Event

  • PlanningItem

  • Assignment

Only keep your custom mappings config "If you have any"

Event

"xml": "EventXML",
"uuid": "uuid",
"mimetype": "mimetype",
"name": "EventName",
"sector": "EventSector",
"startDate": "EventStartDate",
"endDate": "EventEndDate",
"etag": "checksum",
"planningItem": {
        "property": "EventPlanningItemRelations"
}

PlanningItem

"uuid": "uuid",
"etag": "checksum",
"xml": "PlanningXML",
"mimetype": "mimetype",
"headline": "PlanningHeadline",
"urgency": "PlanningUrgency",
"statusHRM": "PlanningStatusHRM",
"sector": "PlanningSector",
"startDate": "PlanningStartDate",
"endDate": "PlanningEndDate",
"event": {
        "property": "PlanningEventRelation"
},
"assignments": {
        "property": "PlanningAssignmentsRelation"
}

Assignment

"etag": "checksum",
"uuid": "uuid",
"contentType": "contenttype",
"xml": "AssignmentXML",
"mimetype": "mimetype",
"headline": "AssignmentHeadline",
"type": "AssignmentType",
"statusHRM": "AssignmentStatusHRM",
"assigneeName": "AssignmentAssigneesName",
"endDate": "AssignmentEndDate",
"startDate": "AssignmentStartDate",
"articlesUuid": "AssignmentArticlesUuid",
"assignees": {
        "property": "AssignmentAssigneesRelation"
},
"articles": {
        "property": "AssignmentArticlesRelation"
},
"planningItem": {
        "property": "AssignmentPlanningItemRelation"
}

Properties to fetch

You need to clean up and remove the "Properties to fetch" config for the following types:

  • Event

  • PlanningItem

  • Assignment

And only keep your custom mappings config "If you have any"

Event

"xml",
"planningItem.xml"

PlanningItem

"xml",
"event.xml",
"assignments.xml"

Assignment

"xml",
"assignees.xml",
"planningItem.xml"
Previous4.x ➡ 5.xNext3.x ➡ 4.x

Last updated 4 years ago

Was this helpful?