-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #22
- Loading branch information
Showing
5 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
Providers/DataProviders/SqlDataProvider/05.08.10.SqlDataProvider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
IF OBJECT_ID(N'{databaseOwner}[{objectQualifier}Publish_vwItems]') IS NOT NULL | ||
DROP VIEW {databaseOwner}[{objectQualifier}Publish_vwItems]; | ||
GO | ||
CREATE VIEW {databaseOwner}[{objectQualifier}Publish_vwItems] AS | ||
|
||
SELECT | ||
CAST(CASE i.ApprovedItemVersionID WHEN iv.ItemVersionID THEN 1 ELSE 0 END AS bit) AS IsCurrentVersion, | ||
iv.ItemId, | ||
iv.OriginalItemVersionId, | ||
iv.ItemVersionDate, | ||
iv.StartDate, | ||
iv.EndDate, | ||
iv.LanguageId, | ||
iv.AuthorUserId, | ||
iv.ApprovalStatusId, | ||
iv.ApprovalDate, | ||
iv.ApprovalUserId, | ||
iv.ApprovalComments, | ||
iv.MetaKeywords, | ||
iv.MetaDescription, | ||
iv.MetaTitle, | ||
iv.DisplayTabId, | ||
iv.LastUpdated, | ||
i.PortalID, | ||
i.ItemTypeID, | ||
iv.ItemVersionID, | ||
it.[Name] AS ItemType, | ||
iv.[Name], | ||
iv.[Description], | ||
iv.Disabled, | ||
i.CreatedDate, | ||
i.ApprovedItemVersionID, | ||
'Thumbnail' = CASE WHEN fl.FileName IS NULL THEN iv.Thumbnail ELSE fl.Folder + fl.FileName END, | ||
ModuleId, | ||
i.ItemIdentifier, | ||
iv.ItemVersionIdentifier, | ||
iv.Url, | ||
iv.NewWindow, | ||
iv.RevisingUserId, | ||
i.ViewCount, | ||
i.CommentCount, | ||
ivs.PropertyValue AS 'Author' | ||
FROM | ||
{databaseOwner}[{objectQualifier}Publish_Item] i | ||
JOIN {databaseOwner}[{objectQualifier}Publish_ItemType] it ON (i.ItemTypeID = it.ItemTypeID) | ||
JOIN {databaseOwner}[{objectQualifier}Publish_ItemVersion] iv ON (i.ItemID = iv.ItemID) | ||
LEFT OUTER JOIN {databaseOwner}[{objectQualifier}Publish_ItemVersionSettings] ivs ON (iv.ItemVersionId = ivs.ItemVersionId AND ivs.controlname ='lblAuthorName' AND ivs.PropertyName ='Text') | ||
LEFT OUTER JOIN {databaseOwner}[{objectQualifier}vw_Files] fl ON iv.Thumbnail = 'fileid=' + CONVERT(varchar, fl.FileID); | ||
GO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div class="Normal"> | ||
<h3>Change Log</h3> | ||
<h4>Version 5.8.10</h4> | ||
<ul> | ||
<li>Fix errors from SQL changes in DNN (<a href="https://github.com/EngageSoftware/Engage-Publish/pull/22" target="_blank">#22</a>, <a href="https://github.com/EngageSoftware/Engage-Publish/pull/25" target="_blank">#25</a>)</li> | ||
</ul> | ||
<h4>Version 5.8.9</h4> | ||
<ul> | ||
<li>Fix stale CAPTCHA image in some circumstances</li> | ||
</ul> | ||
<h4>Version 5.8.8</h4> | ||
<ul> | ||
<li>Add audio CAPTCHA to standard CAPTCHA when in full trust</li> | ||
<li>Fix bug if the user does not have their name setup in their profile</li> | ||
<li>Allow pressing <kbd>enter</kbd> key to submit comments and email a friend forms</li> | ||
</ul> | ||
<h4>Version 5.8.7</h4> | ||
<ul> | ||
<li>Add settings to control CAPTCHAs</li> | ||
</ul> | ||
<h4>Version 5.8.6</h4> | ||
<ul> | ||
<li>Update Custom Display query to fix performance issue</li> | ||
</ul> | ||
<h4>Version 5.8.5</h4> | ||
<ul> | ||
<li><strong>Now requires DotNetNuke version 6 or higher</strong></li> | ||
<li>Adds SPAM prevention mechanism to Email a Friend form</li> | ||
</ul> | ||
<p>More details can be found on the <a href="https://github.com/EngageSoftware/Engage-Publish/issues/milestones?state=closed">Engage: Publish Change Log</a></p> | ||
</div> |