I hereby claim:
- I am davidveksler on github.
- I am davidveksler (https://keybase.io/davidveksler) on keybase.
- I have a public key ASC-2MBCOhjaUIPcBeOFWlYojIZnNU0MWnGHb5aMgFEhTgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Web.Mvc; | |
using Archive.FEE.Web.Helper.PDFParser; | |
using Umbraco.Core; | |
using Umbraco.Core.Logging; | |
using Umbraco.Core.Models; |
protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext) | |
{ | |
MediaService.Saved += MediaService_Saved; | |
} | |
private void MediaService_Saved(IMediaService sender, SaveEventArgs<IMedia> e) | |
{ | |
try | |
{ | |
.. some other stuff... |
@using FEE.Domain | |
@inherits UmbracoTemplatePage | |
@{ | |
Layout = "FEEMaster.cshtml"; | |
var featuredImage = CoverImageProvider.GetCoverImageOrDefault(CurrentPage.featuredImage); | |
} | |
@section bodyClass {subpage} | |
@*TODO maybe implement:https://github.com/warrenbuckley/CWS-Umbraco-Standard-Membership/blob/master/CWSUmbracoStandardMembership/Views/AuthSurface/ResetPassword.cshtml |
@using System.ServiceModel.Dispatcher | |
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage | |
@{ | |
Layout = "FEEMaster.cshtml"; | |
IPublishedContent featuredImage = FEE.Domain.CoverImageProvider.GetCoverImageOrDefault(CurrentPage.featuredImage); | |
} | |
@section bodyClass { | |
subpage | |
} |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using Umbraco.Core; | |
using Umbraco.Core.Models; | |
using Umbraco.Core.Persistence.Querying; | |
using Umbraco.Web.Routing; | |