8000 GitHub - DnnFree/awesome-dnn: Awesome things related to DNN (DotNetNuke)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

DnnFree/awesome-dnn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome DNN (DotNetNuke) Awesome

A curated list of awesome things related to DNN

New Installation Recommendation

09.13.09 - upgrade to: 10.00.01

v10.0.1 - Known Issue

  • Upgrade issues with localized sites. If your site uses localization we recommend waiting before upgrading to DNN v10.x.x for now. New installations do not appear to have that issue.

v10.0.0

v10.0.0 - Known Issue

  • On new installs only (not on upgrades) and issue has been found where some items would be missing in the web.config file. As a workaround, until the next patch release is published, if you want to start a new website on DNN10, you can install latest v9.x.x release first and then upgrade to 10.0.0 instead.
  • Upgrade issues with localized sites. If your site uses localization we recommend waiting before upgrading to DNN v10.x.x for now. New installations do not appear to have that issue.

v10.0.0 - Breaking Change

  • Removed all obsolete APIs marked as deprecated in v8 and before.
  • Forced Telerik Removal
  • Removed support for WebSlices
  • Enabled Dependency Injection for Prompt commands
  • Enabled dependency injection for connectors
  • Installs CodeDOM provider by default
  • Upgraded all projects from .NET 4.7.2 to .NET 4.8
  • Fixed sql scripts and new rollup scripts (minimum supported SQL Server version is now 2017 (14.x)).
  • Updated Html module to use the new Content Workflow API

v.10.0 - Noteworthy Changes

  • New styles system: DNN now provides a way for site owners (hosts by default and admins optionaly) to choose some branding preferences using the UI. Designers and developers can then consume site branding preferences in their own solutions. As a developer, if you need the portal preferred styles server-side, you can now get them from PortalSettings.GetStyles(). In the client-side of things, css variables (custom properties) as available in the :root scope. All dnn custom properties are prefixed by --dnn
  • New default dependency-free theme Aperture (customizable by above styles)
  • Added support for JWT Audience
  • Sitemap now produces alternate links in multilingual websites
  • Multiple modules can now be part of a single package (manifest)
  • Added support for RoleUpdated event.
  • Added support for API tokens

v9.8.0

Noteworthy Changes in v9.8.0 - Optional Telerik Removal

The major highlight for this release is that we removed all our dependencies on the Telerik library. In oder to not make this a breaking change, we do leave Telerik removal as a manual option until v10. The main component that still relied on Telerik where Site Assets and Global assets which used Digital Assets Manager. We ship with v9.8.0 a new file manager that has no dependencies on Telerik but it is not installed by default to not break existing sites upon upgrades. Please note that it will be automatically replaced in v10, so please test and plan accordingly.

To help you try to identify if you have any other 3rd party extension that depends on Telerik, our very own @mitchelsellers has published the Dnn Telerik Identitier module which you can download and install to to find assemblies that reference Telerik. Carefully review the results from this module to determine if your website is ready for full removal of Telerik. For any third-party modules that depend on Telerik, you should contact the module vendor/developer before following the steps below.

If you would like to remove Telerik in DNN 9.8.0 following are the steps to do so. Again, proceed with caution based on your findings using the DNN Telerik Identifier module above, as performing these steps may also break third-party extensions that depend on Telerik. We recommend you contact the developer/vendor in these cases for further guidance.

  1. Create a full backup of the site and database.
  2. Install the new Resource Manager module via Extensions > Available Extensions (Modules).
  3. Navigate to Manage > Site Assets via the Persona Bar and remove the Digital Assets Management module from the page.
  4. Add an instance of the Resource Manager module to the Site Assets page
  5. Navigate to Manage > Global Assets via the Persona Bar and repeat Steps 3 & 4 for that page.
  6. Navigate to Manage > SQL Console via the Persona Bar and run the following script:
UPDATE {databaseOwner}{objectQualifier}Packages
SET IsSystemPackage = 0
WHERE Name IN ('DigitalAssetsManagement', 'DotNetNuke.Telerik.Web', 'DotNetNuke.Web.Deprecated', 'DotNetNuke.Website.Deprecated')
GO

DELETE FROM {databaseOwner}{objectQualifier}PackageDependencies
WHERE (PackageName = 'DotNetNuke.Web.Deprecated')
GO

UPDATE {databaseOwner}[{objectQualifier}Lists] SET Text = 'DotNetNuke.Web.UI.WebControls.Internal.PropertyEditorControls.DateEditControl, DotNetNuke.Web'
WHERE ListName = 'DataType' AND Value = 'Date'
GO

UPDATE {databaseOwner}[{objectQualifier}Lists] SET Text = 'DotNetNuke.Web.UI.WebControls.Internal.PropertyEditorControls.DateTimeEditControl, DotNetNuke.Web'
WHERE ListName = 'DataType' AND Value = 'DateTime'
GO
  1. Navigate to Settings > Servers in the Persona Bar and click the Clear Cache button in the top-right corner.
  2. Navigate to Settings > Extensions (Modules) in the Persona Bar and uninstall the Digital Assets Management extension. Be sure to check the Delete Files checkbox.
  3. Navigate to Settings > Extensions (Libraries) in the Persona Bar and uninstall the DotNetNuke Telerik Web Components extension. Be sure to check the Delete Files checkbox.
  4. Navigate to Settings > Extensions (Libraries) in the Persona Bar and uninstall the DNN Deprecated Web Controls Library extension. Be sure to check the Delete Files checkbox.
  5. Navigate to Settings > Extensions (Libraries) in the Persona Bar and uninstall the DotNetNuke Deprecated Website Codebehind files extension. Be sure to check the Delete Files checkbox.
  6. Open the web.config file within the site root and search for "Telerik". Delete any lines that reference it.
  7. Test all third-party modules to make sure they still work without Telerik. If any do not work properly, please contact the developer/vendor for further guidance.

05.06.08 - 06.02.08 - 07.04.02 - 08.00.04 - 09.01.01 - 09.03.02 - 09.08.00 - 09.10.02 - 09.13.09 - 10.00.01

notes:

  • make sure all module run smooth on 09.03.02 before upgrade to 9.8.0

Official Resources

Community Site

Tutorial

Development Tools

  • Generator-Upendodnn A yeoman generator that scaffolds DNN extensions, including Modules (Webforms, SPA, and MVC), Persona Bar, Skin Object, Library, Scheduler, and Hotcakes Commerce projects
  • DnnFree React a starter DNN SPA Module with API, create using latest React & Webpack
  • DnnFree Angular a starter DNN SPA Module create using Angular 5 (with Angular-CLI)
  • DNNTemplates DNN Module and Theme Development Template for DNN 7/8/9
  • TopMenu Sample Razor Templates for DDRMenu
  • DNN8Templates Module and Theme Development templates for DNN 8
  • DnnPackager Module Development
  • nvQuickSite is a desktop installation app for DNN
  • nvQuickTheme is a DNN theme framework / development workflow
  • nvQuickComponents is a collection of Web Components for DNN extension development (and beyond)
  • DnnC.DBAnalyzer a tool that will give you a visualization of your Dnn database
  • DnnUserAccess-Mobile Mobile app that pairs with the DNN User Access personabar extension. This app is made in React Native.
  • R7.Dnn.Extensions A library to simplify extensions development for DNN Platform
  • R7.Dnn.Extensions.React Library for DNN Platform web CMS extensions development with ReactJS.NET
  • R7.Dnn.Extensions.EFCore A library for DNN Platform web CMS extensions development with Entity Framework Core
  • R7.Dnn.Templates DNN Platform project templates and helper addin for MonoDevelop / Xamarin Studio
  • R7.Webmaster Webmaster's desktop productivity tools

Open Source Modules

Provider

  • CKEditor An WYSIWYG HTML Editor Provider for DNN® 9.3.2 or above

Skin Object

  • DnnC.CookieConsent - (by: @dnnconsulting)
  • DnnThemeEditor Theme Editor SkinObject - (by: @dnnconsulting)
  • R7.FeedbackButton Feedback skinobject extension - (by: @roman-yagodin)
  • StyleHelper The 40FINGERS Style Helper Skin object allows you to manipulate the CSS, Javascript links and meta tags DNN loads by default. You can remove them, change them and add your own.

Free Skins/Theme

Sample Code/Project

Showcase

...

About

Awesome things related to DNN (DotNetNuke)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0