move /tutorials to /help/tutorials
This commit is contained in:
parent
c547d48256
commit
404c404fdb
@ -8,7 +8,7 @@ COMPASS CHANGELOG
|
|||||||
=================
|
=================
|
||||||
|
|
||||||
Upgrading compass is really easy.
|
Upgrading compass is really easy.
|
||||||
Don't let all these details [scare you...](/tutorials/upgrading/im-scared/)
|
Don't let all these details [scare you...](/help/tutorials/upgrading/im-scared/)
|
||||||
|
|
||||||
The Documentation for the [latest stable release](http://compass-style.org/):
|
The Documentation for the [latest stable release](http://compass-style.org/):
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ Our CSS3 module makes writing CSS3 today almost as easy as it will be when all
|
|||||||
the browsers officially support the new features. The second version of the
|
the browsers officially support the new features. The second version of the
|
||||||
compass CSS module brings the API up to date with developments over the past
|
compass CSS module brings the API up to date with developments over the past
|
||||||
6 to 9 months of browser changes and more closely matching the most recent CSS
|
6 to 9 months of browser changes and more closely matching the most recent CSS
|
||||||
specifications. [Upgrade guide](/tutorials/upgrading/css3-v2/). Summary of changes.
|
specifications. [Upgrade guide](/help/tutorials/upgrading/css3-v2/). Summary of changes.
|
||||||
|
|
||||||
* Support for multiple box shadows and text shadows
|
* Support for multiple box shadows and text shadows
|
||||||
* Support for 2d and 3d transforms
|
* Support for 2d and 3d transforms
|
||||||
@ -179,7 +179,7 @@ specifications. [Upgrade guide](/tutorials/upgrading/css3-v2/). Summary of chang
|
|||||||
------------------
|
------------------
|
||||||
|
|
||||||
* [Rails] Fixed a bug introduced in 0.10.3 that caused rails applications using the old configuration file (config/compass.config) to break.
|
* [Rails] Fixed a bug introduced in 0.10.3 that caused rails applications using the old configuration file (config/compass.config) to break.
|
||||||
* [Extensions] Make it easier to create manifest files by allowing template files to be discovered. See the Manifest Declarations section of [extensions tutorial](http://compass-style.org/tutorials/extensions/) for details.
|
* [Extensions] Make it easier to create manifest files by allowing template files to be discovered. See the Manifest Declarations section of [extensions tutorial](http://compass-style.org/help/tutorials/extensions/) for details.
|
||||||
* [Rails] Don't install configuration files when installing extensions.
|
* [Rails] Don't install configuration files when installing extensions.
|
||||||
* [Compass Core] All url helpers now accept a second argument that when true will cause only the path to be emitted. This allows the url helpers to be used with IE filters.
|
* [Compass Core] All url helpers now accept a second argument that when true will cause only the path to be emitted. This allows the url helpers to be used with IE filters.
|
||||||
|
|
||||||
@ -214,7 +214,7 @@ This will update your compass initializer file.
|
|||||||
* Support for inputs of type email.
|
* Support for inputs of type email.
|
||||||
|
|
||||||
### Extensions
|
### Extensions
|
||||||
* Extensions can now create empty directories with the `directory` directive. [Docs](http://compass-style.org/tutorials/extensions/).
|
* Extensions can now create empty directories with the `directory` directive. [Docs](http://compass-style.org/help/tutorials/extensions/).
|
||||||
* It's now easier to load extensions from a configuration file using the `load` and `discover` directives.
|
* It's now easier to load extensions from a configuration file using the `load` and `discover` directives.
|
||||||
|
|
||||||
### Rails
|
### Rails
|
||||||
|
@ -11,7 +11,7 @@ This page lists the compass commands you can use to set up and manage your proje
|
|||||||
|
|
||||||
You may also find one of these walk throughs useful:
|
You may also find one of these walk throughs useful:
|
||||||
|
|
||||||
* HOWTO: [Compile your stylesheets for production](/tutorials/production-css/)
|
* HOWTO: [Compile your stylesheets for production](/help/tutorials/production-css/)
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Extensions Commands
|
Extensions Commands
|
@ -333,4 +333,4 @@ a couple of ways you can react:
|
|||||||
[issues]: http://github.com/chriseppstein/compass/issues
|
[issues]: http://github.com/chriseppstein/compass/issues
|
||||||
[documentation]: http://github.com/chriseppstein/compass/blob/stable/doc-src/README.markdown
|
[documentation]: http://github.com/chriseppstein/compass/blob/stable/doc-src/README.markdown
|
||||||
[bundler]: http://gembundler.com/
|
[bundler]: http://gembundler.com/
|
||||||
[extensions]: /tutorials/extensions/
|
[extensions]: /help/tutorials/extensions/
|
@ -7,7 +7,7 @@ classnames:
|
|||||||
Production Stylesheets
|
Production Stylesheets
|
||||||
======================
|
======================
|
||||||
|
|
||||||
See the [Configuration Reference](/tutorials/configuration-reference/) for a
|
See the [Configuration Reference](/help/tutorials/configuration-reference/) for a
|
||||||
complete list of available configuration options.
|
complete list of available configuration options.
|
||||||
|
|
||||||
Strategies for Compiling Stylesheets for Production
|
Strategies for Compiling Stylesheets for Production
|
@ -4,7 +4,7 @@
|
|||||||
- if variables.any?
|
- if variables.any?
|
||||||
%h2
|
%h2
|
||||||
Configurable Variables
|
Configurable Variables
|
||||||
%a(href="/tutorials/configurable-variables/" class="help") help
|
%a(href="/help/tutorials/configurable-variables/" class="help") help
|
||||||
= render "partials/reference/const_table", :constants => variables
|
= render "partials/reference/const_table", :constants => variables
|
||||||
|
|
||||||
- if constants.any?
|
- if constants.any?
|
||||||
|
@ -101,7 +101,7 @@ end
|
|||||||
def tutorial_item(path)
|
def tutorial_item(path)
|
||||||
path = "" if path == :root
|
path = "" if path == :root
|
||||||
@items.detect do |i|
|
@items.detect do |i|
|
||||||
i.identifier == "/tutorials/#{path}"
|
i.identifier == "/help/tutorials/#{path}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
$spread : $default-box-shadow-spread,
|
$spread : $default-box-shadow-spread,
|
||||||
$inset : $default-box-shadow-inset
|
$inset : $default-box-shadow-inset
|
||||||
) {
|
) {
|
||||||
@warn "This version of the box-shadow mixin has been deprecated. Please read: http://compass-style.org/docs/upgrading/css3-v2/#box-shadow for details.";
|
@warn "This version of the box-shadow mixin has been deprecated. Please read: http://beta.compass-style.org/upgrading/css3-v2/#box-shadow for details.";
|
||||||
@include single-box-shadow($color, $hoff, $voff, $blur, $spread, $inset);
|
@include single-box-shadow($color, $hoff, $voff, $blur, $spread, $inset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
@import "compass/utilities/general/hacks";
|
@import "compass/utilities/general/hacks";
|
||||||
@import "images";
|
@import "images";
|
||||||
|
|
||||||
@warn "The css3 gradient module is deprecated. For more information see: http://beta.compass-style.org/docs/tutorials/upgrading/css3-v2/#gradients";
|
@warn "The css3 gradient module is deprecated. For more information see: http://beta.compass-style.org/help/tutorials/upgrading/css3-v2/#gradients";
|
||||||
|
|
||||||
// The linear gradient mixin works best across browsers if you use percentage-based color stops.
|
// The linear gradient mixin works best across browsers if you use percentage-based color stops.
|
||||||
//
|
//
|
||||||
|
@ -12,7 +12,7 @@ help %Q{
|
|||||||
welcome_message %Q{
|
welcome_message %Q{
|
||||||
For a full tutorial on how to build your own extension see:
|
For a full tutorial on how to build your own extension see:
|
||||||
|
|
||||||
http://compass-style.org/docs/tutorials/extensions/
|
http://compass-style.org/help/tutorials/extensions/
|
||||||
|
|
||||||
}, :replace => true
|
}, :replace => true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user