Skip to content

Commit

Permalink
relative docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclay committed Apr 3, 2017
1 parent a8304c5 commit e355557
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -27,14 +27,14 @@ See the [install guide](docs/Install.wiki.md).

(Using 2.x? [Here are the 2.x docs](https://github.com/mrclay/minify/tree/2.x/docs).)

See the [user guide](https://github.com/mrclay/minify/blob/master/docs/UserGuide.wiki.md).
See the [user guide](docs/UserGuide.wiki.md).

Minify also comes with a [URI Builder application](https://github.com/mrclay/minify/blob/master/docs/BuilderApp.wiki.md) that can help you write URLs
Minify also comes with a [URI Builder application](docs/BuilderApp.wiki.md) that can help you write URLs
for use with Minify or configure groups of files.

See the [cookbook](https://github.com/mrclay/minify/blob/master/docs/CookBook.wiki.md) for more advanced options for minification.
See the [cookbook](docs/CookBook.wiki.md) for more advanced options for minification.

More [docs are available](https://github.com/mrclay/minify/tree/master/docs).
More [docs are available](docs).

## Unit Testing

Expand All @@ -43,7 +43,7 @@ More [docs are available](https://github.com/mrclay/minify/tree/master/docs).

## Warnings

* Minify is designed for efficiency, but, for very high traffic sites, it will probably serve files slower than your HTTPd due to the CGI overhead of PHP. See the [FAQ](https://github.com/mrclay/minify/blob/master/docs/FAQ.wiki.md#how-fast-is-it) and [CookBook](https://github.com/mrclay/minify/blob/master/docs/CookBook.wiki.md) for more info.
* Minify is designed for efficiency, but, for very high traffic sites, it will probably serve files slower than your HTTPd due to the CGI overhead of PHP. See the [FAQ](docs/FAQ.wiki.md#how-fast-is-it) and [CookBook](docs/CookBook.wiki.md) for more info.
* If you combine a lot of CSS, watch out for [IE's 4096 selectors-per-file limit](http://stackoverflow.com/a/9906889/3779), affects IE 6 through 9.
* Minify *should* work fine with files encoded in UTF-8 or other 8-bit encodings like ISO 8859/Windows-1252. By default Minify appends ";charset=utf-8" to the Content-Type headers it sends.

Expand Down
2 changes: 1 addition & 1 deletion docs/CookBook.wiki.md
Expand Up @@ -39,7 +39,7 @@ $min_cachePath = new Minify_Cache_WinCache();

## Closure Compiler API Wrapper

An [experimental wrapper for Google's closure compiler API](https://github.com/mrclay/minify/blob/master/min/lib/Minify/JS/ClosureCompiler.php) is available for compressing Javascript. If the API fails for any reason, JSMin is used as the default backup minifier.
An [experimental wrapper for Google's closure compiler API](../lib/Minify/JS/ClosureCompiler.php) is available for compressing Javascript. If the API fails for any reason, JSMin is used as the default backup minifier.
```php
$min_serveOptions['minifiers'][Minify::TYPE_JS] = array('Minify_JS_ClosureCompiler', 'minify');
```
Expand Down
2 changes: 1 addition & 1 deletion docs/FAQ.wiki.md
Expand Up @@ -4,7 +4,7 @@ The simple JSMin algorithm is the most reliable in PHP, but check the [CookBook]

## How fast is it?

If you [serve static files](https://github.com/mrclay/minify/blob/master/static/README.md), it's as fast as your web server, and you should do this for high-traffic sites.
If you [serve static files](../static/README.md), it's as fast as your web server, and you should do this for high-traffic sites.

The PHP-based server is not as fast, but still performs well thanks to an internal cache. Tips:

Expand Down

0 comments on commit e355557

Please sign in to comment.