1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-06 11:58:30 +01:00

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
This commit is contained in:
vrana 2012-04-09 14:23:10 -07:00
parent a5903d2a53
commit 32d2395a45
6 changed files with 10 additions and 7 deletions

View file

@ -0,0 +1,3 @@
UPDATE phabricator_directory.directory_item SET
href = REPLACE(href, 'http://phabricator.com/', 'http://www.phabricator.com/')
WHERE href LIKE 'http://phabricator.com/%';

View file

@ -139,4 +139,4 @@ echo
echo echo
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':"; echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
echo echo
echo " http://phabricator.com/docs/phabricator/article/Configuration_Guide.html"; echo " http://www.phabricator.com/docs/phabricator/article/Configuration_Guide.html";

View file

@ -84,6 +84,6 @@ echo
echo echo
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':"; echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
echo echo
echo " http://phabricator.com/docs/phabricator/article/Configuration_Guide.html"; echo " http://www.phabricator.com/docs/phabricator/article/Configuration_Guide.html";
echo echo
echo "You can delete any php5-* stuff that's left over in this directory if you want."; echo "You can delete any php5-* stuff that's left over in this directory if you want.";

View file

@ -31,8 +31,8 @@ If you are installing on Ubuntu or an RedHat derivative, there are install
scripts available which should handle most of the things discussed in this scripts available which should handle most of the things discussed in this
document for you: document for you:
- **RedHat Derivatives**: <http://phabricator.com/rsrc/install/install_rhel-derivs.sh> - **RedHat Derivatives**: <http://www.phabricator.com/rsrc/install/install_rhel-derivs.sh>
- **Ubuntu**: <http://phabricator.com/rsrc/install/install_ubuntu.sh> - **Ubuntu**: <http://www.phabricator.com/rsrc/install/install_ubuntu.sh>
If those work for you, you can skip directly to the If those work for you, you can skip directly to the
@{article:Configuration Guide}. These scripts are also available in the @{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.
Since Phabricator is under active development, you should update frequently. Since Phabricator is under active development, you should update frequently.
You can use a script similar to this one to automate the process: You can use a script similar to this one to automate the process:
http://phabricator.com/rsrc/install/update_phabricator.sh http://www.phabricator.com/rsrc/install/update_phabricator.sh
= Next Steps = = Next Steps =

View file

@ -100,7 +100,7 @@ final class PhabricatorEnv {
} }
public static function getDoclink($resource) { public static function getDoclink($resource) {
return 'http://phabricator.com/docs/phabricator/'.$resource; return 'http://www.phabricator.com/docs/phabricator/'.$resource;
} }

View file

@ -828,7 +828,7 @@ final class PhabricatorSetup {
public static function writeDoc($doc) { public static function writeDoc($doc) {
self::write( self::write(
"\n". "\n".
' http://phabricator.com/docs/phabricator/'.$doc. ' http://www.phabricator.com/docs/phabricator/'.$doc.
"\n\n"); "\n\n");
} }