This file contains hidden or 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
/* | |
* Deprecated DNN CSS class names will remain available for some time | |
* before being permanently removed. Removal will occur according to | |
* the following process: | |
* | |
* 1. Removal will only occur with a major (x.y) release, never | |
* with a maintenance (x.y.z) release. | |
* 2. Removal will not occur less than six months after the release | |
* when it was deprecated. | |
* 3. Removal will not occur until after deprecation has been noted |
This file contains hidden or 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
<%@ Control Language="C#" AutoEventWireup="true" Inherits="DotNetNuke.UI.Skins.Skin" %> | |
<%@ Register TagPrefix="dnn" TagName="Meta" Src="~/Admin/Skins/Meta.ascx" %> | |
<script runat="server"> | |
private void Page_PreRender(object sender, EventArgs e) { | |
var metaRobots = Page.FindControl("MetaRobots") as HtmlMeta; | |
if (metaRobots != null) { | |
metaRobots.Visible = false; | |
} | |
} |
This file contains hidden or 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
var editor = $find($('.RadEditor').first().attr('id')); | |
editor.attachEventHandler('onkeyup', function (event) { | |
console.log(editor.get_html()); | |
}); |
This file contains hidden or 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
Transforming Audio | |
20121111-Ranvestel-TwoShallBecomeOne_3.MP3 | |
[oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo] | |
Input File : 'C:\Users\bdukes\Dropbox\Music\Podcasts\20121111-Ranvestel-TwoShallBecomeOne_3.MP3' | |
Channels : 2 | |
Sample Rate : 48000 | |
Precision : 16-bit | |
Duration : 00:56:26.16 = 162535680 samples ~ 253962 CDDA sectors | |
File Size : 24.1M |
This file contains hidden or 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
DELETE UserProfile WHERE UserID IN (SELECT UserID FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0) | |
DELETE aspnet_Membership WHERE UserId IN (SELECT UserId FROM aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0)) | |
DELETE aspnet_Profile WHERE UserId IN (SELECT UserId FROM aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0)) | |
DELETE aspnet_Users WHERE UserName IN (SELECT UserName FROM Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0) DELETE Users WHERE UserID NOT IN (SELECT UserID FROM UserPortals) AND IsSuperUser = 0 |
This file contains hidden or 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
<%@ Register TagPrefix="engage" TagName="TellAFriend" Src="~/DesktopModules/EngageTellAFriend/ViewTellAFriend.ascx" %> | |
<engage:TellAFriend runat="server" ShowInModal="true" /> |
This file contains hidden or 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
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Thumbs.db | |
ehthumbs.db | |
Desktop.ini | |
$RECYCLE.BIN/ |
This file contains hidden or 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
try { | |
Install-WindowsUpdate -acceptEula -criteria "IsAssigned=1 and IsHidden=0 and IsInstalled=0" | |
Enable-MicrosoftUpdate | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions | |
Update-ExecutionPolicy | |
cinst MicrosoftSecurityEssentials | |
cinst firefox | |
cinst adblockplusfirefox | |
cinst googlechrome |
This file contains hidden or 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
@using DotNetNuke.Web.DDRMenu; | |
@using System.Dynamic; | |
@inherits DotNetNuke.Web.Razor.DotNetNukeWebPage<dynamic> | |
@helper RenderNodes(IEnumerable<MenuNode> nodes, int level) | |
{ | |
if (nodes.Any()) | |
{ | |
var dropdown = level == 0 ? "nav navbar-nav" : "dropdown-menu"; | |
var topLevelId = level == 0 ? Model.ControlID : null; |
This file contains hidden or 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
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %> | |
<dnn:DnnCssExclude runat="server" Name="dnndefault" /> |