forked from nipunas/NetworkOmi
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #1 from iZ88/master
Pull request for Initial Project
- Loading branch information
Showing
120 changed files
with
34,833 additions
and
0 deletions.
There are no files selected for viewing
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,20 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetworkOmi", "NetworkOmi\NetworkOmi.csproj", "{AC509B8D-ED54-4863-8C52-EE4168BEE3B0}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{AC509B8D-ED54-4863-8C52-EE4168BEE3B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{AC509B8D-ED54-4863-8C52-EE4168BEE3B0}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{AC509B8D-ED54-4863-8C52-EE4168BEE3B0}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{AC509B8D-ED54-4863-8C52-EE4168BEE3B0}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
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,32 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using Microsoft.Web.WebPages.OAuth; | ||
using NetworkOmi.Models; | ||
|
||
namespace NetworkOmi | ||
{ | ||
public static class AuthConfig | ||
{ | ||
public static void RegisterAuth() | ||
{ | ||
// To let users of this site log in using their accounts from other sites such as Microsoft, Facebook, and Twitter, | ||
// you must update this site. For more information visit http://go.microsoft.com/fwlink/?LinkID=252166 | ||
|
||
//OAuthWebSecurity.RegisterMicrosoftClient( | ||
// clientId: "", | ||
// clientSecret: ""); | ||
|
||
//OAuthWebSecurity.RegisterTwitterClient( | ||
// consumerKey: "", | ||
// consumerSecret: ""); | ||
|
||
//OAuthWebSecurity.RegisterFacebookClient( | ||
// appId: "", | ||
// appSecret: ""); | ||
|
||
//OAuthWebSecurity.RegisterGoogleClient(); | ||
} | ||
} | ||
} |
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 NetworkOmi | ||
{ | ||
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")); | ||
} | ||
} | ||
} |
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 NetworkOmi | ||
{ | ||
public class FilterConfig | ||
{ | ||
public static void RegisterGlobalFilters(GlobalFilterCollection filters) | ||
{ | ||
filters.Add(new HandleErrorAttribute()); | ||
} | ||
} | ||
} |
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 NetworkOmi | ||
{ | ||
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 } | ||
); | ||
} | ||
} | ||
} |
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 NetworkOmi | ||
{ | ||
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.