Merge pull request #73 from gunbei/fix-typos-misspellings-duplicate-words

Fix typos, misspellings, duplicate words
This commit is contained in:
Elias Zeitfogel 2016-02-12 09:39:16 +01:00
commit 9f8b6bb448
25 changed files with 27 additions and 27 deletions

View File

@ -55,7 +55,7 @@ text:
* <i class="feature-circle fa fa-ship"></i> **Deploy Anywhere** Because Lektor * <i class="feature-circle fa fa-ship"></i> **Deploy Anywhere** Because Lektor
builds out 100% static HTML you can deploy them to any host (including S3, builds out 100% static HTML you can deploy them to any host (including S3,
github pages, any web host, etc.). GitHub Pages, any web host, etc.).
* <i class="feature-circle fa fa-globe"></i> **Cross Platform** It runs on * <i class="feature-circle fa fa-globe"></i> **Cross Platform** It runs on
Linux, OSX and Windows. Linux, OSX and Windows.
* <i class="feature-circle fa fa-file-code-o"></i> **100% File Based** All * <i class="feature-circle fa fa-file-code-o"></i> **100% File Based** All

View File

@ -6,7 +6,7 @@ type: operator
--- ---
body: body:
This evalutes to true if the left side compares larger than the right side This evaluates to true if the left side compares larger than the right side
or equal to it. This behavior works best with [integers or equal to it. This behavior works best with [integers
:ref](../../types/integer/) or [floats :ref](../../types/float/). :ref](../../types/integer/) or [floats :ref](../../types/float/).

View File

@ -6,7 +6,7 @@ type: operator
--- ---
body: body:
This evalutes to true if the left side compares larger than the right side. This evaluates to true if the left side compares larger than the right side.
This behavior works best with [integers :ref](../../types/integer/) This behavior works best with [integers :ref](../../types/integer/)
or [floats :ref](../../types/float/). or [floats :ref](../../types/float/).

View File

@ -6,7 +6,7 @@ type: operator
--- ---
body: body:
This evalutes to true if the left side compares smaller than the right side This evaluates to true if the left side compares smaller than the right side
or equal to it. This behavior works best with [integers or equal to it. This behavior works best with [integers
:ref](../../types/integer/) or [floats :ref](../../types/float/). :ref](../../types/integer/) or [floats :ref](../../types/float/).

View File

@ -6,7 +6,7 @@ type: operator
--- ---
body: body:
This evalutes to true if the left side compares smaller than the right side This evaluates to true if the left side compares smaller than the right side
or equal to it. This behavior works best with [integers or equal to it. This behavior works best with [integers
:ref](../../types/integer/) or [floats :ref](../../types/float/). :ref](../../types/integer/) or [floats :ref](../../types/float/).

View File

@ -7,7 +7,7 @@ type: operator
body: body:
This checks if the left side of the expression does not match the right side This checks if the left side of the expression does not match the right side
by doing a exact comparision: by doing an exact comparison:
## Example ## Example

View File

@ -14,7 +14,7 @@ check if a record is considered non-discoverable by Lektor or not. In
particular a hidden record is also considered undiscoverable. particular a hidden record is also considered undiscoverable.
Undiscoverable records can be queried and final pages will be built but they Undiscoverable records can be queried and final pages will be built but they
are excempt from queries of the record. This is useful for pages that should are exempt from queries of the record. This is useful for pages that should
be built but not show up yet on overview pages. For instance this can be used be built but not show up yet on overview pages. For instance this can be used
to implement drafts of blog posts or similar things. to implement drafts of blog posts or similar things.

View File

@ -9,7 +9,7 @@ signature: *fields
body: body:
This is a handy way to change the order of the items returned. The default This is a handy way to change the order of the items returned. The default
order is defined in the model config but can be overriden this way. The order is defined in the model config but can be overridden this way. The
method accepts an arbitrary number of strings, each of which refers to the method accepts an arbitrary number of strings, each of which refers to the
name of a field. If a string is prefixed with a minus sign (`-`) then the name of a field. If a string is prefixed with a minus sign (`-`) then the
order is reversed. order is reversed.

View File

@ -15,7 +15,7 @@ body:
The fields in [Records :ref](../record/) use types to specify the behavior of The fields in [Records :ref](../record/) use types to specify the behavior of
the values. Lektor comes with a wide range of [built-in field types the values. Lektor comes with a wide range of [built-in field types
:ref](../types/) but it is possible to build your own by subclassing types :ref](../types/) but it is possible to build your own by subclassing types
class. A type is instanciated with two parameters: a reference to the class. A type is instantiated with two parameters: a reference to the
[Environment :ref](../../environment/) that it belongs to and a dictionary [Environment :ref](../../environment/) that it belongs to and a dictionary
with configuration options from the ini file. with configuration options from the ini file.

View File

@ -7,7 +7,7 @@ summary: Loads the current config from the project file.
body: body:
Because the environment is reused between builds, the config is not cached Because the environment is reused between builds, the config is not cached
on the environment but needs to be expicitly loaded. This happens with on the environment but needs to be explicitly loaded. This happens with
the help of the `load_config` method. It returns a config object that the help of the `load_config` method. It returns a config object that
gives access to the settings in the project file. gives access to the settings in the project file.

View File

@ -23,7 +23,7 @@ unless they are explicitly passed to it.
The filename of the template is passed as `template` but is only available The filename of the template is passed as `template` but is only available
if the template was indeed loaded from the templates folder. There are many if the template was indeed loaded from the templates folder. There are many
more places where templates are rendered in in those cases the value will more places where templates are rendered in those cases the value will
not be provided. not be provided.
## Example ## Example

View File

@ -8,7 +8,7 @@ summary: Loads a project from a project file.
--- ---
body: body:
This is the most common way to create a project insteance. It's a class This is the most common way to create a project instance. It's a class
method that given the path to a project file will load the project. If method that given the path to a project file will load the project. If
the file does not exist then `None` is returned. the file does not exist then `None` is returned.

View File

@ -10,6 +10,6 @@ body:
This attribute holds the path to the folder where the build process put the This attribute holds the path to the folder where the build process put the
final artifacts. Usually a publisher walks that folder and does something final artifacts. Usually a publisher walks that folder and does something
with all contents of it. The publishers however are heavily encourated to with all contents of it. The publishers however are heavily encouraged to
ignore the special `.lektor` folder which contains lektor specific information ignore the special `.lektor` folder which contains lektor specific information
that should not end up on the resulting server. that should not end up on the resulting server.

View File

@ -9,7 +9,7 @@ summary: Formats the latitude and longitude into a string
body: body:
This formats a latitude and longitude tuple into a human readable string This formats a latitude and longitude tuple into a human readable string
in the format format degrees, minutes and seconds. See also [latformat in the format degrees, minutes and seconds. See also [latformat
:ref](../latformat/) and [longformat :ref](../longformat/). :ref](../latformat/) and [longformat :ref](../longformat/).
## Examples ## Examples

View File

@ -1,6 +1,6 @@
title: url_to title: url_to
--- ---
summary: Calculates the URL to a specific page realtive to the current. summary: Calculates the URL to a specific page relative to the current.
--- ---
type: function type: function
--- ---

View File

@ -2,7 +2,7 @@ comment: This file is auto generated by dump-cli-help.py
--- ---
title: reinstall title: reinstall
--- ---
summary: Reginstall all plugins. summary: Reinstall all plugins.
--- ---
type: cmdlet type: cmdlet
--- ---

View File

@ -78,5 +78,5 @@ targeted, different files will be used. This table visualizes this:
Alternatives have a special behavior with regards to paths. They alternative Alternatives have a special behavior with regards to paths. They alternative
code does not exist in the path! This can be confusing at first, but has the code does not exist in the path! This can be confusing at first, but has the
advantage that they automatically work in most places as the paths are the advantage that they automatically work in most places as the paths are the
same for differnent alternatives. For more information see same for different alternatives. For more information see
[Alternatives and Paths :ref](../paths/#alternatives-and-paths). [Alternatives and Paths :ref](../paths/#alternatives-and-paths).

View File

@ -96,7 +96,7 @@ Lektor by default will prefer relative URLs. This makes it possible to easily
host a website below a certain folder without having to do anything special to host a website below a certain folder without having to do anything special to
make this work. However there are some features which will require the use of make this work. However there are some features which will require the use of
an absolute or fully canonical (external) URL. For instance sitemaps or Atom an absolute or fully canonical (external) URL. For instance sitemaps or Atom
feeds do not work with realtive URLs. In this case the absolute URL path has feeds do not work with relative URLs. In this case the absolute URL path has
to be configured. to be configured.
You can pick the default for URL generation in the project configuration. You can pick the default for URL generation in the project configuration.

View File

@ -10,7 +10,7 @@ body:
FTP is a very old but well supported protocol. Lektor can publish through it FTP is a very old but well supported protocol. Lektor can publish through it
but to speed up the operation it has to make certain concessions. In but to speed up the operation it has to make certain concessions. In
particular it needs to maintain a “listing file” to remember the state of particular it needs to maintain a “listing file” to remember the state of
the files as FTP does not support any form of file comparisions. This means the files as FTP does not support any form of file comparisons. This means
that you cannot use Lektor in addition to another system to publish files that you cannot use Lektor in addition to another system to publish files
to your FTP server. It's an either/or thing. to your FTP server. It's an either/or thing.
@ -33,7 +33,7 @@ target = sftp://myuser:mypassword@ftp.example.com/var/www/example
FTP is considered a largely insecure protocol for Lektor. As such if you FTP is considered a largely insecure protocol for Lektor. As such if you
want to use it you should keep your project file save as credentials will want to use it you should keep your project file save as credentials will
be most likely embedded there. Alternatively you can set the credentails be most likely embedded there. Alternatively you can set the credentials
via the command line with the `--username` and `--password` option (or via the via the command line with the `--username` and `--password` option (or via the
environment variables `LEKTOR_DEPLOY_USERNAME` and `LEKTOR_DEPLOY_PASSWORD`) environment variables `LEKTOR_DEPLOY_USERNAME` and `LEKTOR_DEPLOY_PASSWORD`)
though this will mean that most likely deploys via the admin interface though this will mean that most likely deploys via the admin interface

View File

@ -1,6 +1,6 @@
title: GitHub Pages title: GitHub Pages
--- ---
summary: Deploys to github pages. summary: Deploys to GitHub Pages.
--- ---
body: body:
@ -60,7 +60,7 @@ the feature in the GitHub help center:
## 404 Pages ## 404 Pages
Per convenention the file named `404.html` is used as placeholder if a page Per convention the file named `404.html` is used as placeholder if a page
cannot be found. You can create such a page by creating a `404.html/contents.lr` cannot be found. You can create such a page by creating a `404.html/contents.lr`
file. file.

View File

@ -7,7 +7,7 @@ body:
`rsync://username@server/path/to/folder` `rsync://username@server/path/to/folder`
This deploys via SSH and rsync to a remote server. This is the recommended This deploys via SSH and rsync to a remote server. This is the recommended
way to deploy if the system supports it as it is a very fast and realiable way to deploy if the system supports it as it is a very fast and reliable
way. It uses the system's SSH config so for authentication just configure way. It uses the system's SSH config so for authentication just configure
SSH as you would normally do. The `username` part is optional and defaults SSH as you would normally do. The `username` part is optional and defaults
to the current user that is signed into the machine or whatever is picked up to the current user that is signed into the machine or whatever is picked up

View File

@ -76,7 +76,7 @@ keys are available:
* `enabled`: if set to `yes` pagination becomes enabled. It's off by * `enabled`: if set to `yes` pagination becomes enabled. It's off by
default. default.
* `per_page`: this controls how many children are are shown per page. If * `per_page`: this controls how many children are shown per page. If
pagination is enabled and this is not set, an implicit default of `20` pagination is enabled and this is not set, an implicit default of `20`
is assumed. is assumed.

View File

@ -23,7 +23,7 @@ Plugins can be added to a Lektor project in two different ways:
## Installing Plugins ## Installing Plugins
For completely automated plugin managment just open your project file in a For completely automated plugin management just open your project file in a
text editor and edit or extend the `[packages]` section. Just add a line text editor and edit or extend the `[packages]` section. Just add a line
for each plugin in the form `name = version`: for each plugin in the form `name = version`:

View File

@ -16,7 +16,7 @@
<h3>About This Blog</h3> <h3>About This Blog</h3>
<p> <p>
“The Transcript” is the blog about <a href="{{ '/'|url “The Transcript” is the blog about <a href="{{ '/'|url
}}">Lektor</a>, a new solution in static content managment. }}">Lektor</a>, a new solution in static content management.
<p> <p>
Subscribe for the latest news about Lektor as well as content Subscribe for the latest news about Lektor as well as content
management and web development. management and web development.

View File

@ -50,7 +50,7 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-sm-4 icon-bar"> <div class="col-sm-4 icon-bar">
<a href="https://github.com/lektor/lektor/" title="Lektor on Github" <a href="https://github.com/lektor/lektor/" title="Lektor on GitHub"
><i class="fa fa-github"></i></a> ><i class="fa fa-github"></i></a>
<a href="https://github.com/lektor/lektor/issues/" title="Report Issues for Lektor" <a href="https://github.com/lektor/lektor/issues/" title="Report Issues for Lektor"
><i class="fa fa-bug"></i></a> ><i class="fa fa-bug"></i></a>