Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

https://crossmedia.atlassian.net/wiki/spaces/WD/pages/2098430016/Homepage#Search-bar-area.1

Wediaportal_rc

Note

For existing projects which will not use the new user interface for portal configurations, you should add "useServerConfigResolution": false, on all the used configs of your wediaportal_rc file.

Starter-kit default config updates

...

Advanced search default config :

Previous previous value :

Code Block
{
  filters: [
    "nameProp",
    "descriptionProp",
    "created",
    "keywordsProp",
    "coverageProp",
    "folderPropNoLayout",
    "organizationProp",
    "photographProp",
    "languageProp",
    "authorizedchannelProp",
    "shootingdate"
  ]
}

New new value :

Code Block
{
  "filters": [
    {
      "operators": [
        "contains",
        "in",
        "notcontains",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "authorizedchannel"
    },
    {
      "operators": [
        "contains",
        "in",
        "notcontains",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "coverage"
    },
    {
      "field": "created"
    },
    {
      "field": "shootingdate"
    },
    {
      "operators": [
        "in",
        "dof",
        "ndof",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "folder"
    },
    {
      "operators": [
        "contains",
        "in",
        "notcontains",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "langs"
    },
    {
      "field": "description"
    },
    {
      "operators": [
        "contains",
        "in",
        "notcontains",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "keywords"
    },
    {
      "field": "name"
    },
    {
      "operators": [
        "in",
        "dof",
        "ndof",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "organization"
    },
    {
      "operators": [
        "contains",
        "in",
        "notcontains",
        "notin",
        "notempty",
        "empty"
      ],
      "field": "photograph"
    }
  ]
}

...