I hereby claim:
- I am bdukes on github.
- I am bdukes (https://keybase.io/bdukes) on keybase.
- I have a public key ASCVs2dNc1jhIFUKQJc92LncaJOs71DrhS7Q21JfCzYNQgo
To claim this, I am signing this object:
/* eslint-env node*/ | |
'use strict'; | |
const fs = require('fs'); | |
const path = require('path'); | |
const _ = require('lodash'); | |
const ignore = require('ignore'); | |
const gulpFilter = require('gulp-filter'); | |
const filters = new Map(); |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Redirect HTTP to HTTPS" stopProcessing="true"> | |
<match url="(.*)"/> | |
<conditions> | |
<add input="{HTTPS}" pattern="^OFF$"/> | |
</conditions> | |
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent"/> | |
</rule> |
I hereby claim:
To claim this, I am signing this object:
@@ -1040,7 +1040,8 @@ BEGIN | |
DECLARE @TabOrder Int | |
DECLARE @ParentId Int | |
DECLARE @ContentItemId Int | |
- SELECT @TabOrder = TabOrder, @ParentId = ParentID, @ContentItemID = ContentItemID FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId | |
+ DECLARE @PortalId int | |
+ SELECT @TabOrder = TabOrder, @ParentId = ParentID, @ContentItemID = ContentItemID, @PortalId = PortalID FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId | |
-- Delete Tab -- | |
DELETE FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Engage.MsBuild.Logger.Vso | |
{ | |
using System.Globalization; | |
using Microsoft.Build.Framework; | |
using Microsoft.Build.Utilities; |
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %> | |
<dnn:DnnCssExclude runat="server" Name="dnndefault" /> |
@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; |
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 |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
Thumbs.db | |
ehthumbs.db | |
Desktop.ini | |
$RECYCLE.BIN/ |
<%@ Register TagPrefix="engage" TagName="TellAFriend" Src="~/DesktopModules/EngageTellAFriend/ViewTellAFriend.ascx" %> | |
<engage:TellAFriend runat="server" ShowInModal="true" /> |