Skip to content

Commit dd001ed

Browse files
committed
Update docs with latest reference urls
1 parent 450851d commit dd001ed

File tree

10 files changed

+23
-29
lines changed

10 files changed

+23
-29
lines changed

README.rst

+2-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ Documentation on http://django-mongodb-engine.readthedocs.org/
77
Map/Reduce and GridFS), admin site, authentication, site, session and caching
88
frameworks with MongoDB.*
99

10-
:1.3 branch:
11-
.. image:: https://secure.travis-ci.org/django-nonrel/mongodb-engine.png?branch=mongodb-engine-1.3
12-
:target: https://travis-ci.org/django-nonrel/mongodb-engine
13-
:1.4 branch:
14-
.. image:: https://secure.travis-ci.org/django-nonrel/mongodb-engine.png?branch=mongodb-engine-1.4-beta
15-
:target: https://travis-ci.org/django-nonrel/mongodb-engine
16-
:1.5 branch:
17-
.. image:: https://secure.travis-ci.org/django-nonrel/mongodb-engine.png?branch=mongodb-engine-1.5-beta
10+
:master branch:
11+
.. image:: https://secure.travis-ci.org/django-nonrel/mongodb-engine.png?branch=master
1812
:target: https://travis-ci.org/django-nonrel/mongodb-engine
1913

2014

django_mongodb_engine/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__author__ = "Flavio Percoco Premoli, Alberto Paro, " + \
66
"Jonas Haag and contributors"
77
__contact__ = "[email protected]"
8-
__homepage__ = "https://django-mongodb.org"
8+
__homepage__ = "https://django-nonrel.org"
99
__docformat__ = "restructuredtext"
1010

1111

docs/source/topics/aggregations.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ big data sets.
2323
(i.e. in your views or business logic) but regard them as a powerful tool for
2424
one-time operations.
2525

26-
.. _group: http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group
27-
.. __: http://docs.djangoproject.com/en/dev/topics/db/aggregation/
26+
.. _group: http://docs.mongodb.org/manual/reference/command/group/#dbcmd.group
27+
.. __: https://docs.djangoproject.com/en/dev/topics/db/aggregation/

docs/source/topics/atomic-updates.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ is translated to::
2121

2222
.update(..., {'$inc': {'visits': 1}})
2323

24-
.. _updates: https://docs.djangoproject.com/en/1.3/topics/db/queries/#updating-multiple-objects-at-once
24+
.. _updates: https://docs.djangoproject.com/en/dev/topics/db/queries/#updating-multiple-objects-at-once
2525
.. _F(): https://docs.djangoproject.com/en/dev/topics/db/queries/#filters-can-reference-fields-on-the-model

docs/source/topics/cache.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ cache backend name, use ``"django_mongodb_cache.MongoDBCache"`` as ``BACKEND``::
4949
Django MongoDB Cache will also honor all optional settings the default database
5050
cache backend takes care of (``TIMEOUT``, ``OPTIONS``, etc).
5151

52-
.. _Django's caching framework: http://docs.djangoproject.com/en/dev/topics/cache/
52+
.. _Django's caching framework: https://docs.djangoproject.com/en/dev/topics/cache/
5353
.. _Django MongoDB Cache: https://github.com/django-nonrel/mongodb-cache
54-
.. _Django db cache setup docs: http://docs.djangoproject.com/en/dev/topics/cache/#database-caching
54+
.. _Django db cache setup docs: https://docs.djangoproject.com/en/dev/topics/cache/#database-caching

docs/source/topics/embedded-models.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ your data records. If you want to use them anyway, here's how you'd do it::
125125
stuff=[FooModel(foo=42), BarModel(bar='spam')]
126126
)
127127

128-
.. _MongoDB's subobjects: http://www.mongodb.org/display/DOCS/Dot+Notation+(Reaching+into+Objects)
129-
.. _generic relations: http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/
128+
.. _MongoDB's subobjects: http://docs.mongodb.org/manual/core/data-model-design/
129+
.. _generic relations: https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/

docs/source/topics/gridfs.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ database. ::
7373
>>> samedoc.blob
7474
<GridOut object at 0xfoobar>
7575

76-
.. _GridFS: http://www.mongodb.org/display/DOCS/GridFS
77-
.. _Django storage: http://docs.djangoproject.com/en/dev/topics/files/#file-storage
76+
.. _GridFS: http://docs.mongodb.org/manual/core/gridfs/
77+
.. _Django storage: https://docs.djangoproject.com/en/dev/topics/files/#file-storage

docs/source/topics/lowerlevel.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,6 @@ command, you could use code similar to this::
127127
eggs_collection = database_wrapper.get_collection('eggs')
128128
eggs_collection.find_and_modify(...)
129129

130-
.. _PyMongo: http://api.mongodb.org/python/current
131-
.. _Geo querying: http://www.mongodb.org/display/DOCS/Geospatial+Indexing
132-
.. _F: http://docs.djangoproject.com/en/dev/topics/db/queries/#query-expressions
130+
.. _PyMongo: http://api.mongodb.org/python/current/
131+
.. _Geo querying: http://docs.mongodb.org/manual/core/geospatial-indexes/
132+
.. _F: https://docs.djangoproject.com/en/dev/topics/db/queries/#query-expressions

docs/source/topics/mapreduce.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ use Django MongoDB Engine's Map/Reduce API.
143143
:end-before: """
144144

145145

146-
.. _MongoDB's Map/Reduce functionality: http://www.mongodb.org/display/DOCS/MapReduce
146+
.. _MongoDB's Map/Reduce functionality: http://docs.mongodb.org/manual/core/map-reduce/

docs/source/topics/setup.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Installation
77
------------
88
Django MongoDB Engine depends on
99

10-
* Django-nonrel_, a fork of Django 1.3 that adds support for non-relational databases
10+
* Django-nonrel_, a fork of Django that adds support for non-relational databases
1111
* djangotoolbox_, a bunch of utilities for non-relational Django applications and backends
1212

1313
It's highly recommended (although not required) to use a virtualenv_ for your
@@ -31,13 +31,13 @@ Django-nonrel
3131
.............
3232
::
3333

34-
pip install hg+https://bitbucket.org/wkornewald/django-nonrel
34+
pip install git+https://github.com/django-nonrel/[email protected]
3535

3636
djangotoolbox
3737
.............
3838
::
3939

40-
pip install hg+https://bitbucket.org/wkornewald/djangotoolbox
40+
pip install git+https://github.com/django-nonrel/djangotoolbox
4141

4242
Django MongoDB Engine
4343
.....................
@@ -69,7 +69,7 @@ That's it! You can now go straight ahead developing your Django application as
6969
you would do with any other database.
7070

7171

72-
.. _virtualenv: http://virtualenv.org
73-
.. _Django database setup docs: http://docs.djangoproject.com/en/dev/ref/settings/#databases
74-
.. _djangotoolbox: http://www.allbuttonspressed.com/projects/djangotoolbox
75-
.. _Django-nonrel: http://www.allbuttonspressed.com/projects/django-nonrel
72+
.. _virtualenv: http://www.virtualenv.org/
73+
.. _Django database setup docs: https://docs.djangoproject.com/en/dev/ref/settings/#databases
74+
.. _djangotoolbox: https://github.com/django-nonrel/djangotoolbox
75+
.. _Django-nonrel: http://django-nonrel.org/

0 commit comments

Comments
 (0)