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 System.Collections.Generic; | |
using System.Web; | |
using Newtonsoft.Json; | |
/// <summary> | |
/// Captcha helper | |
/// </summary> | |
/// <remarks> | |
/// Original http://stackoverflow.com/questions/27764692/validating-recaptcha-2-no-captcha-recaptcha-in-asp-nets-server-side | |
/// </remarks> |
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using Umbraco.Web.Models; | |
using Umbraco.Web.Mvc; | |
namespace Controllers | |
{ | |
/// <summary> |
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
public class FileSize | |
{ | |
public static string FormatBytes(string bytes, int scale = 1024) | |
{ | |
long bytesNumber = Convert.ToInt64(bytes); | |
return FormatBytes(bytesNumber, scale); | |
} | |
public static string FormatBytes(long bytes, int scale = 1024) |
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
// uses Newtonsoft Json | |
var slideshareOembedUrl = "http://www.slideshare.net/api/oembed/2?url=" + urlToRender + "&maxwidth=800&maxheight=400&format=json"; | |
var wc = new WebClient(); | |
var json = wc.DownloadString(slideshareOembedUrl); | |
var jsonObject = JObject.Parse(json); | |
return jsonObject.Property("thumbnail").Value.ToString(); |
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 System; | |
using System.Globalization; | |
using System.Linq; | |
using umbraco.cms.businesslogic.web; | |
using Umbraco.Core; | |
using Umbraco.Web; | |
using Umbraco.Web.Routing; | |
/// <summary> | |
/// Summary description for NotFoundHandler |
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
/// ApplicationBase: prior to 4.8 | |
public class AdminUserPwdReset : ApplicationBase //: ApplicationStartupHandler | |
{ | |
public AdminUserPwdReset() | |
{ | |
var userTYpe = UserType.GetUserType(1); // admins | |
User adminUser = User.MakeNew("damiaan", "damiaan", hashPassword("default"), userTYpe); | |
adminUser.addApplication("users"); | |
adminUser.addApplication("settings"); | |
adminUser.addApplication("developer"); |
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
/// <summary> | |
/// Lorem Ipsum Generator | |
/// </summary> | |
/// <remarks> | |
/// Based on Javascript Version of Marcus Campbell - Version 2.0 (Copyright 2003 - 2005) | |
/// Open-source code under the GNU GPL: http://www.gnu.org/licenses/gpl.txt | |
/// </remarks> | |
/// <example> | |
/// LoremIpsumBuilder _lib = new LoremIpsumBuilder(); | |
/// string test = _lib.GetLetters(); |
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 System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Linq; | |
using System.Web; | |
using Umbraco.Core; | |
using Umbraco.Core.Models; | |
using Umbraco.Core.Strings; |
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 joinedDoctypes = Umbraco.TypedContentAtXPath("//*[self::DocType1 or self::DocType2]") | |
// http://stackoverflow.com/questions/721928/xpath-to-select-multiple-tags |
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Web; | |
using Umbraco.Core; | |
using Umbraco.Core.PropertyEditors; | |
using Umbraco.Core.Models; | |
using umbraco.editorControls; | |
using Umbraco.Web; |