diff --git a/Gemfile b/Gemfile index 7ddefedd..4c8468e6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -source "http://rubygems.org" +source "https://rubygems.org" gem "haml-coderay" gem "middleman", "~> 3.0.0" gem "middleman-smusher" diff --git a/README.md b/README.md index 962c8d0c..526dfdd6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Documentation These are the source files that power mongoid.org. It is a -[middleman](http://middlemanapp.com) powered static page. +[middleman](https://middlemanapp.com) powered static page. # Contributing diff --git a/source/en/mongoid/docs/contributing.haml b/source/en/mongoid/docs/contributing.haml index c61226ad..68351b03 100644 --- a/source/en/mongoid/docs/contributing.haml +++ b/source/en/mongoid/docs/contributing.haml @@ -52,7 +52,7 @@ %h2 Core Contributions %p - Fork the repo on github + Fork the repo on github and issue a pull request with your changes. No other means of supplying code to the team will be accepted. @@ -144,7 +144,7 @@ Mongoid has the design philosophy of having many fine grained, single purpose objects in its domain. It makes the design more flexible and much easier to test. If you find yourself refactoring at all, - extract class + extract class is always a good refactoring technique to have in mind. %p @@ -205,7 +205,7 @@ %p Ensure to write good descriptive commit messages, and follow the parameters - set forth + set forth here by Tim Pope using which are the same standards as the linux kernel. %section#documentation @@ -217,7 +217,7 @@ documentation are always welcome. The same rules apply here: %p - Fork the repo on github + Fork the repo on github and issue a pull request with your changes. No other means of supplying code to the team will be accepted. diff --git a/source/en/mongoid/docs/documents.haml b/source/en/mongoid/docs/documents.haml index 84102004..a882712c 100644 --- a/source/en/mongoid/docs/documents.haml +++ b/source/en/mongoid/docs/documents.haml @@ -254,7 +254,7 @@ %p When using a field of type Hash, be wary of adhering to the - = link_to "legal key names for mongoDB", "http://www.mongodb.org/display/DOCS/Legal+Key+Names" + = link_to "legal key names for mongoDB", "https://www.mongodb.org/display/DOCS/Legal+Key+Names" , or else the values will not store properly. :coderay diff --git a/source/en/mongoid/docs/persistence.haml b/source/en/mongoid/docs/persistence.haml index 3dd3c71c..d560fbc2 100644 --- a/source/en/mongoid/docs/persistence.haml +++ b/source/en/mongoid/docs/persistence.haml @@ -8,7 +8,7 @@ %p Mongoid supports all expected CRUD operations for those familiar with other Ruby mappers like - Active Record or + Active Record or Data Mapper. What distinguishes Mongoid from other mappers for MongoDB is that the general persistence operations perform atomic diff --git a/source/en/mongoid/docs/rails.haml b/source/en/mongoid/docs/rails.haml index 55fc600f..93b17478 100644 --- a/source/en/mongoid/docs/rails.haml +++ b/source/en/mongoid/docs/rails.haml @@ -13,7 +13,7 @@ %p For a sample Rails application and examples of domain modeling, please see the Mongoid demo application, - Echo. Note that currently the + Echo. Note that currently the application is only models and specs. .page-nav diff --git a/source/en/mongoid/docs/tips.haml b/source/en/mongoid/docs/tips.haml index 59aa1d84..a85d5ec5 100644 --- a/source/en/mongoid/docs/tips.haml +++ b/source/en/mongoid/docs/tips.haml @@ -39,9 +39,9 @@ data types used in the MongoDB wire protocol. All data sent via the wire protocol, as well as the BSON specification itself use little endian and the ability to decode 32 bit and 64 bit signed longs and ints did not arrive in Ruby until this - version. See + version. See String#unpack and - Mongo Wire Protocol + Mongo Wire Protocol for more detailed information. %p @@ -55,7 +55,7 @@ run on 1.9.3 in your applications. First, you will need to upgrade to the Cedar stack, and then you will need to specify 1.9.3 as your Ruby in your application's Gemfile. - See + See Multiple Rubies on Heroku for instructions on making this migration. %section#count_performance @@ -76,8 +76,8 @@ which can easily cripple application performance. %ul - %li See: SERVER-1752 - %li See: SERVER-2274 + %li See: SERVER-1752 + %li See: SERVER-2274 %section#reorder_embedded %h2 Reordering Embedded Documents @@ -118,7 +118,7 @@ embedded documents in another process. If you were to do so, Mongoid would be updating the incorrect field. It is recommended until this is fixed that you sort your documents in memory and leave the underlying order untouched. - See SERVER-831 for + See SERVER-831 for more information. %section#gridfs diff --git a/source/en/mongoid/docs/upgrading.haml b/source/en/mongoid/docs/upgrading.haml index 68837d21..0d184eba 100644 --- a/source/en/mongoid/docs/upgrading.haml +++ b/source/en/mongoid/docs/upgrading.haml @@ -8,7 +8,7 @@ %p Use this as a reference when upgrading between Mongoid versions. You can always reference the - + CHANGELOG for bug fixes, new features, and major changes between versions. @@ -18,7 +18,7 @@ %td.achtung= image_tag "/images/achtung.png" %td.note Mongoid follows versioning guidelines as outlined by the - Semantic Versioning Specification, so + Semantic Versioning Specification, so you can expect only backwards incompatible changes in major versions. %h2 Upgrading to 3.0 @@ -100,7 +100,7 @@ %li %i.icon-warning-sign - #1865 + #1865 count on the memory and mongo contexts now behave exactly the same as Ruby's count on enumerable, and can take an object or a block. This is optimized on the mongo context not to load everything in memory @@ -181,7 +181,7 @@ %li %i.icon-warning-sign - #1734 + #1734 When searching for documents via Model.find with multiple ids, Mongoid will raise an error if not all ids are found, and tell you what the missing ones were. Previously the error only got raised if @@ -189,7 +189,7 @@ %li %i.icon-warning-sign - #1675 + #1675 Adding presence validation on a relation now enables autosave. This is to ensure that when a new parent object is saved with a new child and marked is valid, both are persisted to ensure a correct @@ -197,23 +197,23 @@ %li %i.icon-warning-sign - #1484 + #1484 Model#has_attribute? now behaves the same as Active Record. %li %i.icon-warning-sign - #1475 + #1475 Active Support's time zone is now used by default in time serialization if it is defined. %li %i.icon-warning-sign - #1471 + #1471 Mongoid no longer strips any level of precision off of times. %li %i.icon-warning-sign - #1342 + #1342 Model.find and model.relation.find now only take a single or multiple ids. Model.first, Model.last also no longer take arguments. For these use Model.find_by @@ -221,7 +221,7 @@ %li %i.icon-warning-sign - #1291 + #1291 The mongoid.yml has been revamped completely, and upgrading existing applications will greet you with some lovely Mongoid specific configuration errors. You can re-generate a new mongoid.yml via the @@ -230,7 +230,7 @@ %li %i.icon-warning-sign - #1291 + #1291 The persist_in_safe_mode configuration option has been removed. You must now tell a database session in the mongoid.yml whether or not it should persist in safe mode by default. @@ -250,7 +250,7 @@ %li %i.icon-warning-sign - #1291 + #1291 safely and unsafely have been removed. Please now use with to provide safe mode options at runtime. @@ -262,7 +262,7 @@ %li %i.icon-warning-sign - #1270 + #1270 Relation macros have been changed to match their AR counterparts: only :has_one, :has_many, :has_and_belongs_to_many, and :belongs_to @@ -270,13 +270,13 @@ %li %i.icon-warning-sign - #1268 + #1268 Model#new? has been removed, developers must now always use Model#new_record?. %li %i.icon-warning-sign - #1182 + #1182 A reload is no longer required to refresh a relation after setting the value of the foreign key field for it. Note this behaves exactly as Active Record. @@ -295,7 +295,7 @@ %li %i.icon-warning-sign - #1093 + #1093 Field serialization strategies have changed on Array, Hash, Integer and Boolean to be more consistent and match AR where appropriate. @@ -313,13 +313,13 @@ %li %i.icon-warning-sign - #933 + #933 :field.size has been renamed to :field.with_size in criteria for $size not to conflict with Symbol's size method. %li %i.icon-warning-sign - #797 + #797 Mongoid scoping code has been completely rewritten, and now matches the Active Record API. With this backwards incompatible change, some methods have been removed or renamed. diff --git a/source/en/mongoid/docs/validation.haml b/source/en/mongoid/docs/validation.haml index 359cc262..0fb64777 100644 --- a/source/en/mongoid/docs/validation.haml +++ b/source/en/mongoid/docs/validation.haml @@ -10,7 +10,7 @@ validation plus an additional associated and uniqueness validator. %p - See #{link_to "ActiveModel::Validations", "http://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations.rb"} documentation for more information. + See #{link_to "ActiveModel::Validations", "https://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations.rb"} documentation for more information. .well %table diff --git a/source/en/mongoid/donate.haml b/source/en/mongoid/donate.haml index de1d3fca..d026e8ad 100644 --- a/source/en/mongoid/donate.haml +++ b/source/en/mongoid/donate.haml @@ -21,22 +21,22 @@ %ul.highlight %li - Mongoid: + Mongoid: The core Ruby ODM for MongoDB. %li - Moped: + Moped: Our pure Ruby driver for MongoDB. %li - Origin: + Origin: A DSL for generating MongoDB queries. %li - Moped-Turbo (in development): + Moped-Turbo (in development): C Extensions for Moped. %li - Evolver (in development): + Evolver (in development): Rails migrations for MongoDB. %li - Scooter (in development): + Scooter (in development): An asynchronous JVM driver for MongoDB. 1 day a week is simply not enough time to keep up with all the needed work for @@ -63,6 +63,6 @@ sending donations if you do not wish to be anonymous. .well - = link_to "http://www.pledgie.com/campaigns/7757" do - Click here to lend your support to: Mongoid + = link_to "https://www.pledgie.com/campaigns/7757" do + Click here to lend your support to: Mongoid Donate via WePAY diff --git a/source/en/mongoid/index.haml b/source/en/mongoid/index.haml index e2b6a82d..f668f3ea 100644 --- a/source/en/mongoid/index.haml +++ b/source/en/mongoid/index.haml @@ -7,9 +7,9 @@ %p Mongoid (pronounced mann-goyd) is an Object-Document-Mapper (ODM) for - MongoDB written in Ruby. It was conceived in August, + MongoDB written in Ruby. It was conceived in August, 2009 during a whiskey-induced evening at the infamous Oasis in Florida, - USA by Durran Jordan. + USA by Durran Jordan. %p The philosophy of Mongoid is to provide a familiar API to Ruby developers diff --git a/source/en/mongoid/links.haml b/source/en/mongoid/links.haml index 3605596f..35c4d062 100644 --- a/source/en/mongoid/links.haml +++ b/source/en/mongoid/links.haml @@ -4,29 +4,29 @@ %h1 Links .link-button - = link_to "http://github.com/mongoid/mongoid", rel: "tooltip", title: "Mongoid on Github." do + = link_to "https://github.com/mongoid/mongoid", rel: "tooltip", title: "Mongoid on Github." do = image_tag "/images/dojocat.png" .link-button.link-pad-left - = link_to "http://groups.google.com/group/mongoid", rel: "tooltip", title: "The official Google Group for Mongoid." do + = link_to "https://groups.google.com/group/mongoid", rel: "tooltip", title: "The official Google Group for Mongoid." do = image_tag "/images/google.png" .link-button - = link_to "http://twitter.com/modetojoy", rel: "tooltip", title: "Durran (@modetojoy) on Twitter." do + = link_to "https://twitter.com/modetojoy", rel: "tooltip", title: "Durran (@modetojoy) on Twitter." do = image_tag "/images/twitter.png" .link-button - = link_to "http://mongohq.com", rel: "tooltip", title: "MongoHQ provides Mongoid with databases for testing." do + = link_to "https://mongohq.com", rel: "tooltip", title: "MongoHQ provides Mongoid with databases for testing." do = image_tag "/images/mongohq.png" .link-button - = link_to "http://travis-ci.org/#!/mongoid/mongoid", rel: "tooltip", title: "Mongoid's continuous integration on TravisCI." do + = link_to "https://travis-ci.org/#!/mongoid/mongoid", rel: "tooltip", title: "Mongoid's continuous integration on TravisCI." do = image_tag "/images/travis.png" .link-button - = link_to "http://flattr.com/thing/472303/mongoid", rel: "tooltip", title: "Donate to Mongoid via Flattr." do + = link_to "https://flattr.com/thing/472303/mongoid", rel: "tooltip", title: "Donate to Mongoid via Flattr." do = image_tag "/images/flattr.png" .link-button - = link_to "http://rdoc.info/github/mongoid/mongoid/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do + = link_to "https://rdoc.info/github/mongoid/mongoid/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do = image_tag "/images/rdoc.png" diff --git a/source/en/mongoid/v3/contributing.haml b/source/en/mongoid/v3/contributing.haml index 08ffa2a6..4fadb8b8 100644 --- a/source/en/mongoid/v3/contributing.haml +++ b/source/en/mongoid/v3/contributing.haml @@ -52,7 +52,7 @@ %h2 Core Contributions %p - Fork the repo on github + Fork the repo on github and issue a pull request with your changes. No other means of supplying code to the team will be accepted. @@ -144,7 +144,7 @@ Mongoid has the design philosophy of having many fine grained, single purpose objects in its domain. It makes the design more flexible and much easier to test. If you find yourself refactoring at all, - extract class + extract class is always a good refactoring technique to have in mind. %p @@ -205,7 +205,7 @@ %p Ensure to write good descriptive commit messages, and follow the parameters - set forth + set forth here by Tim Pope using which are the same standards as the linux kernel. %section#documentation @@ -217,7 +217,7 @@ documentation are always welcome. The same rules apply here: %p - Fork the repo on github + Fork the repo on github and issue a pull request with your changes. No other means of supplying code to the team will be accepted. diff --git a/source/en/mongoid/v3/documents.haml b/source/en/mongoid/v3/documents.haml index 293dac95..6ce6c141 100644 --- a/source/en/mongoid/v3/documents.haml +++ b/source/en/mongoid/v3/documents.haml @@ -220,7 +220,7 @@ %p When using a field of type Hash, be wary of adhering to the - = link_to "legal key names for mongoDB", "http://www.mongodb.org/display/DOCS/Legal+Key+Names" + = link_to "legal key names for mongoDB", "https://www.mongodb.org/display/DOCS/Legal+Key+Names" , or else the values will not store properly. :coderay diff --git a/source/en/mongoid/v3/identity_map.haml b/source/en/mongoid/v3/identity_map.haml index b429a95d..1f918871 100644 --- a/source/en/mongoid/v3/identity_map.haml +++ b/source/en/mongoid/v3/identity_map.haml @@ -5,7 +5,7 @@ %p Mongoid's identity map is an implementation of the - Identity Map Pattern. + Identity Map Pattern. .page-nav .container diff --git a/source/en/mongoid/v3/index.haml b/source/en/mongoid/v3/index.haml index f01085bf..b00d7a1c 100644 --- a/source/en/mongoid/v3/index.haml +++ b/source/en/mongoid/v3/index.haml @@ -7,9 +7,9 @@ %p Mongoid (pronounced mann-goyd) is an Object-Document-Mapper (ODM) for - MongoDB written in Ruby. It was conceived in August, + MongoDB written in Ruby. It was conceived in August, 2009 during a whiskey-induced evening at the infamous Oasis in Florida, - USA by Durran Jordan. + USA by Durran Jordan. %p The philosophy of Mongoid is to provide a familiar API to Ruby developers diff --git a/source/en/mongoid/v3/persistence.haml b/source/en/mongoid/v3/persistence.haml index bfdc0c34..5930c31b 100644 --- a/source/en/mongoid/v3/persistence.haml +++ b/source/en/mongoid/v3/persistence.haml @@ -8,7 +8,7 @@ %p Mongoid supports all expected CRUD operations for those familiar with other Ruby mappers like - Active Record or + Active Record or Data Mapper. What distinguishes Mongoid from other mappers for MongoDB is that the general persistence operations perform atomic diff --git a/source/en/mongoid/v3/rails.haml b/source/en/mongoid/v3/rails.haml index 4eef0189..daeb8b26 100644 --- a/source/en/mongoid/v3/rails.haml +++ b/source/en/mongoid/v3/rails.haml @@ -13,7 +13,7 @@ %p For a sample Rails application and examples of domain modeling, please see the Mongoid demo application, - Echo. Note that currently the + Echo. Note that currently the application is only models and specs. .page-nav diff --git a/source/en/mongoid/v3/tips.haml b/source/en/mongoid/v3/tips.haml index d47a2ba1..29bca16b 100644 --- a/source/en/mongoid/v3/tips.haml +++ b/source/en/mongoid/v3/tips.haml @@ -40,9 +40,9 @@ data types used in the MongoDB wire protocol. All data sent via the wire protocol, as well as the BSON specification itself use little endian and the ability to decode 32 bit and 64 bit signed longs and ints did not arrive in Ruby until this - version. See + version. See String#unpack and - Mongo Wire Protocol + Mongo Wire Protocol for more detailed information. %p @@ -56,7 +56,7 @@ run on 1.9.3 in your applications. First, you will need to upgrade to the Cedar stack, and then you will need to specify 1.9.3 as your Ruby in your application's Gemfile. - See + See Multiple Rubies on Heroku for instructions on making this migration. %section#count_performance @@ -77,8 +77,8 @@ which can easily cripple application performance. %ul - %li See: SERVER-1752 - %li See: SERVER-2274 + %li See: SERVER-1752 + %li See: SERVER-2274 %section#reorder_embedded %h2 Reordering Embedded Documents @@ -119,7 +119,7 @@ embedded documents in another process. If you were to do so, Mongoid would be updating the incorrect field. It is recommended until this is fixed that you sort your documents in memory and leave the underlying order untouched. - See SERVER-831 for + See SERVER-831 for more information. %section#gridfs diff --git a/source/en/mongoid/v3/upgrading.haml b/source/en/mongoid/v3/upgrading.haml index fd818566..2080b77d 100644 --- a/source/en/mongoid/v3/upgrading.haml +++ b/source/en/mongoid/v3/upgrading.haml @@ -8,7 +8,7 @@ %p Use this as a reference when upgrading between Mongoid versions. You can always reference the - + CHANGELOG for bug fixes, new features, and major changes between versions. @@ -18,7 +18,7 @@ %td.achtung= image_tag "/images/achtung.png" %td.note Mongoid follows versioning guidelines as outlined by the - Semantic Versioning Specification, so + Semantic Versioning Specification, so you can expect only backwards incompatible changes in major versions. %h2 Upgrading to 3.0 @@ -100,7 +100,7 @@ %li %i.icon-warning-sign - #1865 + #1865 count on the memory and mongo contexts now behave exactly the same as Ruby's count on enumerable, and can take an object or a block. This is optimized on the mongo context not to load everything in memory @@ -181,7 +181,7 @@ %li %i.icon-warning-sign - #1734 + #1734 When searching for documents via Model.find with multiple ids, Mongoid will raise an error if not all ids are found, and tell you what the missing ones were. Previously the error only got raised if @@ -189,7 +189,7 @@ %li %i.icon-warning-sign - #1675 + #1675 Adding presence validation on a relation now enables autosave. This is to ensure that when a new parent object is saved with a new child and marked is valid, both are persisted to ensure a correct @@ -197,23 +197,23 @@ %li %i.icon-warning-sign - #1484 + #1484 Model#has_attribute? now behaves the same as Active Record. %li %i.icon-warning-sign - #1475 + #1475 Active Support's time zone is now used by default in time serialization if it is defined. %li %i.icon-warning-sign - #1471 + #1471 Mongoid no longer strips any level of precision off of times. %li %i.icon-warning-sign - #1342 + #1342 Model.find and model.relation.find now only take a single or multiple ids. Model.first, Model.last also no longer take arguments. For these use Model.find_by @@ -221,7 +221,7 @@ %li %i.icon-warning-sign - #1291 + #1291 The mongoid.yml has been revamped completely, and upgrading existing applications will greet you with some lovely Mongoid specific configuration errors. You can re-generate a new mongoid.yml via the @@ -230,7 +230,7 @@ %li %i.icon-warning-sign - #1291 + #1291 The persist_in_safe_mode configuration option has been removed. You must now tell a database session in the mongoid.yml whether or not it should persist in safe mode by default. @@ -250,7 +250,7 @@ %li %i.icon-warning-sign - #1291 + #1291 safely and unsafely have been removed. Please now use with to provide safe mode options at runtime. @@ -262,7 +262,7 @@ %li %i.icon-warning-sign - #1270 + #1270 Relation macros have been changed to match their AR counterparts: only :has_one, :has_many, :has_and_belongs_to_many, and :belongs_to @@ -270,13 +270,13 @@ %li %i.icon-warning-sign - #1268 + #1268 Model#new? has been removed, developers must now always use Model#new_record?. %li %i.icon-warning-sign - #1182 + #1182 A reload is no longer required to refresh a relation after setting the value of the foreign key field for it. Note this behaves exactly as Active Record. @@ -295,7 +295,7 @@ %li %i.icon-warning-sign - #1093 + #1093 Field serialization strategies have changed on Array, Hash, Integer and Boolean to be more consistent and match AR where appropriate. @@ -313,13 +313,13 @@ %li %i.icon-warning-sign - #933 + #933 :field.size has been renamed to :field.with_size in criteria for $size not to conflict with Symbol's size method. %li %i.icon-warning-sign - #797 + #797 Mongoid scoping code has been completely rewritten, and now matches the Active Record API. With this backwards incompatible change, some methods have been removed or renamed. diff --git a/source/en/mongoid/v3/validation.haml b/source/en/mongoid/v3/validation.haml index c54b402b..3a77c05c 100644 --- a/source/en/mongoid/v3/validation.haml +++ b/source/en/mongoid/v3/validation.haml @@ -10,7 +10,7 @@ validation plus an additional associated and uniqueness validator. %p - See #{link_to "ActiveModel::Validations", "http://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations.rb"} documentation for more information. + See #{link_to "ActiveModel::Validations", "https://github.com/rails/rails/blob/master/activemodel/lib/active_model/validations.rb"} documentation for more information. .well %table diff --git a/source/en/moped/docs/driver.haml b/source/en/moped/docs/driver.haml index fb205326..c4b28e7e 100644 --- a/source/en/moped/docs/driver.haml +++ b/source/en/moped/docs/driver.haml @@ -48,7 +48,7 @@ %p The following is a table of the most common session API usage. For a complete reference please see the - API docs. + API docs. %table.table.table-bordered.table-striped %thead @@ -166,7 +166,7 @@ %p The following is a table of the most common collection API usage. For a complete reference please see the - API docs. + API docs. %table.table.table-bordered.table-striped %thead @@ -238,7 +238,7 @@ %p The following is a table of the most common indexes API usage. For a complete reference please see the - API docs. + API docs. %table.table.table-bordered.table-striped %thead @@ -318,7 +318,7 @@ %p The following is a table of the most common query API usage. For a complete reference please see the - API docs. + API docs. %table.table.table-bordered.table-striped %thead @@ -464,7 +464,7 @@ %p Moped::Protocol is the namespace for Moped's implementation - of the + of the Mongo Wire Protocol. Its public API consists of classes representing each type of message in the protocol: Delete, GetMore, Insert, KillCursors, Query, @@ -473,7 +473,7 @@ %p You should never have to worry about protocol objects, but more details can - be found in the + be found in the API docs if you're interested. %section#errors diff --git a/source/en/moped/index.haml b/source/en/moped/index.haml index 1093ae2c..85b74b88 100644 --- a/source/en/moped/index.haml +++ b/source/en/moped/index.haml @@ -9,8 +9,8 @@ %p Moped is composed of three parts: an implementation of the - BSON specification, an implementation of the - + BSON specification, an implementation of the + Mongo Wire Protocol, and the driver itself. %h2 Sample Syntax diff --git a/source/en/moped/links.haml b/source/en/moped/links.haml index bb44b1f3..6f122fe0 100644 --- a/source/en/moped/links.haml +++ b/source/en/moped/links.haml @@ -4,21 +4,21 @@ %h1 Links .link-button - = link_to "http://github.com/mongoid/moped", rel: "tooltip", title: "Moped on Github." do + = link_to "https://github.com/mongoid/moped", rel: "tooltip", title: "Moped on Github." do = image_tag "/images/dojocat.png" .link-button - = link_to "http://twitter.com/bjschaefer", rel: "tooltip", title: "Bernerd (@bjschaefer) on Twitter." do + = link_to "https://twitter.com/bjschaefer", rel: "tooltip", title: "Bernerd (@bjschaefer) on Twitter." do = image_tag "/images/twitter.png" .link-button - = link_to "http://mongohq.com", rel: "tooltip", title: "MongoHQ provides Moped with databases for testing." do + = link_to "https://mongohq.com", rel: "tooltip", title: "MongoHQ provides Moped with databases for testing." do = image_tag "/images/mongohq.png" .link-button - = link_to "http://travis-ci.org/#!/mongoid/moped", rel: "tooltip", title: "Moped's continuous integration on TravisCI." do + = link_to "https://travis-ci.org/#!/mongoid/moped", rel: "tooltip", title: "Moped's continuous integration on TravisCI." do = image_tag "/images/travis.png" .link-button - = link_to "http://rdoc.info/github/mongoid/moped/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do + = link_to "https://rdoc.info/github/mongoid/moped/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do = image_tag "/images/rdoc.png" diff --git a/source/en/origin/docs/selection.haml b/source/en/origin/docs/selection.haml index 1c245ba2..9aa27efa 100644 --- a/source/en/origin/docs/selection.haml +++ b/source/en/origin/docs/selection.haml @@ -371,7 +371,7 @@ %i Add $type selection. Matches documents who's field is of the provided BSON type. See - BSON Types + BSON Types for a complete list. %td :coderay @@ -488,7 +488,7 @@ %p Note that $not clauses can only be applied to other operators. See the official - $not documentation for more information. + $not documentation for more information. :coderay #!ruby @@ -739,7 +739,7 @@ %i Add $type selection. Matches documents who's field is of the provided BSON type. See - BSON Types + BSON Types for a complete list. %td :coderay diff --git a/source/en/origin/links.haml b/source/en/origin/links.haml index a9320441..8457b3e0 100644 --- a/source/en/origin/links.haml +++ b/source/en/origin/links.haml @@ -4,13 +4,13 @@ %h1 Links .link-button - = link_to "http://github.com/mongoid/origin", rel: "tooltip", title: "Origin on Github." do + = link_to "https://github.com/mongoid/origin", rel: "tooltip", title: "Origin on Github." do = image_tag "/images/dojocat.png" .link-button - = link_to "http://travis-ci.org/#!/mongoid/origin", rel: "tooltip", title: "Origin's continuous integration on TravisCI." do + = link_to "https://travis-ci.org/#!/mongoid/origin", rel: "tooltip", title: "Origin's continuous integration on TravisCI." do = image_tag "/images/travis.png" .link-button - = link_to "http://rdoc.info/github/mongoid/origin/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do + = link_to "https://rdoc.info/github/mongoid/origin/master/frames", rel: "tooltip", title: "API documentation on rdoc.info" do = image_tag "/images/rdoc.png" diff --git a/source/en/partials/_header.haml b/source/en/partials/_header.haml index 2b1d6a49..cd350ad0 100644 --- a/source/en/partials/_header.haml +++ b/source/en/partials/_header.haml @@ -1,5 +1,5 @@ /[if lt IE 9] - %script(src="http://html5shiv.googlecode.com/svn/trunk/html5.js") + %script(src="https://html5shiv.googlecode.com/svn/trunk/html5.js") %meta{:name => "viewport", :content => "width=device-width, initial-scale=1.0, maximum-scale=1.0"} = stylesheet_link_tag "bootstrap.min.css" = stylesheet_link_tag "bootstrap-responsive.min.css"