Skip to content

Commit

Permalink
Merge pull request #2942 from JohnONolan/support-dot-ghost
Browse files Browse the repository at this point in the history
Convert support links from forum to new support site
  • Loading branch information
sebgie committed Jun 12, 2014
2 parents 75c4929 + ec05677 commit e3c4d23
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 forum](http://ghost.org/forum/).
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/).

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 Down
2 changes: 1 addition & 1 deletion core/client/templates/-navbar.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{{#gh-popover tagName="ul" classNames="overlay" name="user-menu" closeOnClick="true"}}
<li class="usermenu-profile">{{#link-to "settings.user"}}Your Profile{{/link-to}}</li>
<li class="divider"></li>
<li class="usermenu-help"><a href="http://ghost.org/forum/">Help / Support</a></li>
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
<li class="divider"></li>
<li class="usermenu-signout">{{#link-to 'signout'}}Sign Out{{/link-to}}</li>
{{/gh-popover}}
Expand Down
2 changes: 1 addition & 1 deletion core/server/views/partials/navbar.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<ul class="overlay">
<li class="usermenu-profile"><a href="{{admin_url}}/settings/user/">Your Profile</a></li>
<li class="divider"></li>
<li class="usermenu-help"><a href="http://ghost.org/forum/">Help / Support</a></li>
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
<li class="divider"></li>
<li class="usermenu-signout"><a href="{{admin_url}}/signout/">Sign Out</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion core/test/functional/admin/content_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ CasperTest.begin('Admin navigation bar is correct', 28, function suite(test) {

test.assertExists('#usermenu li.usermenu-help a', 'Help menu item exists');
test.assertSelectorHasText('#usermenu li.usermenu-help a', 'Help / Support', 'Help menu item has correct text');
test.assertEquals(this.getElementAttribute('li.usermenu-help a', 'href'), 'http://ghost.org/forum/', 'Help href is correct');
test.assertEquals(this.getElementAttribute('li.usermenu-help a', 'href'), 'http://support.ghost.org/', 'Help href is correct');

test.assertExists('#usermenu li.usermenu-signout a', 'Sign Out menu item exists');
test.assertSelectorHasText('#usermenu li.usermenu-signout a', 'Sign Out', 'Sign Out menu item has correct text');
Expand Down
2 changes: 1 addition & 1 deletion core/test/functional/admin/editor_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ CasperTest.begin('Admin navigation bar is correct', 28, function suite(test) {

test.assertExists('#usermenu li.usermenu-help a', 'Help menu item exists');
test.assertSelectorHasText('#usermenu li.usermenu-help a', 'Help / Support', 'Help menu item has correct text');
test.assertEquals(this.getElementAttribute('#usermenu li.usermenu-help a', 'href'), 'http://ghost.org/forum/', 'Help href is correct');
test.assertEquals(this.getElementAttribute('#usermenu li.usermenu-help a', 'href'), 'http://support.ghost.org/', 'Help href is correct');

test.assertExists('#usermenu li.usermenu-signout a', 'Sign Out menu item exists');
test.assertSelectorHasText('#usermenu li.usermenu-signout a', 'Sign Out', 'Sign Out menu item has correct text');
Expand Down
2 changes: 1 addition & 1 deletion core/test/functional/admin/settings_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ CasperTest.begin('Admin navigation bar is correct', 28, function suite(test) {

test.assertExists('#usermenu li.usermenu-help a', 'Help menu item exists');
test.assertSelectorHasText('#usermenu li.usermenu-help a', 'Help / Support', 'Help menu item has correct text');
test.assertEquals(this.getElementAttribute('#usermenu li.usermenu-help a', 'href'), 'http://ghost.org/forum/',
test.assertEquals(this.getElementAttribute('#usermenu li.usermenu-help a', 'href'), 'http://support.ghost.org/',
'Help href is correct');

test.assertExists('#usermenu li.usermenu-signout a', 'Sign Out menu item exists');
Expand Down

0 comments on commit e3c4d23

Please sign in to comment.