-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from jawadaspose/master
New MVC Plugin Added
- Loading branch information
Showing
35 changed files
with
28,425 additions
and
1 deletion.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
Plugins/MVC/Aspose.MVC.ExportContentToImages/App_Start/BundleConfig.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
using System.Web; | ||
using System.Web.Optimization; | ||
|
||
namespace ExportContentToImage | ||
{ | ||
public class BundleConfig | ||
{ | ||
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725 | ||
public static void RegisterBundles(BundleCollection bundles) | ||
{ | ||
bundles.Add(new ScriptBundle("~/bundles/jquery").Include( | ||
"~/Scripts/jquery-{version}.js")); | ||
|
||
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include( | ||
"~/Scripts/jquery-ui-{version}.js")); | ||
|
||
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( | ||
"~/Scripts/jquery.unobtrusive*", | ||
"~/Scripts/jquery.validate*")); | ||
|
||
// Use the development version of Modernizr to develop with and learn from. Then, when you're | ||
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need. | ||
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( | ||
"~/Scripts/modernizr-*")); | ||
|
||
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css")); | ||
|
||
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( | ||
"~/Content/themes/base/jquery.ui.core.css", | ||
"~/Content/themes/base/jquery.ui.resizable.css", | ||
"~/Content/themes/base/jquery.ui.selectable.css", | ||
"~/Content/themes/base/jquery.ui.accordion.css", | ||
"~/Content/themes/base/jquery.ui.autocomplete.css", | ||
"~/Content/themes/base/jquery.ui.button.css", | ||
"~/Content/themes/base/jquery.ui.dialog.css", | ||
"~/Content/themes/base/jquery.ui.slider.css", | ||
"~/Content/themes/base/jquery.ui.tabs.css", | ||
"~/Content/themes/base/jquery.ui.datepicker.css", | ||
"~/Content/themes/base/jquery.ui.progressbar.css", | ||
"~/Content/themes/base/jquery.ui.theme.css")); | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
Plugins/MVC/Aspose.MVC.ExportContentToImages/App_Start/FilterConfig.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Web; | ||
using System.Web.Mvc; | ||
|
||
namespace ExportContentToImages | ||
{ | ||
public class FilterConfig | ||
{ | ||
public static void RegisterGlobalFilters(GlobalFilterCollection filters) | ||
{ | ||
filters.Add(new HandleErrorAttribute()); | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
Plugins/MVC/Aspose.MVC.ExportContentToImages/App_Start/RouteConfig.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
using System.Web.Mvc; | ||
using System.Web.Routing; | ||
|
||
namespace ExportContentToImages | ||
{ | ||
public class RouteConfig | ||
{ | ||
public static void RegisterRoutes(RouteCollection routes) | ||
{ | ||
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); | ||
|
||
routes.MapRoute( | ||
name: "Default", | ||
url: "{controller}/{action}/{id}", | ||
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } | ||
); | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
Plugins/MVC/Aspose.MVC.ExportContentToImages/App_Start/WebApiConfig.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web.Http; | ||
|
||
namespace ExportContentToImages | ||
{ | ||
public static class WebApiConfig | ||
{ | ||
public static void Register(HttpConfiguration config) | ||
{ | ||
config.Routes.MapHttpRoute( | ||
name: "DefaultApi", | ||
routeTemplate: "api/{controller}/{id}", | ||
defaults: new { id = RouteParameter.Optional } | ||
); | ||
} | ||
} | ||
} |
Oops, something went wrong.