Skip to content

Commit e735190

Browse files
committed
Merge branch 'master' into fix-mkdocs-page-name-issue
2 parents 76b3d93 + bc1decf commit e735190

File tree

378 files changed

+8956
-6530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

378 files changed

+8956
-6530
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
.idea
88
.vagrant
99
.tox
10+
.rope_project/
11+
.ropeproject/
1012
_build
1113
cnames
1214
bower_components/
@@ -33,3 +35,5 @@ prod_artifacts
3335
wheelhouse
3436
whoosh_index
3537
xml_output
38+
public_cnames
39+
public_symlinks

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ after_success:
1616
notifications:
1717
slack:
1818
rooms:
19-
- readthedocs:y3hjODOi7EIz1JAbD1Zb41sz#general
19+
- readthedocs:y3hjODOi7EIz1JAbD1Zb41sz#random
2020
on_success: change
2121
on_failure: always

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ when you push to GitHub.
6060
.. |docs| image:: https://readthedocs.org/projects/docs/badge/?version=latest
6161
:alt: Documentation Status
6262
:scale: 100%
63-
:target: https://readthedocs.org/projects/docs/
63+
:target: https://docs.readthedocs.org/en/latest/?badge=latest

bower.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,16 @@
1414
"tests"
1515
],
1616
"dependencies": {
17-
"jquery": "~2.0.3",
17+
"jquery": "2.0.3",
1818
"underscore": "~1.7.0",
1919
"readthedocs-client": "https://github.com/agjohnson/readthedocs-client-js.git",
20+
"sphinx-rtd-theme": "https://github.com/snide/sphinx-rtd-theme.git#0.1.9",
2021
"knockout": "~3.3.0",
21-
"jquery.payment": "~1.2.3",
22+
"jquery.payment": "~1.3.0",
2223
"jquery-migrate": "~1.2.1",
2324
"jquery-ui": "1.8.23"
25+
},
26+
"resolutions": {
27+
"jquery": "2.0.3"
2428
}
2529
}

deploy/delete_stale_projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import shutil
22
import os
33

4-
from projects.models import Project
4+
from readthedocs.projects.models import Project
55

66
slugs = [p.slug for p in Project.objects.all()]
77
build_projects = os.listdir('/home/docs/checkouts/readthedocs.org/user_builds/')

deploy/flask-redirects.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
A flask app for redirecting documentation from the root / URL.
3+
"""
4+
15
import json
26

37
from flask import Flask, make_response, redirect, request

docs/alternate_domains.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Read the Docs supports a number of custom domains for your convenience. Shorter
66
Subdomain Support
77
------------------
88

9-
Every project has a subdomain that is available to serve it's documentation. If you go to <slug>.readthedocs.org, it should show you the latest version of documentation. A good example is http://pip.readthedocs.org
9+
Every project has a subdomain that is available to serve its documentation. If you go to <slug>.readthedocs.org, it should show you the latest version of documentation. A good example is http://pip.readthedocs.org
1010

1111
.. note:: If you have an old project that has an underscore (_) in the name, it will use a subdomain with a hypen (-).
1212
`RFC 1035 <http://tools.ietf.org/html/rfc1035>`_ has more information on valid subdomains.

0 commit comments

Comments
 (0)