├── PodioAspNetSample ├── Views │ ├── _ViewStart.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Leads │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── _Lead.cshtml │ │ └── Index.cshtml │ ├── Web.config │ └── Authorization │ │ └── Index.cshtml ├── favicon.ico ├── Global.asax ├── Scripts │ ├── _references.js │ ├── bootstrap-alert.js │ ├── respond.min.js │ └── jquery.validate.unobtrusive.min.js ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── Content │ ├── themes │ │ └── base │ │ │ ├── sortable.css │ │ │ ├── draggable.css │ │ │ ├── all.css │ │ │ ├── autocomplete.css │ │ │ ├── selectable.css │ │ │ ├── tooltip.css │ │ │ ├── base.css │ │ │ ├── accordion.css │ │ │ ├── selectmenu.css │ │ │ ├── menu.css │ │ │ ├── tabs.css │ │ │ ├── spinner.css │ │ │ ├── resizable.css │ │ │ ├── dialog.css │ │ │ ├── slider.css │ │ │ ├── core.css │ │ │ ├── progressbar.css │ │ │ ├── button.css │ │ │ └── datepicker.css │ └── Site.css ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── BundleConfig.cs ├── Utils │ ├── DatabaseFactory.cs │ ├── DbOAuthTokenStore.cs │ └── PodioConnection.cs ├── ViewModels │ ├── UsernamePasswordAuthenticationAuthenticationViewModel.cs │ ├── LeadViewModel.cs │ └── LeadListingViewModel.cs ├── Global.asax.cs ├── Filters │ └── PodioAuthenticationFilter.cs ├── Models │ └── PodioOAuthData.cs ├── Web.Debug.config ├── Web.Release.config ├── Properties │ └── AssemblyInfo.cs ├── packages.config ├── Web.config └── Controllers │ ├── AuthorizationController.cs │ └── LeadsController.cs ├── packages ├── NPoco.2.10.11 │ ├── NPoco.2.10.11.nupkg │ └── lib │ │ ├── net35 │ │ └── NPoco.dll │ │ ├── net40 │ │ └── NPoco.dll │ │ └── net45 │ │ └── NPoco.dll ├── Respond.1.2.0 │ ├── Respond.1.2.0.nupkg │ └── content │ │ └── Scripts │ │ └── respond.min.js ├── WebGrease.1.5.2 │ ├── lib │ │ └── WebGrease.dll │ └── WebGrease.1.5.2.nupkg ├── jQuery.1.10.2 │ ├── jQuery.1.10.2.nupkg │ └── Tools │ │ ├── install.ps1 │ │ ├── uninstall.ps1 │ │ └── common.ps1 ├── Modernizr.2.6.2 │ ├── Modernizr.2.6.2.nupkg │ └── Tools │ │ ├── uninstall.ps1 │ │ ├── install.ps1 │ │ └── common.ps1 ├── bootstrap.3.0.0 │ ├── bootstrap.3.0.0.nupkg │ └── content │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── Antlr.3.4.1.9004 │ ├── Antlr.3.4.1.9004.nupkg │ └── lib │ │ └── Antlr3.Runtime.dll ├── Newtonsoft.Json.6.0.8 │ ├── Newtonsoft.Json.6.0.8.nupkg │ ├── lib │ │ ├── net20 │ │ │ └── Newtonsoft.Json.dll │ │ ├── net35 │ │ │ └── Newtonsoft.Json.dll │ │ ├── net40 │ │ │ └── Newtonsoft.Json.dll │ │ ├── net45 │ │ │ └── Newtonsoft.Json.dll │ │ ├── netcore45 │ │ │ └── Newtonsoft.Json.dll │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ └── Newtonsoft.Json.dll │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ └── Newtonsoft.Json.dll │ └── tools │ │ └── install.ps1 ├── Microsoft.AspNet.Mvc.5.2.3 │ ├── lib │ │ └── net45 │ │ │ └── System.Web.Mvc.dll │ ├── Microsoft.AspNet.Mvc.5.2.3.nupkg │ └── Content │ │ ├── Web.config.uninstall.xdt │ │ └── Web.config.install.xdt ├── jQuery.UI.Combined.1.11.4 │ ├── jQuery.UI.Combined.1.11.4.nupkg │ ├── Tools │ │ ├── uninstall.ps1 │ │ ├── install.ps1 │ │ └── common.ps1 │ └── Content │ │ └── Content │ │ └── themes │ │ └── base │ │ ├── sortable.css │ │ ├── draggable.css │ │ ├── all.css │ │ ├── autocomplete.css │ │ ├── selectable.css │ │ ├── tooltip.css │ │ ├── base.css │ │ ├── accordion.css │ │ ├── selectmenu.css │ │ ├── menu.css │ │ ├── tabs.css │ │ ├── spinner.css │ │ ├── resizable.css │ │ ├── dialog.css │ │ ├── slider.css │ │ ├── core.css │ │ ├── progressbar.css │ │ ├── button.css │ │ └── datepicker.css ├── jQuery.Validation.1.14.0 │ └── jQuery.Validation.1.14.0.nupkg ├── Microsoft.AspNet.Razor.3.2.3 │ ├── lib │ │ └── net45 │ │ │ └── System.Web.Razor.dll │ └── Microsoft.AspNet.Razor.3.2.3.nupkg ├── Microsoft.Net.Compilers.1.0.0 │ ├── tools │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── VBCSCompiler.exe.config │ │ ├── Microsoft.VisualBasic.Core.targets │ │ └── Microsoft.CSharp.Core.targets │ ├── Microsoft.Net.Compilers.1.0.0.nupkg │ └── build │ │ └── Microsoft.Net.Compilers.props ├── Microsoft.AspNet.WebPages.3.2.3 │ ├── lib │ │ └── net45 │ │ │ ├── System.Web.Helpers.dll │ │ │ ├── System.Web.WebPages.dll │ │ │ ├── System.Web.WebPages.Razor.dll │ │ │ ├── System.Web.WebPages.Deployment.dll │ │ │ └── System.Web.WebPages.Deployment.xml │ ├── Microsoft.AspNet.WebPages.3.2.3.nupkg │ └── Content │ │ ├── Web.config.uninstall.xdt │ │ └── Web.config.install.xdt ├── Microsoft.AspNet.Web.Optimization.1.1.3 │ ├── lib │ │ └── net40 │ │ │ └── System.Web.Optimization.dll │ └── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.3 │ ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg │ └── Content │ │ └── Scripts │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0 │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg │ ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ ├── build │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props │ └── content │ ├── web.config.uninstall.xdt │ └── web.config.install.xdt ├── .gitignore ├── PodioAspNetSample.sln ├── LICENSE ├── README.txt └── README.markdown /PodioAspNetSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /PodioAspNetSample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/PodioAspNetSample/favicon.ico -------------------------------------------------------------------------------- /PodioAspNetSample/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="PodioAspNetSample.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /PodioAspNetSample/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/PodioAspNetSample/Scripts/_references.js -------------------------------------------------------------------------------- /packages/NPoco.2.10.11/NPoco.2.10.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/NPoco.2.10.11/NPoco.2.10.11.nupkg -------------------------------------------------------------------------------- /packages/NPoco.2.10.11/lib/net35/NPoco.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/NPoco.2.10.11/lib/net35/NPoco.dll -------------------------------------------------------------------------------- /packages/NPoco.2.10.11/lib/net40/NPoco.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/NPoco.2.10.11/lib/net40/NPoco.dll -------------------------------------------------------------------------------- /packages/NPoco.2.10.11/lib/net45/NPoco.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/NPoco.2.10.11/lib/net45/NPoco.dll -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /PodioAspNetSample/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/PodioAspNetSample/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /PodioAspNetSample/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/PodioAspNetSample/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /PodioAspNetSample/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/PodioAspNetSample/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.11.4/jQuery.UI.Combined.1.11.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/jQuery.UI.Combined.1.11.4/jQuery.UI.Combined.1.11.4.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.14.0/jQuery.Validation.1.14.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/jQuery.Validation.1.14.0/jQuery.Validation.1.14.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.11.4/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $juiFileNameRegEx -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.3/Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podio/asp-net-sample/HEAD/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /PodioAspNetSample/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Sortable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-sortable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /PodioAspNetSample/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Draggable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-draggable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /PodioAspNetSample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace PodioAspNetSample 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PodioAspNetSample/Utils/DatabaseFactory.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using NPoco; 3 | 4 | namespace PodioAspNetSample.Utils 5 | { 6 | public static class DatabaseFactory 7 | { 8 | public static Database GetDatabase() 9 | { 10 | var db = new Database("PodioAspnetSampleDb"); 11 | return db; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /PodioAspNetSample/Content/themes/base/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "base.css"; 12 | @import "theme.css"; 13 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.11.4/Content/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Sortable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-sortable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.11.4/Content/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Draggable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-draggable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.11.4/Content/Content/themes/base/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "base.css"; 12 | @import "theme.css"; 13 | -------------------------------------------------------------------------------- /PodioAspNetSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 |
8 | 9 |@ViewBag.message
11 |@ViewBag.error
18 |@ViewBag.message
11 |@ViewBag.error
18 |@ViewBag.error
12 |@ViewBag.message
11 |@ViewBag.error
19 || # | 86 |Company | 87 |Lead Owners | 88 |Expected Value | 89 |Next Follow Up | 90 |Edit | 91 |Delete | 92 |
|---|---|---|---|---|---|---|
| @counter | 103 |@item.Company | 104 |@leadOwners | 105 |@item.ExpectedValue | 106 |107 | @if (item.NextFollowUp != null) 108 | { 109 | @item.NextFollowUp.Value.ToString("MM/dd/yyyy") 110 | } 111 | | 112 |@Html.ActionLink("Edit", "Edit", "Leads", new { Id = item.PodioItemID }, new { @class = "edit_button" }) | 113 |@Html.ActionLink("Delete", "Delete", "Leads", new { Id = item.PodioItemID }, new { @class = "delete_button", onclick = "return confirm('Item delete operation is NOT RECOVERABLE. Do you want to continue?')" }) | 114 |