3 Minify is an HTTP content server. It compresses sources of content
4 (usually files), combines the result and serves it with appropriate
5 HTTP headers. These headers can allow clients to perform conditional
6 GETs (serving content only when clients do not have a valid cache)
7 and tell clients to cache the file for a period of time.
8 More info: http://code.google.com/p/minify/
13 See UPGRADING.txt for instructions.
16 INSTALLATION AND USAGE:
18 1. Place the /min/ directory as a child of your DOCUMENT_ROOT
19 directory: i.e. you will have: /home/user/www/public_html/min
21 2. Open http://yourdomain/min/ in a web browser. This will forward
22 you to the Minify URI Builder application, which will help you
23 quickly start using Minify to serve content on your site.
28 1. Place the /min_unit_tests/ directory as a child of your DOCUMENT_ROOT
29 directory: i.e. you will have: /home/user/www/public_html/min_unit_tests
31 2. To run unit tests, access: http://yourdomain/min_unit_tests/test_all.php
33 (If you wish, the other test_*.php files can be run to test individual
34 components with more verbose output.)
36 3. Remove /min_unit_tests/ from your DOCUMENT_ROOT when you are done.
41 The min_extras folder contains files for benchmarking using Apache ab on Windows
42 and a couple single-use tools. DO NOT place this on your production server.
47 Minify *should* work fine with files encoded in UTF-8 or other 8-bit
48 encodings like ISO 8859/Windows-1252. By default Minify appends
49 ";charset=utf-8" to the Content-Type headers it sends.
51 Leading UTF-8 BOMs are stripped from all sources to prevent
52 duplication in output files, and files are converted to Unix newlines.