Skip to content

Commit 0c67857

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents f7a0b15 + 20e1ac2 commit 0c67857

File tree

15 files changed

+38
-67
lines changed

15 files changed

+38
-67
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ _This project is a continuator of [AcspNet web-framework](https://github.com/i40
1919

2020
## Package status
2121

22-
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v2.0.1-blue.svg)](https://www.nuget.org/packages/Simplify.Web/) |
22+
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v2.1-blue.svg)](https://www.nuget.org/packages/Simplify.Web/) |
2323
| :------ | :------: |
2424
| **Dependencies** | [![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.svg)](https://libraries.io/nuget/Simplify.Web) |
2525

src/Simplify.Web/IHideObjectMembers.cs

Lines changed: 0 additions & 49 deletions
This file was deleted.

src/Simplify.Web/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ArrayToSpecifiedListParser
1515
/// </summary>
1616
/// <param name="type">The type.</param>
1717
/// <returns></returns>
18-
/// <exception cref="ModelNotSupportedException">Exception throws in case of underfined list type</exception>
18+
/// <exception cref="ModelNotSupportedException">Exception throws in case of undefined list type</exception>
1919
public static bool IsTypeValidForParsing(Type type)
2020
{
2121
if (!type.IsGenericType || type.GetGenericTypeDefinition() != typeof(IList<>))

src/Simplify.Web/Modules/Data/Html/IHtmlWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Various HTML generation classes container
55
/// </summary>
6-
public interface IHtmlWrapper : IHideObjectMembers
6+
public interface IHtmlWrapper
77
{
88
/// <summary>
99
/// HTML ComboBox lists generator.

src/Simplify.Web/Modules/Data/Html/IListsGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Simplify.Web.Modules.Data.Html
88
/// Usable <see cref="StringTable"/> items:
99
/// "HtmlListDefaultItemLabel"
1010
/// </summary>
11-
public interface IListsGenerator : IHideObjectMembers
11+
public interface IListsGenerator
1212
{
1313
/// <summary>
1414
/// Generate number selected HTML list

src/Simplify.Web/Modules/Data/IFileReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Simplify.Web.Modules.Data
55
/// <summary>
66
/// Represents localizable files reader
77
/// </summary>
8-
public interface IFileReader : IHideObjectMembers
8+
public interface IFileReader
99
{
1010
/// <summary>
1111
/// Setups the file reader.

src/Simplify.Web/Modules/Data/IStringTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent string table
55
/// </summary>
6-
public interface IStringTable : IHideObjectMembers
6+
public interface IStringTable
77
{
88
/// <summary>
99
/// String table items

src/Simplify.Web/Modules/IEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent site environment properties
55
/// </summary>
6-
public interface IEnvironment : IHideObjectMembers
6+
public interface IEnvironment
77
{
88
/// <summary>
99
/// Gets the site physical path.

src/Simplify.Web/Modules/ILanguageManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent current language controller and information container
55
/// </summary>
6-
public interface ILanguageManager : IHideObjectMembers
6+
public interface ILanguageManager
77
{
88
/// <summary>
99
/// Site current language, for example: "en", "ru", "de" etc.

src/Simplify.Web/Modules/IRedirector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent website redirection manager, which controls current user location, url to previous page and url to specified page
55
/// </summary>
6-
public interface IRedirector : IHideObjectMembers
6+
public interface IRedirector
77
{
88
/// <summary>
99
/// Gets or sets the previous page url.

0 commit comments

Comments
 (0)