Skip to content

Commit

Permalink
Updating docs links to point to support.ghost.org
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisDS committed Aug 10, 2014
1 parent e5771b0 commit 988ca12
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ repository to allow you to checkout pull requests in the same way as branches:
<a name="documentation"></a>
### Documentation

Ghost's main documentation can be found at [docs.ghost.org](http://docs.ghost.org).
Ghost's documentation can be found at [support.ghost.org](http://support.ghost.org).

The documentation is generated using jekyll, all of the docs are on the gh-pages branch on the GitHub repository.
You can clone the repo, checkout the gh-pages branch, and submit pull requests following
Expand Down Expand Up @@ -228,7 +228,7 @@ or more of the following:
- **[master](https://github.com/TryGhost/Ghost)** is the bleeding edge development branch. All work on the next
release is here. Do **NOT** use this branch for a production site.
- **[stable](https://github.com/TryGhost/Ghost/tree/stable)** contains the latest release of Ghost. This branch may be used in production.
- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) documentation for Getting Started with Ghost.
- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) our developer documentation.


## Grunt Toolkit
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Ghost is a free, open, simple blogging platform that's available to anyone who wants to use it. Lovingly created and maintained by [John O'Nolan](http://twitter.com/JohnONolan) + [Hannah Wolfe](http://twitter.com/ErisDS) + an amazing group of [contributors](https://github.com/TryGhost/Ghost/contributors).

Visit the project's website at <http://ghost.org> &bull; docs on <http://docs.ghost.org>.
Visit the project's website at <http://ghost.org> &bull; docs on <http://support.ghost.org>.

## Getting Involved

Expand All @@ -18,7 +18,7 @@ There are **two** main ways to get started with Ghost, take care to use the meth

If you just want to get a Ghost blog running in the fastest time possible, this method is for you.

For detailed instructions for various platforms visit the [Ghost Installation Guide](http://docs.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).
For detailed instructions for various platforms visit the [Ghost Installation Guide](http://support.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).

1. Install [Node.js](http://nodejs.org) - Ghost requires **Node v0.10.x**
1. Download the latest Ghost package from [Ghost.org](http://ghost.org/download).
Expand All @@ -29,7 +29,7 @@ For detailed instructions for various platforms visit the [Ghost Installation Gu
1. To start ghost, run `npm start`
1. Visit `http://localhost:2368/` in your web browser or go to `http://localhost:2368/ghost` to log in

Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.



Expand All @@ -50,13 +50,13 @@ Please do **NOT** use the master branch of Ghost in production. If you are using

Full instructions & troubleshooting tips can be found in the [Contributing Guide](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md) under the heading "[Working on Ghost Core](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md#working-on-ghost-core)".

Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.

If you want to use [Ghost as a NPM module there is a Wiki entry](https://github.com/TryGhost/Ghost/wiki/Using-Ghost-as-an-NPM-module) where you can find instructions on how to get set up.

### Upgrading to The Latest Version

Upgrade instructions are in the [Ghost Guide](http://docs.ghost.org/installation/upgrading/)
Upgrade instructions can be found on the [Ghost Support Site](http://support.ghost.org/how-to-upgrade/)

### Logging in For The First Time

Expand Down
4 changes: 2 additions & 2 deletions config.example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// # Ghost Configuration
// Setup your Ghost install for various environments
// Documentation can be found at http://docs.ghost.org/usage/configuration/
// Documentation can be found at http://support.ghost.org/config/

var path = require('path'),
config;
Expand All @@ -12,7 +12,7 @@ config = {
url: 'http://my-ghost-blog.com',

// Example mail config
// Visit http://docs.ghost.org/mail for instructions
// Visit http://support.ghost.org/mail for instructions
// ```
// mail: {
// transport: 'SMTP',
Expand Down
2 changes: 1 addition & 1 deletion core/server/api/authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ authentication = {
errors.logError(
error.message,
"Unable to send welcome email, your blog will continue to function.",
"Please see http://docs.ghost.org/mail/ for instructions on configuring email."
"Please see http://support.ghost.org/mail/ for instructions on configuring email."
);
});

Expand Down
6 changes: 3 additions & 3 deletions core/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function doFirstRun() {

'Your URL is set to',
'<strong>' + config.url + '</strong>.',
'See <a href="http://docs.ghost.org/">http://docs.ghost.org</a> for instructions.'
'See <a href="http://support.ghost.org/">http://support.ghost.org</a> for instructions.'
];

return api.notifications.add({ notifications: [{
Expand Down Expand Up @@ -175,7 +175,7 @@ function initNotifications() {
message: [
"Ghost is attempting to use your server's <b>sendmail</b> to send e-mail.",
"It is recommended that you explicitly configure an e-mail service,",
"See <a href=\"http://docs.ghost.org/mail\">http://docs.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}
Expand All @@ -184,7 +184,7 @@ function initNotifications() {
type: 'warn',
message: [
"Ghost is currently unable to send e-mail.",
"See <a href=\"http://docs.ghost.org/mail\">http://docs.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}
Expand Down

0 comments on commit 988ca12

Please sign in to comment.