Skip to content

Commit 32d2395

Browse files
author
vrana
committed
Unify links to www.phabricator.com and phabricator.com
Test Plan: scripts/sql/upgrade_schema.php Verify links at /directory/2/. Reviewers: epriestley Reviewed By: epriestley CC: aran Maniphest Tasks: T1096 Differential Revision: https://secure.phabricator.com/D2172
1 parent a5903d2 commit 32d2395

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
UPDATE phabricator_directory.directory_item SET
2+
href = REPLACE(href, 'http://phabricator.com/', 'http://www.phabricator.com/')
3+
WHERE href LIKE 'http://phabricator.com/%';

scripts/install/install_rhel-derivs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ echo
139139
echo
140140
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
141141
echo
142-
echo " http://phabricator.com/docs/phabricator/article/Configuration_Guide.html";
142+
echo " http://www.phabricator.com/docs/phabricator/article/Configuration_Guide.html";

scripts/install/install_ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ echo
8484
echo
8585
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
8686
echo
87-
echo " http://phabricator.com/docs/phabricator/article/Configuration_Guide.html";
87+
echo " http://www.phabricator.com/docs/phabricator/article/Configuration_Guide.html";
8888
echo
8989
echo "You can delete any php5-* stuff that's left over in this directory if you want.";

src/docs/installation_guide.diviner

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ If you are installing on Ubuntu or an RedHat derivative, there are install
3131
scripts available which should handle most of the things discussed in this
3232
document for you:
3333

34-
- **RedHat Derivatives**: <http://phabricator.com/rsrc/install/install_rhel-derivs.sh>
35-
- **Ubuntu**: <http://phabricator.com/rsrc/install/install_ubuntu.sh>
34+
- **RedHat Derivatives**: <http://www.phabricator.com/rsrc/install/install_rhel-derivs.sh>
35+
- **Ubuntu**: <http://www.phabricator.com/rsrc/install/install_ubuntu.sh>
3636

3737
If those work for you, you can skip directly to the
3838
@{article:Configuration Guide}. These scripts are also available in the
@@ -121,7 +121,7 @@ See <https://bugs.php.net/bug.php?id=59747> for more information.
121121
Since Phabricator is under active development, you should update frequently.
122122
You can use a script similar to this one to automate the process:
123123

124-
http://phabricator.com/rsrc/install/update_phabricator.sh
124+
http://www.phabricator.com/rsrc/install/update_phabricator.sh
125125

126126
= Next Steps =
127127

src/infrastructure/env/PhabricatorEnv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static function getAllConfigKeys() {
100100
}
101101

102102
public static function getDoclink($resource) {
103-
return 'http://phabricator.com/docs/phabricator/'.$resource;
103+
return 'http://www.phabricator.com/docs/phabricator/'.$resource;
104104
}
105105

106106

src/infrastructure/setup/PhabricatorSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ public static function writeHeader($header) {
828828
public static function writeDoc($doc) {
829829
self::write(
830830
"\n".
831-
' http://phabricator.com/docs/phabricator/'.$doc.
831+
' http://www.phabricator.com/docs/phabricator/'.$doc.
832832
"\n\n");
833833
}
834834

0 commit comments

Comments
 (0)