Click here to Skip to main content
15,885,625 members
Articles / Web Development / CSS

Combres - WebForm & MVC Client-side Resource Combine Library

Rate me:
Please Sign up or sign in to vote.
4.50/5 (8 votes)
1 Nov 2009Apache13 min read 52.1K   3.1K   22  
A .NET library which enables minification, compression, combination, and caching of JavaScript and CSS resources for ASP.NET and ASP.NET MVC web applications. Simply put, it helps your applications rank better with YSlow and PageSpeed.
#region License
// Copyright 2009 Buu Nguyen (http://www.buunguyen.net/blog)
// 
// Licensed under the Apache License, Version 2.0 (the "License"); 
// you may not use this file except in compliance with the License. 
// You may obtain a copy of the License at 
// 
// http://www.apache.org/licenses/LICENSE-2.0 
// 
// Unless required by applicable law or agreed to in writing, software 
// distributed under the License is distributed on an "AS IS" BASIS, 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
// See the License for the specific language governing permissions and 
// limitations under the License.
// 
// The latest version of this file can be found at http://combres.codeplex.com
#endregion

namespace Combres
{
    /// <summary>
    /// Provide entry points to modify the default transformation behaviors of the Combres engine.
    /// </summary>
    public interface ICombresFilter
    {
        /// <summary>
        /// Transforms the content of a single resource file.
        /// </summary>
        /// <param name="settings">The application setting object.</param>
        /// <param name="resource">The resource whose content is being transformed.</param>
        /// <param name="content">The content of the resource.</param>
        /// <returns>The transformed content of the resource.</returns>
        string TransformSingleContent(Settings settings, Resource resource, string content);

        /// <summary>
        /// Transforms the content of the combined content of a specific resource set.
        /// </summary>
        /// <param name="settings">The application setting object.</param>
        /// <param name="set">The resource set whose content is being transformed.</param>
        /// <param name="content">The combined content of all files in the resource set.</param>
        /// <returns>The transformed combined content of all files in the resource set.</returns>
        string TransformCombinedContent(Settings settings, ResourceSet set, string content);

        /// <summary>
        /// Transforms the minified version of the combined content of a specific resource set.
        /// </summary>
        /// <param name="settings">The application setting object.</param>
        /// <param name="set">The resource set whose minified combined content is being transformed.</param>
        /// <param name="content">The minified combined content of all files in the resource set.</param>
        /// <returns>The transformed minified combined content of all files in the resource set.</returns>
        string TransformMinifiedContent(Settings settings, ResourceSet set, string content);
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Chief Technology Officer KMS Technology
Vietnam Vietnam
You can visit Buu's blog at http://www.buunguyen.net/blog to read about his thoughts on software development.

Comments and Discussions