Channels view

Release 1.0 - ...

A new field has been added to the Channel contenttype: UseSmartsite5Rendering, mapped to the first available CTSpecificBitx database field. This field should have the following ctfp's:

XML CopyCode image Copy Code
<?xml version="1.0" encoding="utf-8" ?>
<properties>
  <property name="Caption" type="String" roles="*">
    <![CDATA[Use Smartsite 5 Rendering]]>
  </property>
  <property name="Group" type="String" roles="*">
    <![CDATA[Channel Settings]]>
  </property>
</properties>

Consequently, the Channels view must be updated to include this field, e.g.:

SQL CopyCode image Copy Code
ALTER VIEW [dbo].[Channels] AS
SELECT  c.Nr, r.RenderProgID, CAST(c.Code AS varchar(3)) AS Code, 
        c.Title AS Name, c.Description, c.CTSpecificVar2 AS logonHandlerProgID, 
        ISNULL(c.CTSpecificBit1, 0) AS Secure, c.CTSpecificInt1 AS BrowseStartPage, 
        ISNULL(c.CTSpecificInt3, 0) AS useServerCache, c.CTSpecificVar1 AS DefaultDocument,
        c.CTSpecificVar3 AS IDParameter, c.CTSpecificInt2 AS Locale, c.CTSpecificInt5 AS agsRecordDefinition, 
        ISNULL(c.CTSpecificBit2,0) AS NoURLMunging, ISNULL(c.CTSpecificBit4,0) AS UseSmartsite5Rendering
FROM    vwContent c
        LEFT JOIN RenderDevices r ON c.CTSpecificInt4 = r.Nr 
WHERE   c.Contenttype=6 AND (LEN(c.Code) = 3)

Also, a field named UseFriendlynames must be added.