Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
46400123
Commit
46400123
authored
Feb 20, 2015
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update links to Django docs
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
ed22fa15
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
docs/admin/auth.rst
docs/admin/auth.rst
+1
-1
docs/admin/config.rst
docs/admin/config.rst
+1
-1
docs/admin/install.rst
docs/admin/install.rst
+12
-12
docs/faq.rst
docs/faq.rst
+1
-1
No files found.
docs/admin/auth.rst
View file @
46400123
...
...
@@ -220,7 +220,7 @@ To allow access to this project, you have to add the privilege to do so either
directly to given user or group of users in Django admin interface. Or using
user management on project page as described in :ref:`manage-acl`.
.. seealso:: https://docs.djangoproject.com/en/1.
6
/topics/auth/default/#auth-admin
.. seealso:: https://docs.djangoproject.com/en/1.
7
/topics/auth/default/#auth-admin
Managing users and groups
-------------------------
...
...
docs/admin/config.rst
View file @
46400123
...
...
@@ -16,7 +16,7 @@ All settings are stored in :file:`settings.py` (as usual for Django).
Please check also `Django's documentation`_ for parameters which configure
Django itself.
.. _`Django's documentation`: https://docs.djangoproject.com/en/1.
6
/ref/settings/
.. _`Django's documentation`: https://docs.djangoproject.com/en/1.
7
/ref/settings/
.. setting:: ANONYMOUS_USER_NAME
...
...
docs/admin/install.rst
View file @
46400123
...
...
@@ -205,7 +205,7 @@ Creating database for Weblate
It is recommended to run Weblate on some database server. Using SQLite backend
is really good for testing purposes only.
.. seealso:: :ref:`production-database`, `Django's databases <https://docs.djangoproject.com/en/1.
6
/ref/databases/>`_
.. seealso:: :ref:`production-database`, `Django's databases <https://docs.djangoproject.com/en/1.
7
/ref/databases/>`_
Creating database in PostgreSQL
+++++++++++++++++++++++++++++++
...
...
@@ -253,7 +253,7 @@ options:
List of site administrators to receive notifications when something goes
wrong, for example notifications on failed merge or Django errors.
.. seealso:: https://docs.djangoproject.com/en/1.
6
/ref/settings/#admins
.. seealso:: https://docs.djangoproject.com/en/1.
7
/ref/settings/#admins
``ALLOWED_HOSTS``
...
...
@@ -274,8 +274,8 @@ options:
.. seealso::
:ref:`database-setup`
https://docs.djangoproject.com/en/1.
6
/ref/settings/#databases,
https://docs.djangoproject.com/en/1.
6
/ref/databases/
https://docs.djangoproject.com/en/1.
7
/ref/settings/#databases,
https://docs.djangoproject.com/en/1.
7
/ref/databases/
``DEBUG``
...
...
@@ -286,7 +286,7 @@ options:
Debug mode also slows down Weblate as Django stores much more information
internally in this case.
.. seealso:: https://docs.djangoproject.com/en/1.
6
/ref/settings/#debug
.. seealso:: https://docs.djangoproject.com/en/1.
7
/ref/settings/#debug
``DEFAULT_FROM_EMAIL``
...
...
@@ -414,7 +414,7 @@ environment), for example setup for MySQL:
}
}
.. seealso:: :ref:`installation`, `Django's databases <https://docs.djangoproject.com/en/1.
6
/ref/databases/>`_
.. seealso:: :ref:`installation`, `Django's databases <https://docs.djangoproject.com/en/1.
7
/ref/databases/>`_
.. _production-cache:
...
...
@@ -433,7 +433,7 @@ variable, for example:
}
}
.. seealso:: :ref:`production-cache-avatar`, `Django’s cache framework <https://docs.djangoproject.com/en/1.
6
/topics/cache/>`_
.. seealso:: :ref:`production-cache-avatar`, `Django’s cache framework <https://docs.djangoproject.com/en/1.
7
/topics/cache/>`_
.. _production-cache-avatar:
...
...
@@ -460,7 +460,7 @@ recommended to use separate, file backed cache for this purpose:
},
}
.. seealso:: :setting:`ENABLE_AVATARS`, :ref:`production-cache`, `Django’s cache framework <https://docs.djangoproject.com/en/1.
6
/topics/cache/>`_
.. seealso:: :setting:`ENABLE_AVATARS`, :ref:`production-cache`, `Django’s cache framework <https://docs.djangoproject.com/en/1.
7
/topics/cache/>`_
.. _production-email:
...
...
@@ -481,8 +481,8 @@ have correct sender address, please configure ``SERVER_EMAIL`` and
`DEFAULT_FROM_EMAIL documentation`_,
`SERVER_EMAIL documentation`_
.. _DEFAULT_FROM_EMAIL documentation: https://docs.djangoproject.com/en/1.
6
/ref/settings/#default-from-email
.. _SERVER_EMAIL documentation: https://docs.djangoproject.com/en/1.
6
/ref/settings/#server-email
.. _DEFAULT_FROM_EMAIL documentation: https://docs.djangoproject.com/en/1.
7
/ref/settings/#default-from-email
.. _SERVER_EMAIL documentation: https://docs.djangoproject.com/en/1.
7
/ref/settings/#server-email
.. _production-hosts:
...
...
@@ -591,7 +591,7 @@ configure it using following snippet:
)),
)
.. seealso:: `Django documentation on template loading <https://docs.djangoproject.com/en/1.
6
/ref/templates/api/#django.template.loaders.cached.Loader>`_
.. seealso:: `Django documentation on template loading <https://docs.djangoproject.com/en/1.
7
/ref/templates/api/#django.template.loaders.cached.Loader>`_
.. _server:
...
...
@@ -623,7 +623,7 @@ use that for following paths:
Additionally you should setup rewrite rule to serve :file:`media/favicon.ico`
as :file:`favicon.ico`.
.. seealso:: https://docs.djangoproject.com/en/1.
6
/howto/deployment/
.. seealso:: https://docs.djangoproject.com/en/1.
7
/howto/deployment/
Sample configuration for Lighttpd
+++++++++++++++++++++++++++++++++
...
...
docs/faq.rst
View file @
46400123
...
...
@@ -311,7 +311,7 @@ This can happen with SQLite database as it is not powerful enough for some
relations used within Weblate. The only way to fix this is to use some more
capable database, see :ref:`production-database` for more information.
.. seealso:: :ref:`production-database`, `Django's databases <https://docs.djangoproject.com/en/1.
6
/ref/databases/>`_
.. seealso:: :ref:`production-database`, `Django's databases <https://docs.djangoproject.com/en/1.
7
/ref/databases/>`_
Features
++++++++
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment