From 32206de24360e43dba814744550777d1fe868c59 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Thu, 12 Jul 2012 22:07:27 -0700 Subject: [PATCH] Update docs for new features. --- docs/client/concepts.html | 5 +++-- docs/client/docs.js | 1 + docs/client/packages.html | 1 + docs/client/packages/force-ssl.html | 23 +++++++++++++++++++++++ docs/client/packages/stylus.html | 8 +++++++- 5 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 docs/client/packages/force-ssl.html diff --git a/docs/client/concepts.html b/docs/client/concepts.html index a4e019650fb..b76f6614b19 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -306,8 +306,9 @@

Templates

Today, the only templating system that has been packaged for Meteor is Handlebars. Let us know what templating systems you'd like to use with Meteor. Meanwhile, see -the Handlebars -documentation. +the Handlebars documentation +and Meteor +Handlebars extensions. {{/note}} A template with a `name` of `hello` is rendered by calling the diff --git a/docs/client/docs.js b/docs/client/docs.js index 72dc4091a18..eb4a4feb8cc 100644 --- a/docs/client/docs.js +++ b/docs/client/docs.js @@ -190,6 +190,7 @@ var toc = [ "backbone", "bootstrap", "coffeescript", + "force-ssl", "jquery", "less", "sass", diff --git a/docs/client/packages.html b/docs/client/packages.html index ebc370b0d6c..65cbde7bd13 100644 --- a/docs/client/packages.html +++ b/docs/client/packages.html @@ -20,6 +20,7 @@

Packages

{{> pkg_backbone}} {{> pkg_bootstrap}} {{> pkg_coffeescript}} +{{> pkg_force_ssl}} {{> pkg_jquery}} {{> pkg_less}} {{> pkg_sass}} diff --git a/docs/client/packages/force-ssl.html b/docs/client/packages/force-ssl.html new file mode 100644 index 00000000000..07e4bb09ebc --- /dev/null +++ b/docs/client/packages/force-ssl.html @@ -0,0 +1,23 @@ + diff --git a/docs/client/packages/stylus.html b/docs/client/packages/stylus.html index 36246ff2ab1..74be1c06b94 100644 --- a/docs/client/packages/stylus.html +++ b/docs/client/packages/stylus.html @@ -10,8 +10,14 @@ automatically compiled to CSS and the results are included in the client CSS bundle. +The `stylus` package also includes `nib` support. Add `@import 'nib'` to +your `.styl` files to enable cross-browser mixins such as +`linear-gradient` and `border-radius`. + See http://learnboost.github.com/stylus -for documentation of the Stylus language. +for documentation of the Stylus language, +and http://visionmedia.github.com/nib +for documentation of the nib extensions. {{/better_markdown}}