updated libs

This commit is contained in:
tmont 2011-03-03 23:42:04 +00:00
parent 6d17cfa573
commit 2ac8d0155b
5 changed files with 57 additions and 56 deletions

BIN
Lib/Newtonsoft.Json.dll Normal file

Binary file not shown.

Binary file not shown.

View File

@ -245,6 +245,18 @@
<c>AuthorizationFilter</c> collections
</summary>
</member>
<member name="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
<summary>
Adds a URL pattern to the route collection utilizing intelligent casing when
deconstructing URLs. Make sure you add the <see cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/> to
your <see cref="T:System.Web.Mvc.ViewEngineCollection"/>.
</summary>
<param name="name">The name of the route, or null if unnamed</param>
<param name="url">The route's URL pattern</param>
<param name="defaults">Default values (if applicable) for this route</param>
<param name="constraints">Constraints (if applicable) for the route values</param>
<param name="namespaces">Namespaces to search (unused)</param>
</member>
<member name="T:Portoa.Web.Util.NoTempDataProvider">
<summary> This class exists to get rid of the SessionState and TempData error. Just google it. </summary>
</member>
@ -404,6 +416,19 @@
Adds an error to the model state
</summary>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseViewEngine">
<summary>
View engine for creating views that have been routed by a <see cref="T:Portoa.Web.SmartCasing.SmartCaseRoute"/>
</summary>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseRoute">
<summary>
Route that handles casing intelligently. It converts incoming paths to lowercase,
and adds a hyphen before each upper case letter (unless it starts the string). Use
<see cref="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])"/> to make use of this class.
</summary>
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/>
</member>
<member name="T:Portoa.Web.ErrorHandling.ErrorWithUserResultFactory`1">
<summary>
<c cref="T:Portoa.Web.ErrorHandling.IErrorResultFactory">Error result factory</c> that returns a result suitable
@ -535,6 +560,14 @@
</summary>
<seealso cref="T:Portoa.Web.Util.NoTempDataProvider"/>
</member>
<member name="M:Portoa.Web.Controllers.ControllerExtensions.SerializeToJson(System.Web.Mvc.Controller,System.Object)">
<summary>
Serializes <paramref name="data"/> to a <c>JSON</c> string and returns it as
<c>application/json</c>
</summary>
<param name="controller"></param>
<param name="data">The data to serialize to a JSON string</param>
</member>
<member name="T:Portoa.Web.MvcApplicationBase`1">
<summary>
Base for an MVC application using Unity/NHibernate
@ -594,8 +627,7 @@
<member name="M:Portoa.Web.MvcApplicationBase`1.EnableSmartCasing">
<summary>
Enables <c cref="T:Portoa.Web.SmartCasing.SmartCaseConverter">smart casing</c> for views and routes. This should
be called after Unity is configured and after the controller factory has been set, e.g. in
<see cref="M:Portoa.Web.MvcApplicationBase`1.AfterStartUp"/>.
be called after Unity is configured, e.g. in <see cref="M:Portoa.Web.MvcApplicationBase`1.AfterStartUp"/>.
</summary>
<exception cref="T:System.InvalidOperationException">Raised if <see cref="T:Portoa.Logging.ILogger"/> is not registered in the container</exception>
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseConverter"/>
@ -615,6 +647,23 @@
later.
</summary>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseConverter">
<summary>
Applies smart casing rules to strings
</summary>
</member>
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertFrom(System.String)">
<summary>
Converts a smart-cased string back to a "dumb" one
</summary>
<param name="value">The smart-cased string to convert</param>
</member>
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertTo(System.String)">
<summary>
Converts a "dumb" string to a smart-cased one
</summary>
<param name="value">The non-smart-cased string to convert</param>
</member>
<member name="T:Portoa.Web.Unity.Matching.Not`1">
<summary>
Negates a matching rule
@ -869,53 +918,5 @@
</summary>
<see cref="T:Portoa.Web.Filters.OverrideStatusCodeFilter"/>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseControllerFactory">
<summary>
Controller factory decorator that updates the given controller name using
<see cref="F:Portoa.Web.SmartCasing.SmartCaseControllerFactory.smartCaseConverter"/>
</summary>
</member>
<member name="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
<summary>
Adds a URL pattern to the route collection utilizing intelligent casing when
deconstructing URLs. Make sure you add the <see cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/> to
your <see cref="T:System.Web.Mvc.ViewEngineCollection"/>.
</summary>
<param name="name">The name of the route, or null if unnamed</param>
<param name="url">The route's URL pattern</param>
<param name="defaults">Default values (if applicable) for this route</param>
<param name="constraints">Constraints (if applicable) for the route values</param>
<param name="namespaces">Namespaces to search (unused)</param>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseViewEngine">
<summary>
View engine for creating views that have been routed by a <see cref="T:Portoa.Web.SmartCasing.SmartCaseRoute"/>
</summary>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseRoute">
<summary>
Route that handles casing intelligently. It converts incoming paths to lowercase,
and adds a hyphen before each upper case letter (unless it starts the string). Use
<see cref="M:Portoa.Web.SmartCasing.RouteExtensions.MapSmartRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])"/> to make use of this class.
</summary>
<seealso cref="T:Portoa.Web.SmartCasing.SmartCaseViewEngine"/>
</member>
<member name="T:Portoa.Web.SmartCasing.SmartCaseConverter">
<summary>
Applies smart casing rules to strings
</summary>
</member>
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertFrom(System.String)">
<summary>
Converts a smart-cased string back to a "dumb" one
</summary>
<param name="value">The smart-cased string to convert</param>
</member>
<member name="M:Portoa.Web.SmartCasing.SmartCaseConverter.ConvertTo(System.String)">
<summary>
Converts a "dumb" string to a smart-cased one
</summary>
<param name="value">The non-smart-cased string to convert</param>
</member>
</members>
</doc>

Binary file not shown.

View File

@ -539,6 +539,12 @@
Gets whether or not the transaction is currently active
</summary>
</member>
<member name="T:Portoa.Search.DefaultSearchService`1">
<summary>
Default search service implementation for entities with integral identifiers
</summary>
<typeparam name="T">The entity type</typeparam>
</member>
<member name="M:Portoa.Testing.DbTestingUtility.DropDatabase">
<summary>
Drops the temp database and resets the generated database name
@ -759,11 +765,5 @@
Signifies that this object should not be logged
</summary>
</member>
<member name="T:Portoa.Search.DefaultSearchService`1">
<summary>
Default search service implementation for entities with integral identifiers
</summary>
<typeparam name="T">The entity type</typeparam>
</member>
</members>
</doc>