Versions Compared

Key

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

...

Info
  • All changes that have been made to a particular version of XperienCentral are always included in the releases listed above it. There are times when a lower-numbered release appears above one with a higher release version number, for example XperienCentral version R29.3 is listed above R30. What this means is that version R30 contains all the changes made in R29.2 (and lower) but it does not contain changes made in version R29.3. The reason for this is that a "patch release" for a previously released version is sometimes created in order to pick up important bug fixes and/or security improvements.
  • See also Upgrade Notes per Version for further actions you may be required to take after upgrading to each version of XperienCentral.


Excerpt


HTML
<!-- VOORBEELD EXPAND EN COLLAPSE BUTTONS -->

<style type="text/css">
  
  .buttons_expand-collapse_all{
    font-size: 12px;
 	color: white;
    border-width: 1px;
    border-radius: 0.5em;
    border-style: solid;
    border-color: #000000;
    background-color: #00a6ff;
	padding: 5px 12px;
  }

  .buttons_expand-collapse_all:hover {
    font-size: 12px;
    color: white;
    border-width: 1px;
    border-radius: 0.5em;
    border-style: solid;
    border-color: #000000;
    background-color: #0092e0;
	padding: 5px 12px;
  }
</style>
<div class="div_expand-collapse_all">
  <br />
  <button
    class="buttons_expand-collapse_all"
    name="expandAll"
    id="expandAll"
    type="button"
  >
    Expand All
  </button>
  <button
    class="buttons_expand-collapse_all"
    name="collapseAll"
    id="collapseAll"
    type="button"
  >
    Collapse All
  </button>
</div>

<script type="text/javascript">
  AJS.toInit(function () {
    AJS.$("#expandAll").click(function () {
      AJS.$(".expand-container").each(function () {
        if (
          AJS.$(".expand-content", this)
            .css("display", "none")
            .css("opacity", "0")
        ) {
	 	  AJS.$(".expand-icon", this).removeClass("aui-iconfont-chevron-right");
          AJS.$(".expand-icon", this).addClass("aui-iconfont-chevron-down");
          AJS.$(".expand-content", this).removeClass("expand-hidden");
          AJS.$(".expand-content", this).css("display", "block");
          AJS.$(".expand-content", this).css("opacity", "1");
        }
      });
    });
  });
</script>

<script type="text/javascript">
  AJS.toInit(function () {
    AJS.$("#collapseAll").click(function () {
      AJS.$(".expand-container").each(function () {
        if (
          AJS.$(".expand-content", this)
            .css("display", "block")
            .css("opacity", "1")
        ) {
	      AJS.$(".expand-icon", this).removeClass("aui-iconfont-chevron-down");
          AJS.$(".expand-icon", this).addClass("aui-iconfont-chevron-right");
          AJS.$(".expand-content", this).addClass("expand-hidden");
          AJS.$(".expand-content", this).css("display", "none");
          AJS.$(".expand-content", this).css("opacity", "0");
        }
      });
    });
  });
</script>



HTML
<br />


Expand
titleXperienCentral R38

XperienCentral R38

Release date: October 28, 2022

The following issues have been resolved in this version of XperienCentral.

Bug

[XC-7] - Fix browser spell check to content in the Editor
[XC-10] - Anchor URLs shown with two hosts in articles
[GXWM-38915] - Remove already owned lock when out of sync
[GXWM-38953] - Form Export fails with E-mail handler with attachment
[GXWM-39027] - Downloads are incorrectly indexed as pages
[GXWM-37949] - HTTP form based authentication session should expire when the session has expired in the container

New Feature

[GXWM-35751] - Replace default language label structure by Language Label Management Panel reusable

Improvement

[GXWM-37018] - Display the dumped 503 .html file rather than the XC starting message on frontend url's
[GXWM-38897] - Support '/' as url extension
[GXWM-38909] - Add versioning to the static js files of IAF
[GXWM-38962] - Configurable passOn parameters for IAF elements

Story

[XC-1] - HTML Title and Meta Description character amount check
[XC-2] - Add support for canonical alternative URLs
[XC-3] - Stop using link codes in image and media collection elements
[XC-5] - Add support for bulk remove in the Links properties tab
[XC-11] - Add support for the bulk deletion of articles, images and downloads
[XC-12] - Add lead text and lead image to Downloads and lead text to Images
[XC-13] - Reorganize and expand the SEO properties tab

Documentation

[GXWM-39031] - Document the new SEO features


HTML
<br /><br /><br /><br /><br />


...