From 93fea1f1cf7902261a3743acadd9bb2a196e2190 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 4 Feb 2012 23:21:56 -0800 Subject: [PATCH 01/30] The < and > escapes have nothing to do with Unicode. --- docs/base-css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/base-css.html b/docs/base-css.html index 1e9f6e8c4e..c37db88840 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -375,7 +375,7 @@ For example, <code>section</code> should be wrapped as inline.

Basic block

-

Use <pre> for multiple lines of code. Be sure to turn any angle brackets into unicode characters for proper rendering.

+

Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.

 <p>Sample text here...</p>
 
From 98cffdbf4684a85565d6ca7cf1173319863d03fd Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 5 Feb 2012 23:02:16 -0800 Subject: [PATCH 02/30] parallel fix to mustache template --- docs/templates/pages/base-css.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index fd9a82f502..833e196ef7 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -299,7 +299,7 @@

Basic block

-

{{_i}}Use <pre> for multiple lines of code. Be sure to turn any angle brackets into unicode characters for proper rendering.{{/i}}

+

{{_i}}Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.{{/i}}

 <p>{{_i}}Sample text here...{{/i}}</p>
 
From 407ca09226ab044d3d960561e0f98cdc90c96574 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Mon, 6 Feb 2012 14:33:12 -0800 Subject: [PATCH 03/30] Javascript update docs for tooltips, based on @fat's feedback. --- docs/templates/pages/upgrading.mustache | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/templates/pages/upgrading.mustache b/docs/templates/pages/upgrading.mustache index 02d1c7febd..ab4b29812d 100644 --- a/docs/templates/pages/upgrading.mustache +++ b/docs/templates/pages/upgrading.mustache @@ -169,6 +169,13 @@
{{_i}}Heads up!{{/i}} {{_i}}We're rewritten just about everything for our plugins, so head on over to the Javascript page to learn more.{{/i}}
+

{{_i}}Tooltips{{/i}}

+
    +
  • {{_i}}The plugin method has been renamed from twipsy() to tooltip(), and the class name changed from twipsy to tooltip.{{/i}}
  • +
  • {{_i}}The placement option value that was below is now bottom, and above is now top.{{/i}}
  • +
  • {{_i}}The animate option was renamed to animation.{{/i}}
  • +
  • {{_i}}The html option was removed, as the tooltips default to allowing HTML now.{{/i}}
  • +

{{_i}}Popovers{{/i}}

  • {{_i}}Child elements now properly namespaced: .title to .popover-title, .inner to .popover-inner, and .content to .popover-content.{{/i}}
  • From 25bf0af2492920d3da59cc64a23c1a776279a3eb Mon Sep 17 00:00:00 2001 From: Henrik N Date: Tue, 7 Feb 2012 19:29:45 +0100 Subject: [PATCH 04/30] Add ol.unstyled --- docs/assets/css/bootstrap.css | 3 ++- less/type.less | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index a90e31930b..51719d3aa8 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -374,7 +374,8 @@ ol { li { line-height: 18px; } -ul.unstyled { +ul.unstyled, +ol.unstyled { margin-left: 0; list-style: none; } diff --git a/less/type.less b/less/type.less index 7841bb0906..ae43d19405 100644 --- a/less/type.less +++ b/less/type.less @@ -110,7 +110,8 @@ ol { li { line-height: @baseLineHeight; } -ul.unstyled { +ul.unstyled, +ol.unstyled { margin-left: 0; list-style: none; } From 2e5a81601cfde62dca8a05125e2640787c8b7424 Mon Sep 17 00:00:00 2001 From: Silumesii Maboshe Date: Wed, 8 Feb 2012 17:11:51 +0200 Subject: [PATCH 05/30] Typo. --- docs/templates/pages/upgrading.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/templates/pages/upgrading.mustache b/docs/templates/pages/upgrading.mustache index 45ab0703bd..bac697e21a 100644 --- a/docs/templates/pages/upgrading.mustache +++ b/docs/templates/pages/upgrading.mustache @@ -170,7 +170,7 @@

    {{_i}}Javascript plugins{{/i}}

- {{_i}}Heads up!{{/i}} {{_i}}We're rewritten just about everything for our plugins, so head on over to the Javascript page to learn more.{{/i}} + {{_i}}Heads up!{{/i}} {{_i}}We've rewritten just about everything for our plugins, so head on over to the Javascript page to learn more.{{/i}}

{{_i}}Popovers{{/i}}