Public Backlog

WebinOne announcements, releases, updates and achievements

v 4.3 Release date: 29 May, 2019

Full Release Notes

Backlog

Site speed increase

Performed CMS code optimization that slightly increase working speed of site pages (up to 15%).

Backlog

Liquid Context Rendering

New liquid object of {{LiquidContext}} to output all the available liquid for the current layout.

eg:

{% assign myCustomVar = "some value" %}

{{liquidContext}}

OUTPUT:

{

"this" :

{

"Name": "value",

"Description": "value"

...

},

"request" :

{

"request_url": {...},

"currentmember": {...}

...

},

"myCustomVar" : "some value"

}

Backlog

URL Redirects Import/Export

Ability to Import/Export URL redirects using an .xlsx file.

Backlog

Global Variables (Site Information) Builder

The ability to have a "Site Setting" App, where it is possible to add settings for the client that one could then feed and use throughout the entire site. It could be things like logo, phone, email, address etc.

With the ability to have the option of setting the liquid names/aliases so the tags are customisable. So instead of having for example something like {{siteInformation.companyContacts.webAddress}} one could specify an alias like {{si.cc.web}}

http://prntscr.com/nuymj4

Backlog

Toolbox -> Global variables (Site Information)

Add ability to get Site Information tags via the toolbox.

Toolbox options:

  • Group dropdown
  • Property dropdown (shows only when group is selected)
    Two liquid tags then shown for selected property for full alias and short alias.

Backlog

Secure Zone Subscriptions + Expiry dates

Added 2 system fields to the form builder relating to Secure Zones:

  • Secure Zone Expiry date
  • Secure Zone Expiry duration

Creating the input fields:

<input type="date" name="SZ_ExpiryDate">

<input type="number" name="SZ_ExpireAfterDays">:

User is not able to save the form with two chosen options.

If both options are present in the form the Expiry Date field will have priority.

Backlog

Secure Zone Expiration Settings

Create a new option on the Secure Zone Page:

  • Expiration option
    • Not specified (could be set from the form);
      this option is selected by default.
      If selected - allow applying date chosen on the form.
      If no value sent with the form - apply 31-Dec-9999.
  • Custom date;
    • if selected shows additional field type date.
      Apply to the form submission regardless of the Secure Zone Expiration field selected on the form.
  • Number of Days.
    • if selected shows additional number field.
      Apply to the form submission regardless of the Secure Zone Expiration field selected on the form.

Backlog

Add .kml, .kmz extension to allowed extension list

Add allowed file extensions:

  • .kml (application/vnd.google-earth.kml+xml)
  • .kmz (application/vnd.google-earth.kmz)

Backlog

Categorized rendering of events in the calendar.

Now using the component toolbox you can generate the calendar include widget that will render calendar of events by category.

Backlog

Import/Export of the detail layout

Now you can specify detail layout id in import and export file for module items.

Backlog

Data Center displaying in the portal.

Fixed the displaying of the data center in the partner portal. Partner should be able to see the actual information of which data center the website is located.

Backlog

Module lists in Admin to list by release date

Item lists in admin where release date is relevant now can be sorted by the release date column header.

Beta

Advanced search feature

Advanced search added to beta.

This feature uses new module index that allows retrieving searched module items in module search faster.

Current feature impacts:

  • Module Search load speed will be highly increased.
  • Filter by Event fields (such as start date end date price etc) will be highly increased.
  • Filter by url will be highly increased.
  • Added/edited module items via admin, frontent form or import functionality will be added to the index instantly (note – item may not be added to the index if reindex function is in process).
  • Events on the calendar will be loaded faster.

ATTENTION: all features under beta will be released one or two sprints after their released sprint. Some of them may change the logic already implemented (by way of improvement). So check if these features impact your site before the full feature release.

Beta

(HOTFIX) Calendar toolbox builder - default options logic change (when BETA Advanced Search enabled)

If Advanced Search BETA feature is enabled:

Toolbox -> Event -> Calendar generation will be changed:

  • Option “All“ will generate value = "0"
  • Option “Ungrouped“ will generate value = "-1"

Old logic (if flag is off) :

  • Option “All“ will generate value = "-1"
  • Option “Ungrouped“ will generate value = "[[systemRootItemID]]"

System will support both legacy version of the calendar and new version of the calendar.

Beta

Remove “Disable from site search” influence on MODULE specific search

Beta setting: Improved module search

Removes the effect of "Disable from site search" property for module specific searches.

Site search will not be affected by enabling this feature.

"Disable from site search" property should only be used for Site Search.

Bug

Time with calendar - on IOS

On iPhone if site has timezone set to “–GMT” - events were displayed one day back on certain time set on users device.

http://prntscr.com/nuvu5w

http://prntscr.com/nuvuhx

Bug

Form - Options in reverse order

Form fields that have options (ie: checkboxes, radios, dropdowns...) would have those options listed in reverse order in the generated layout

http://prntscr.com/nu9kbr

Bug

Admin - List View Pagination

When updating a custom module item on page 20 for example it jumps back to page 1. Which is frustrating if wanting to update multiple items on page 20.

Bug

Suspend Site text truncated

Descriptive text for Site Suspension options is truncated.

http://prntscr.com/nmv3vr

Bug

Bug with liquid

Module component tags configured with pagination would show total items count as the value in the ‘limit’ parameter.

Should shown total items count.

As a result generated pagination shows incorrect page numbers.

Bug

Event item showing on calendar before release date

Event item with release date in the future incorrectly shown on the calendar when it should not show at all until release date reached.

http://prntscr.com/nuw0ca

Show more less
Improvement

URL Redirects Import

Ability to import URL redirects using a .csv file.
Including PDF’s, media items, images, urls ending with a forward slash “/” and unusual urls that include special characters like &, =, $ or .aspx, .php etc. Ability to create wildcard redirects
  • General
  • SEO
New Feature

Global Variables Builder

The ability to have a "Site Setting" App, where it is possible to add settings for the client that one could then feed and use throughout the entire site. It could be things like logo, phone, email, address etc.

With the ability to have the option of setting the liquid names/aliases so the tags are customisable. So instead of...
  • Admin Panel
Improvement

BONUS: Form Fields Sorting

Sorting of form fields when making a form is reversed in the final layout.

form-sorting-reversed.jpg
  • Forms
Improvement

Liquid Context Rendering

The ability to output all available liquid on the current page.
The BC equivalent would be {{this|json}}

...
  • Liquid