Skip to content

Instantly share code, notes, and snippets.

View petergledhill's full-sized avatar

Peter Gledhill petergledhill

  • Chaffinch Digital
  • Newcastle-upon-Tyne, UK
View GitHub Profile
@petergledhill
petergledhill / ContentExtensions.cs
Created April 8, 2015 08:51
Umbraco : get relative URL of IContent without UmbracoContext
public static class ContentExtensions
{
public static string RelativeUrl(this IContent content)
{
var pathParts = new List<string>();
var n = content;
while (n != null)
{
pathParts.Add(n.UrlName());
@petergledhill
petergledhill / CdnRewriteResponse.cs
Last active December 14, 2015 23:58
MVC4 rewrite response to point to assets on CDN.
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace MVC4_CDN_Rewrite_Example.Utils
{
public class CdnRewriteResponse : MemoryStream
{
private Stream Stream { get; set; }