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
F - Browse Name | |
: - Edit in Canvas | |
C - Create | |
5 - Send to translation | |
4 - Translate | |
Z - Audit Trail | |
D - Delete | |
M - Move | |
O - Copy | |
S - Sort |
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
/* | |
Umbraco Media Image Gallery Block by mindrevolution | |
*/ | |
SirTrevor.Blocks.UmbracoGallery = (function () { | |
// - umbraco ng references | |
var ngi = angular.element("body").injector(); | |
var uMediaHelper = ngi.get("mediaHelper"); | |
var uDialogService = ngi.get("dialogService"); |
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
<rules> | |
<rule name="SimpleCanonicalHostNameRule"> | |
<match url="(.*)" /> | |
<conditions> | |
<add input="{HTTP_HOST}" pattern="^www\.example\.com$" negate="true" /> | |
</conditions> | |
<action type="Redirect" url="http://www.example.com/{R:1}" redirectType="Permanent" /> | |
</rule> |
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
<!-- | |
www.mindrevolution.com | |
ENGINEERED IN STUTTGART. | |
While modern systems (on server and client side) work quite well with non-latin (UTF-8) URLs, | |
they still present some technical risk. Transliteration of cyrillic URLs to their latin | |
representation can be accomplished quite easily with the standard Umbraco URL replacing | |
in "umbracoSettings.config" (in directory "/config/"). | |
It is not possible to account for some of the finer details, but using a simple replacement |
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
ls -Force | Add-Member -Force -Passthru -Type ScriptProperty -Name Length -Value {ls $this -Recurse -Force | Measure -Sum Length | Select -Expand Sum } | Sort-Object Length -Descending | Format-Table @{label="TotalSize (MB)";expression={[Math]::Truncate($_.Length / 1MB)};width=14}, @{label="Mode";expression={$_.Mode};width=8}, Name |
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
$(function() { | |
var foo = ""; | |
$("body").find("[data-tracking=='']").each(function(index) { | |
if ($(this).data("tracking")!='') | |
{ | |
var trackingTokens = $(this).data("tracking").split(","); | |
$(this).click(function() { | |
_gaq.push(["_trackEvent", trackingTokens[0], trackingTokens[1], trackingTokens[2]]); | |
}); |
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
<?xml version="1.0"?> | |
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"> | |
<cross-domain-policy> | |
<allow-access-from domain="*.pixlr.com" /> | |
<site-control permitted-cross-domain-policies="master-only"/> | |
<allow-http-request-headers-from domain="*.pixlr.com" headers="*" secure="true"/> | |
</cross-domain-policy> |
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
<system.webServer> | |
<!-- IIS rewrite module 2.0 --> | |
<rewrite> | |
<rules> | |
<!-- Umbraco backend: merge DAMP with ImageResizer.Net --> | |
<!-- Rewrite DAMP's (DigibizAdvancedMediaPicker for Umbraco) backend thumbnail requests to use ImageResizer --> | |
<!-- for lightning fast resize and effective disk caching --> | |
<rule name="DAMP"> | |
<match url="^umbraco/plugins/DigibizAdvancedMediaPicker/DAMP_ImagePreview\.ashx" /> | |
<conditions trackAllCaptures="true"> |