Versions Compared

Key

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

Expand
titleTable of contents
Table of Contents
minLevel1
maxLevel6
include
outlinefalse
indent
styledefault
exclude
typelist
class
printabletrue
Note

For those coming from versions 2024.1 or 2024.2:

If you haven’t already followed the instructions from https://crossmedia.atlassian.net/wiki/x/FAABuQ, a revert of portal’s variations default configuration is coming with version 2024.3

Security improvements

WXM-16519

...

  • Rules:

    • WEDIA Packaged - WXM rules

      • Old Expression:

      Code Block
      NOT(@pkgWxmSurferHasAppropriateContriblangs())
         OR
         NOT(@pkgWxmSurferHasAppropriateMediagroup())
         OR
         @pkgWxmObjectIsVirtual()
      • New Expression:

      Code Block
      NOT(@pkgIsSurferDeveloper()) AND (
       NOT(@pkgWxmSurferHasAppropriateContriblangs())
       OR
       NOT(@pkgWxmSurferHasAppropriateMediagroup())
       OR
       @pkgWxmObjectIsVirtual()
      )

delete
  • Rules:

    • WEDIA Packaged - WXM rules

      • Old Expression:

      Code Block
      NOT(@pkgWxmSurferHasAppropriateContriblangs())
         OR
         NOT(@pkgWxmSurferHasAppropriateMediagroup())
         OR
         @pkgWxmObjectIsVirtual()
      • New Expression:

      Code Block
      NOT(@pkgIsSurferDeveloper()) AND (
       NOT(@pkgWxmSurferHasAppropriateContriblangs())
       OR
       NOT(@pkgWxmSurferHasAppropriateMediagroup())
       OR
       @pkgWxmObjectIsVirtual()
      )

order
  • Rules:

    • WEDIA Packaged - WXM rules

      • Old Expression:

      Code Block
      NOT(@pkgWxmSurferHasAppropriateContriblangs())
         OR
         NOT(@pkgWxmSurferHasAppropriateMediagroup())
      • New Expression:

      Code Block
      NOT(@pkgIsSurferDeveloper()) AND (
       NOT(@pkgWxmSurferHasAppropriateContriblangs())
       OR
       NOT(@pkgWxmSurferHasAppropriateMediagroup())
       OR
       @pkgWxmObjectIsVirtual()
      )

update
  • Rules:

    • WEDIA Packaged - WXM rules

      • Old Expression:

      Code Block
      NOT(@pkgWxmSurferHasAppropriateContriblangs())
         OR
         NOT(@pkgWxmSurferHasAppropriateMediagroup())
         OR
         @pkgWxmObjectIsVirtual()
      • New Expression:

      Code Block
      NOT(@pkgIsSurferDeveloper()) AND (
       NOT(@pkgWxmSurferHasAppropriateContriblangs())
       OR
       NOT(@pkgWxmSurferHasAppropriateMediagroup())
       OR
       @pkgWxmObjectIsVirtual()
      )

view
  • Rules:

    • WEDIA Packaged - WXM rules

      • Old Expression:

      Code Block
      NOT(@pkgWxmSurferHasAppropriateContriblangs())
         OR
         NOT(@pkgWxmSurferHasAppropriateMediagroup())
         OR
         @pkgWxmObjectIsVirtual()
      • New Expression:

      Code Block
      NOT(@pkgIsSurferDeveloper()) AND (
       NOT(@pkgWxmSurferHasAppropriateContriblangs())
       OR
       NOT(@pkgWxmSurferHasAppropriateMediagroup())
       OR
       @pkgWxmObjectIsVirtual()
      )

Rewriting changes

Inbound changes

...