]> git.openstreetmap.org Git - nominatim.git/commitdiff
github.com/twain47 => github.com/openstreetmap
authormarc tobias <mtm@opencagedata.com>
Sun, 12 Mar 2017 12:06:25 +0000 (13:06 +0100)
committermarc tobias <mtm@opencagedata.com>
Sun, 12 Mar 2017 12:06:25 +0000 (13:06 +0100)
README.md
VAGRANT.md
docs/Import_and_update.md
docs/install-on-centos-7.md
docs/install-on-ubuntu-16.md
lib/init-website.php
lib/template/includes/report-errors.php
vagrant/install-on-centos-7.sh
vagrant/install-on-travis-ci.sh
vagrant/install-on-ubuntu-16.sh

index 73c62a20a384a1be5307fe4d4b760d91f9483bc0..70ef579354e75196b9ea2df86c78ffa2cacf54d7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -56,4 +56,4 @@ For questions you can join the geocoding mailinglist, see
 http://lists.openstreetmap.org/listinfo/geocoding
 
 Bugs may be reported on the github project site:
-https://github.com/twain47/Nominatim
+https://github.com/openstreetmap/Nominatim
index 6a680b5347431124c80010972971da5afcbb2945..56a634325691a1e76bf8edc4bece91aa1b95d6c5 100644 (file)
@@ -17,7 +17,7 @@ is.
 
 3. Nominatim 
 
-        git clone --recursive https://github.com/twain47/Nominatim.git
+        git clone --recursive https://github.com/openstreetmap/Nominatim.git
 
     If you haven't used `--recursive`, then you can load the submodules using
     
index 8340b59e1fb378276aaa88576cc749a491bda34f..0e58b0f4301011e8f969fedac1ef59973417b476 100644 (file)
@@ -178,5 +178,5 @@ The following command will keep your database constantly up to date:
 
 If you have imported multiple country extracts and want to keep them
 up-to-date, have a look at the script in
-[issue #60](https://github.com/twain47/Nominatim/issues/60).
+[issue #60](https://github.com/openstreetmap/Nominatim/issues/60).
 
index 3a563541d2396046dd606e3c6f72c0976ebf4a65..037f41beb536d8f9eb3977379e937868c682ede6 100644 (file)
@@ -141,7 +141,7 @@ Get the source code from Github and change into the source directory
 
 
     cd $USERHOME
-    git clone --recursive git://github.com/twain47/Nominatim.git
+    git clone --recursive git://github.com/openstreetmap/Nominatim.git
     cd Nominatim
 
 
index 8ddad65e8e7494427a3369fd609ee3e747c724e3..b03685cf2303e3efddb50e95bdb678596f511f10 100644 (file)
@@ -127,7 +127,7 @@ Get the source code from Github and change into the source directory
 
 
     cd $USERHOME
-    git clone --recursive git://github.com/twain47/Nominatim.git
+    git clone --recursive git://github.com/openstreetmap/Nominatim.git
     cd Nominatim
 
 
index 967c6cce7c4ea7b2dcca0da0a38badef5fc6f3dc..7d5cef1a8f61fc129137ad9f7442f0095cee9010 100644 (file)
@@ -27,7 +27,7 @@ function chksql($oSql, $sMsg = "Database request failed")
     <p>Nominatim has encountered an internal error while accessing the database.
        This may happen because the database is broken or because of a bug in
        the software. If you think it is a bug, feel free to report
-       it over on <a href="https://github.com/twain47/Nominatim/issues">
+       it over on <a href="https://github.com/openstreetmap/Nominatim/issues">
        Github</a>. Please include the URL that caused the problem and the
        complete error details below.</p>
     <p><b>Message:</b> $sMsg</p>
@@ -52,7 +52,7 @@ function failInternalError($sError, $sSQL = false, $vDumpVar = false)
     echo "<html><body><h1>Internal Server Error</h1>";
     echo '<p>Nominatim has encountered an internal error while processing your request. This is most likely because of a bug in the software.</p>';
     echo "<p><b>Details:</b> ".$sError,"</p>";
-    echo '<p>Feel free to file an issue on <a href="https://github.com/twain47/Nominatim/issues">Github</a>. ';
+    echo '<p>Feel free to file an issue on <a href="https://github.com/openstreetmap/Nominatim/issues">Github</a>. ';
     echo 'Please include the error message above and the URL you used.</p>';
     if (CONST_Debug) {
         echo "<hr><h2>Debugging Information</h2><br>";
@@ -77,7 +77,7 @@ function userError($sError)
     echo "<html><body><h1>Bad Request</h1>";
     echo '<p>Nominatim has encountered an error with your request.</p>';
     echo "<p><b>Details:</b> ".$sError."</p>";
-    echo '<p>If you feel this error is incorrect feel file an issue on <a href="https://github.com/twain47/Nominatim/issues">Github</a>. ';
+    echo '<p>If you feel this error is incorrect feel file an issue on <a href="https://github.com/openstreetmap/Nominatim/issues">Github</a>. ';
     echo 'Please include the error message above and the URL you used.</p>';
     echo "\n</body></html>\n";
     exit;
index a6a9be62a1afadac5e778ed586fc6bbcbd2d0877..5d0ac9049b730340573a809ecff491cdd868b2e8 100644 (file)
@@ -7,7 +7,7 @@
     to check how the address was generated before reporting a problem.
 </p>
 <p>
-    Use <a target="_blank" href="https://github.com/twain47/nominatim/issues">Nominatim issues on github</a>
+    Use <a target="_blank" href="https://github.com/openstreetmap/nominatim/issues">Nominatim issues on github</a>
     to report problems.
 <!-- You can search for existing bug reports
     <a href="http://trac.openstreetmap.org/query?status=new&amp;status=assigned&amp;status=reopened&amp;component=nominatim&amp;order=priority">here</a>.</p>
index fd50bc52f531eade29083c2d9dc1c974003e9039..62e718e5d8c9c9074938c392e8ec04d43070d566 100755 (executable)
@@ -144,7 +144,7 @@ sudo sed -i 's:#.*::' /etc/httpd/conf.d/nominatim.conf #DOCS:
 if [ "x$1" == "xyes" ]; then  #DOCS:
 
     cd $USERHOME
-    git clone --recursive git://github.com/twain47/Nominatim.git
+    git clone --recursive git://github.com/openstreetmap/Nominatim.git
 #DOCS:    cd Nominatim
 
 else                               #DOCS:
index 30e94b450ae84b9b7beb046bf4455717c2ab3ed0..4e90e2eb8566230cb83263bc60b22df096104418 100755 (executable)
@@ -4,7 +4,7 @@
 # https://docs.travis-ci.com/user/trusty-ci-environment/
 # Ubuntu 14 (trusty)
 # user 'travis'
-# $TRAVIS_BUILD_DIR is /home/travis/build/twain47/Nominatim/, for others see
+# $TRAVIS_BUILD_DIR is /home/travis/build/openstreetmap/Nominatim/, for others see
 #   https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables
 # Postgres 9.6 installed and started. role 'travis' already superuser
 # Python 3.6
index 81a8a92620162e5be2f833ac671f7e56378da69e..87cf185548aa75d6b1e26b7ceede8d5033a1c0ed 100755 (executable)
@@ -131,7 +131,7 @@ sudo sed -i 's:#.*::' /etc/apache2/conf-available/nominatim.conf #DOCS:
 if [ "x$1" == "xyes" ]; then  #DOCS:
 
     cd $USERHOME
-    git clone --recursive git://github.com/twain47/Nominatim.git
+    git clone --recursive git://github.com/openstreetmap/Nominatim.git
 #DOCS:    cd Nominatim
 
 else                               #DOCS: