Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
Update GitHub URLs for org change and repo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed Oct 23, 2015
1 parent 2e4b7e5 commit 7693177
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -18,7 +18,7 @@ find it hard for other libraries like `Doctrine MongoDB's ODM`_ will not work
with the new drivers.

.. _`Doctrine MongoDB's ODM`: http://doctrine-mongodb-odm.readthedocs.org/en/latest/
.. _`MongoDB Library`: http://mongodb-labs.github.io/mongo-php-library-prototype/
.. _`MongoDB Library`: http://mongodb.github.io/mongo-php-library/

Building
--------
Expand Down
2 changes: 1 addition & 1 deletion scripts/make-release.sh
Expand Up @@ -5,7 +5,7 @@ version=$1
rm -rf /tmp/hhvm-build
mkdir -p /tmp/hhvm-build
cd /tmp/hhvm-build
git clone git@github.com:mongodb-labs/mongo-hhvm-driver-prototype.git hhvm-mongodb-${version}
git clone git@github.com:mongodb/mongo-hhvm-driver.git hhvm-mongodb-${version}
cd hhvm-mongodb-${version}
git checkout "$version"
git submodule init
Expand Down
12 changes: 6 additions & 6 deletions tutorial.rst
Expand Up @@ -109,7 +109,7 @@ server. To install and register the driver with HHVM, you need to take the
following steps:

- Download the latest driver from
https://github.com/mongodb-labs/mongo-hhvm-driver-prototype/releases. At
https://github.com/mongodb/mongo-hhvm-driver/releases. At
the moment, there is only `hhvm-mongodb-1.0beta1.tgz`_ so we will be using
this one in the examples.
- Unpack the archive: ``tar -xvzf hhvm-mongodb-1.0beta1.tgz``
Expand Down Expand Up @@ -142,7 +142,7 @@ shell running HHVM, and then start it again as above::
-vServer.Type=fastcgi \
-vServer.FileSocket=/var/run/hhvm/sock

.. _`hhvm-mongodb-1.0beta1.tgz`: https://github.com/mongodb-labs/mongo-hhvm-driver-prototype/releases/download/1.0beta1/hhvm-mongodb-1.0beta1.tgz
.. _`hhvm-mongodb-1.0beta1.tgz`: https://github.com/mongodb/mongo-hhvm-driver/releases/download/1.0beta1/hhvm-mongodb-1.0beta1.tgz

In order to test that it works, we edit our ``index.php`` file, and replace
its contents with::
Expand Down Expand Up @@ -256,9 +256,9 @@ now properties of a ``stdClass`` object. You can find more information on how
serialisation and deserialisation between PHP variables and the BSON stored in
MongoDB in the `persistence`_ specification.

.. _documentation: http://mongodb-labs.github.io/mongo-php-library-prototype/api
.. _Database: http://mongodb-labs.github.io/mongo-php-library-prototype/api/class-MongoDB.Database.html
.. _documentation: http://mongodb.github.io/mongo-php-library/api
.. _Database: http://mongodb.github.io/mongo-php-library/api/class-MongoDB.Database.html
.. _CRUD: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
.. _Collection: http://mongodb-labs.github.io/mongo-php-library-prototype/api/class-MongoDB.Collection.html
.. _Collection: http://mongodb.github.io/mongo-php-library/api/class-MongoDB.Collection.html
.. _specification: https://github.com/mongodb/specifications/blob/master/source/crud/crud.rst
.. _persistence: https://github.com/mongodb-labs/mongo-hhvm-driver-prototype/blob/master/serialization.rst
.. _persistence: https://github.com/mongodb/mongo-hhvm-driver/blob/master/serialization.rst

0 comments on commit 7693177

Please sign in to comment.