Skip to content

Commit

Permalink
Fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilk committed Dec 21, 2012
1 parent fd053a7 commit db37f33
Show file tree
Hide file tree
Showing 24 changed files with 25 additions and 29 deletions.
3 changes: 1 addition & 2 deletions fx/Sharpen/Core/Application.Behaviors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
using System.Diagnostics;
using System.Html;
using System.Runtime.CompilerServices;
using Sharpen.Html.Utility;

namespace Sharpen.Html {
namespace Sharpen {

public sealed partial class Application {

Expand Down
4 changes: 2 additions & 2 deletions fx/Sharpen/Core/Application.Bindings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Html;
using Sharpen.Html.Bindings;
using Sharpen.Bindings;

namespace Sharpen.Html {
namespace Sharpen {

public sealed partial class Application {

Expand Down
3 changes: 1 addition & 2 deletions fx/Sharpen/Core/Application.Services.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
using System.ComponentModel;
using System.Diagnostics;
using System.Html;
using Sharpen.Html.Utility;

namespace Sharpen.Html {
namespace Sharpen {

public sealed partial class Application {

Expand Down
3 changes: 1 addition & 2 deletions fx/Sharpen/Core/Application.Templates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Html;
using Sharpen.Html.Utility;

namespace Sharpen.Html {
namespace Sharpen {

public sealed partial class Application {

Expand Down
3 changes: 1 addition & 2 deletions fx/Sharpen/Core/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
using System.Diagnostics;
using System.Html;
using System.Runtime.CompilerServices;
using Sharpen.Html.Utility;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// A page-level singleton representing the current application. It provides core
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Behavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Diagnostics;
using System.Html;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Represents a script objects that can be attached to an Element to
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/BehaviorRegistration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Runtime.CompilerServices;

namespace Sharpen.Html {
namespace Sharpen {

[ScriptImport]
[ScriptIgnoreNamespace]
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Binder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using System;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// A binder is an object that performs the work of binding an expression value
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/BinderFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Html;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Creates an expression binder given an element, the bound property and
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/BinderManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Diagnostics;
using System.Html;

namespace Sharpen.Html {
namespace Sharpen {

internal sealed class BinderManager : Behavior {

Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/BindExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.ComponentModel;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// Implementation of an expression that binds to a value off the model and
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/ContentBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Html;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// Binds the content (textContent/innerHTML) of element to an expression.
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/EventBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Html;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// Binds an event of an element to the value of an expression.
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/PropertyBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Html;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// This binds the property of an object to the value of an expression, and
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/ValueBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Html;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// Binds the value property of an input element to an expression.
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Bindings/VisibilityBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Diagnostics;
using System.Html;

namespace Sharpen.Html.Bindings {
namespace Sharpen.Bindings {

/// <summary>
/// Binds the visibility of an element to an expression.
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<Compile Include="Bindings\PropertyBinder.cs" />
<Compile Include="Bindings\ValueBinder.cs" />
<Compile Include="Bindings\VisibilityBinder.cs" />
<Compile Include="Utility\OptionsParser.cs" />
<Compile Include="OptionsParser.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Script.Web">
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Expression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using System;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Represents the base class for all expressions. Expressions represent
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/ExpressionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using System;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Creates an expression given a model object and a string representation of the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Html;
using System.Serialization;

namespace Sharpen.Html.Utility {
namespace Sharpen {

internal static class OptionsParser {

Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Properties/TemplateEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,5 @@
return new Function('_d', 'index', 'ctx', _code.join('\n'));
}

Sharpen$Html$Application.current.registerTemplateEngine('sharpen', sharpenTemplate);
Sharpen$Application.current.registerTemplateEngine('sharpen', sharpenTemplate);
})();
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/ServiceRegistration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Runtime.CompilerServices;

namespace Sharpen.Html {
namespace Sharpen {

[ScriptImport]
[ScriptIgnoreNamespace]
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/Template.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using System;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Creates an instance of the markup represented by this template.
Expand Down
2 changes: 1 addition & 1 deletion fx/Sharpen/Core/TemplateEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Collections.Generic;
using System.Html;

namespace Sharpen.Html {
namespace Sharpen {

/// <summary>
/// Creates an instance of a template from the specified content.
Expand Down

0 comments on commit db37f33

Please sign in to comment.