Rename Namespace

I made the mustache namespace upper case. An easy find/replace will fix
this for most projects. I bumped the version up to a minor release
anyway.
This commit is contained in:
Travis Parks 2013-05-03 08:44:51 -04:00
parent 50a80f42ad
commit 22e0cb4c2a
36 changed files with 983 additions and 984 deletions

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace mustache.test
namespace Mustache.Test
{
/// <summary>
/// Tests the FormatParser class.

View File

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.0.7.2")]
[assembly: AssemblyFileVersion("0.0.7.2")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]

View File

@ -9,7 +9,7 @@
<ProjectGuid>{7F607362-0680-4751-B1DC-621219294AE3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>mustache.test</RootNamespace>
<RootNamespace>Mustache.Test</RootNamespace>
<AssemblyName>mustache-sharp.test</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
namespace mustache
namespace Mustache
{
/// <summary>
/// Associates parameters to their argument values.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Builds text by combining the output of other generators.

View File

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that conditionally prints its content.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that can contain inner text.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Represents a context within a template.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Holds information describing a parameter that creates a new context.

View File

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that can iterate over a collection of items and render

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that conditionally renders its content if preceding if and elif tags fail.

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that renders its content if all preceding if and elif tags.

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using mustache.Properties;
using Mustache.Properties;
namespace mustache
namespace Mustache
{
/// <summary>
/// Parses a format string and returns a text generator.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Globalization;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Generates text by substituting an object's values for placeholders.

View File

@ -1,7 +1,7 @@
using System;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Applies the values of an object to the format plan, generating a string.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that renders its content depending on the truthyness

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Generates the text for a tag that only exists on a single line.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that cannot contain inner text.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Holds the information about a key that was found.

View File

@ -2,7 +2,7 @@
using System.IO;
using System.Text;
namespace mustache
namespace Mustache
{
/// <summary>
/// Substitutes a key placeholder with the textual representation of the associated object.

View File

@ -1,6 +1,6 @@
using System;
namespace mustache
namespace Mustache
{
/// <summary>
/// Holds the information needed to handle a missing key.

View File

@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using mustache.Properties;
using Mustache.Properties;
namespace mustache
namespace Mustache
{
/// <summary>
/// Represents a scope of keys.

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a pseudo tag that wraps the entire content of a format string.

View File

@ -1,7 +1,7 @@
using System;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Holds the objects to use when processing a child context of another tag.

View File

@ -1,7 +1,7 @@
using System;
using mustache.Properties;
using Mustache.Properties;
namespace mustache
namespace Mustache
{
/// <summary>
/// Holds the information descibing a key that is found in a template.

View File

@ -34,6 +34,6 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.7.2")]
[assembly: AssemblyFileVersion("0.0.7.2")]
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: InternalsVisibleTo("mustache-sharp.test")]

View File

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace mustache.Properties {
namespace Mustache.Properties {
using System;
@ -39,7 +39,7 @@ namespace mustache.Properties {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("mustache.Properties.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Mustache.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
namespace mustache
namespace Mustache
{
/// <summary>
/// Provides methods for creating instances of PropertyDictionary.

View File

@ -1,7 +1,7 @@
using System;
using System.Text.RegularExpressions;
namespace mustache
namespace Mustache
{
/// <summary>
/// Provides utility methods that require regular expressions.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Generates a static block of text.

View File

@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using mustache.Properties;
using Mustache.Properties;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines the attributes of a custom tag.

View File

@ -1,7 +1,7 @@
using System;
using mustache.Properties;
using Mustache.Properties;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a parameter belonging to a custom tag.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
namespace mustache
namespace Mustache
{
/// <summary>
/// Removes unnecessary lines from the final output.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
namespace mustache
namespace Mustache
{
/// <summary>
/// Defines a tag that changes the scope to the object passed as an argument.

View File

@ -8,7 +8,7 @@
<ProjectGuid>{D71B378F-A4BA-4263-A4F0-07A49A0C528D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>mustache</RootNamespace>
<RootNamespace>Mustache</RootNamespace>
<AssemblyName>mustache-sharp</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>

View File

@ -9,7 +9,6 @@
<projectUrl>http://github.com/jehugaleahsa/mustache-sharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Initial commit</releaseNotes>
<copyright>Copyright 2013</copyright>
<tags>
mustache handlebars.js text generation building template