Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevindew/sfcombineplusplugin
A symfony plugin for allowing the combining, minifying and grouping of JS/CSS files. Based off sfCombine Plugin
https://github.com/kevindew/sfcombineplusplugin
Last synced: 20 days ago
JSON representation
A symfony plugin for allowing the combining, minifying and grouping of JS/CSS files. Based off sfCombine Plugin
- Host: GitHub
- URL: https://github.com/kevindew/sfcombineplusplugin
- Owner: kevindew
- License: other
- Created: 2010-05-24T00:22:31.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-05-29T18:46:08.000Z (over 14 years ago)
- Last Synced: 2024-10-05T01:41:09.206Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 234 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
--------------------------------------------------------------------------------
sfCombinePlus
--------------------------------------------------------------------------------sfCombinePlus is a fork of sfCombine written by Alexandre Mogère and
François Zaninotto. See: http://www.symfony-project.org/plugins/sfCombinePluginThe purpose of this plugin is to provide the means to auto minify and cache
Javascript and CSS files that are used in your web application. The aim of this
plugin is to provide the flexibility that can be achieved without using such a
utility with the performance boost that can be achieved by using a auto
minifying utility.This fork changes the following things in sfCombine. Please read:
http://www.symfony-project.org/plugins/sfCombinePlugin/1_1_0?tab=plugin_readme
- Javascript and CSS can be put into assigned groups to load particular groups
of files in seperate script loading. This is so that global scripts can be on
each page and extra javascripts can be in their own group which will allow
global files to be cached by the client.
- Different groups can be output in different places, so all but one group
could be output in the head and that last group just before the body
- Database usage is no longer required, files can be accessed by a base64 name
or a human readable file string
- Allows limited parsing of php javascript/css files via a include, can have
a query string.
- Handles external urls
- Works with the symfony option system for assets
- CSS files now have relative URL's altered to the new combined path
- Moves CSS @charset and @import declarations to the top of a combined file for
correct syntax
- Only doctrine is supported when database is used