Skip to content

Commit c92d882

Browse files
author
Harry McIntyre
committed
Standardised datatables spelling on DataTables
1 parent 561a4a4 commit c92d882

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Mvc.JQuery.Datatables.Core/Core.JQuery.Datatables.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
<tags>jquery datatables iqueryable razor</tags>
1414
</metadata>
1515
<!--files>
16-
<file src="RegisterDatatablesModelBinder.cs.pp" target="Content" />
16+
<file src="RegisterDataTablesModelBinder.cs.pp" target="Content" />
1717
</files-->
1818
</package>

Mvc.JQuery.Datatables.Core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("Mvc.JQuery.DataTables.Core")]
9-
[assembly: AssemblyDescription("Popular wrapper lib for working with JQuery Datatables. This package contains framework non-specific core logic. You probably want the package Mvc.Jquery.DataTables")]
9+
[assembly: AssemblyDescription("Popular wrapper lib for working with JQuery DataTables. This package contains framework non-specific core logic. You probably want the package Mvc.JQuery.DataTables")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Harry McIntyre")]
1212
[assembly: AssemblyProduct("Mvc.JQuery.DataTables.Core")]

Mvc.JQuery.Datatables.Core/RegisterDatatablesModelBinder.cs.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
using System.Web.WebPages;
44
using Mvc.JQuery.DataTables;
55

6-
[assembly: PreApplicationStartMethod(typeof($rootnamespace$.RegisterDatatablesModelBinder), "Start")]
6+
[assembly: PreApplicationStartMethod(typeof($rootnamespace$.RegisterDataTablesModelBinder), "Start")]
77

88
namespace $rootnamespace$ {
9-
public static class RegisterDatatablesModelBinder {
9+
public static class RegisterDataTablesModelBinder {
1010
public static void Start() {
1111
if (!ModelBinders.Binders.ContainsKey(typeof(DataTablesParam)))
1212
ModelBinders.Binders.Add(typeof(DataTablesParam), new Mvc.JQuery.DataTables.DataTablesModelBinder());

Mvc.JQuery.Datatables.Example/RegisterDatatablesModelBinder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
using Mvc.JQuery.DataTables.Example;
44
using Mvc.JQuery.DataTables;
55

6-
[assembly: PreApplicationStartMethod(typeof(RegisterDatatablesModelBinder), "Start")]
6+
[assembly: PreApplicationStartMethod(typeof(RegisterDataTablesModelBinder), "Start")]
77

88
namespace Mvc.JQuery.DataTables.Example
99
{
1010

11-
public static class RegisterDatatablesModelBinder
11+
public static class RegisterDataTablesModelBinder
1212
{
1313
public static void Start()
1414
{

Mvc.JQuery.Datatables.Example/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ViewBag.Title = "Mvc.Jquery.Datatables";
2+
ViewBag.Title = "Mvc.JQuery.DataTables";
33
}
44

55
<script type="text/javascript" src="http://balupton.github.com/jquery-syntaxhighlighter/scripts/jquery.syntaxhighlighter.min.js"></script>

Mvc.JQuery.Datatables/Mvc.JQuery.Datatables.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</dependencies>
1717
</metadata>
1818
<!--files>
19-
<file src="RegisterDatatablesModelBinder.cs.pp" target="Content" />
19+
<file src="RegisterDataTablesModelBinder.cs.pp" target="Content" />
2020
</files-->
2121

2222
</package>

Mvc.JQuery.Datatables/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("Mvc.JQuery.DataTables")]
9-
[assembly: AssemblyDescription("Popular wrapper lib for working with JQuery Datatables. Install this for MVC5")]
9+
[assembly: AssemblyDescription("Popular wrapper lib for working with JQuery DataTables. Install this for MVC5")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Harry McIntyre")]
1212
[assembly: AssemblyProduct("Mvc.JQuery.DataTables")]

Mvc.Jquery.DataTables.Tests/Fixtures/ModelBinding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class ModelBinding
1414
[Test]
1515
public void TestDataTablesIModelBinder()
1616
{
17-
RegisterDatatablesModelBinder.Start();
17+
RegisterDataTablesModelBinder.Start();
1818
IModelBinder dataTablesBinder = ModelBinders.Binders.GetBinder(typeof(DataTablesParam), false);
1919
Assert.That(dataTablesBinder, Is.Not.Null, "DataTablesParam model binder not found in ModelBindersDictionary");
2020

Mvc.Jquery.DataTables.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("Mvc.Jquery.DataTables.Tests")]
8+
[assembly: AssemblyTitle("Mvc.JQuery.DataTables.Tests")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("Mvc.Jquery.DataTables.Tests")]
12+
[assembly: AssemblyProduct("Mvc.JQuery.DataTables.Tests")]
1313
[assembly: AssemblyCopyright("Copyright © 2013")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

0 commit comments

Comments
 (0)