diff --git a/sphinx/templates/web/_commentform.html b/sphinx/templates/web/_commentform.html deleted file mode 100644 index 51c49cec5..000000000 --- a/sphinx/templates/web/_commentform.html +++ /dev/null @@ -1,34 +0,0 @@ -
- {% if comments_form.error %} -
{{ comments_form.error|e }}
- {% endif %} -

Note: you can also suggest - changes to the official documentation text.

-
-
Name:
-
-
E-Mail Address:
-
-
Comment Title:
-
-
- - - {% if preview %} -
-

Preview

-
-

{{ preview.title|e or ' ' }}

-
{{ preview.parsed_comment_body or ' ' }}
-
by {{ preview.author|e }}, written on - {{ preview.pub_date|datetimeformat }} | - #
-
-
- {% endif %} -
- - - -
-
diff --git a/sphinx/templates/web/admin/change_password.html b/sphinx/templates/web/admin/change_password.html deleted file mode 100644 index eb64f5b80..000000000 --- a/sphinx/templates/web/admin/change_password.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "admin/layout.html" %} -{% block admin_body %} -

Change Password

- {% if change_failed %} -

The two passwords don't match or are empty.

- {% elif change_successful %} -

Password changed successfully.

- {% else %} -

Enter the new password below twice

- {% endif %} -
-
-
Password
-
-
Repeat
-
-
-
- - -
-
-{% endblock %} diff --git a/sphinx/templates/web/admin/index.html b/sphinx/templates/web/admin/index.html deleted file mode 100644 index 6a4ccd9b9..000000000 --- a/sphinx/templates/web/admin/index.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "admin/layout.html" %} -{% block admin_body %} -

Administration Index

-

- Welcome in the documentation administration, {{ req.user|e }}. -

-

Tasks

- -{% endblock %} diff --git a/sphinx/templates/web/admin/layout.html b/sphinx/templates/web/admin/layout.html deleted file mode 100644 index 283434a73..000000000 --- a/sphinx/templates/web/admin/layout.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "layout.html" %} -{% set title = 'Documentation Administration' %} -{% set in_admin_panel = true %} -{% block body %} -
- {% block admin_body %}{% endblock %} -
-{% endblock %} diff --git a/sphinx/templates/web/admin/login.html b/sphinx/templates/web/admin/login.html deleted file mode 100644 index fed819c16..000000000 --- a/sphinx/templates/web/admin/login.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "admin/layout.html" %} -{% block admin_body %} -

Login

-
-
-
Username
-
-
Password
-
-
- {% if login_failed %} -
Invalid username and/or password
- {% endif %} -
- - -
-
-{% endblock %} diff --git a/sphinx/templates/web/admin/manage_users.html b/sphinx/templates/web/admin/manage_users.html deleted file mode 100644 index c2a188288..000000000 --- a/sphinx/templates/web/admin/manage_users.html +++ /dev/null @@ -1,92 +0,0 @@ -{% extends "admin/layout.html" %} -{% block admin_body %} -

Manage Users

-

- All uses with "master" privileges can give and revoke permissions - from this page. You cannot change the passwords of other users and - remove your own user or "master" privilege. Privileges are separated - by commas — optional whitespace is ignored. -

-

Privileges

- -
- {% if ask_confirmation %} -
-

Confirm

-
- {% trans amount=to_delete|length %} - Do you really want to delete the user? - {% pluralize %} - Do you really want to delete {{ amount }} users? - {% endtrans %} -
-
- - - -
-
- {% endif %} - {% if generated_user and generated_password %} -
-

User Generated

-
- The user {{ generated_user|e }} was generated successfully - with the password {{ generated_password|e }}. -
-
- {% endif %} - {% if user_exists %} -
-

Username in User

-
- The username {{ user_exists|e }} is in use. Select a different one. -
-
- {% endif %} - {% if self_destruction %} -
-

Error

-
- You can't delete your own user or remove your own master privileges. -
-
- {% endif %} - {% if add_user_mode %} -
-

Add User

-
- Username -
-
- - -
-
- {% endif %} - - - - - - - {%- for user, privileges in users|dictsort %} - - - - - - {%- endfor %} -
UsernamePrivilegesDelete
{{ user|e }}
-
- - - -
-
-{% endblock %} diff --git a/sphinx/templates/web/admin/moderate_comments.html b/sphinx/templates/web/admin/moderate_comments.html deleted file mode 100644 index d2238f484..000000000 --- a/sphinx/templates/web/admin/moderate_comments.html +++ /dev/null @@ -1,104 +0,0 @@ -{% extends "admin/layout.html" %} -{% block admin_body %} -

Moderate Comments

-

- From here you can delete and edit comments. If you want to be - informed about new comments you can use the feed provided. -

-
- {% if ask_confirmation %} -
-

Confirm

-
- {% trans amount=to_delete|length %} - Do you really want to delete one comment? - {% pluralize %} - Do you really want to delete {{ amount }} comments? - {% endtrans %} -
-
- - -
-
- {% endif %} - {% if edit_detail %} -
-

Edit Comment

-
- -
-
Name
-
-
E-Mail
-
-
Comment Title
-
-
- -
-
- - - - -
-
- {% endif %} - {%- macro render_row(comment, include_page=false) %} - - - {{ comment.title|e }} - by {{ comment.author|e }}{% if include_page - %} on {{ comment.associated_page }} - - {{ comment.pub_date|datetimeformat }} - - edit - - - - {%- endmacro %} - - {% if pages_with_comments %} - - - - {%- for comment in recent_comments %} - {{- render_row(comment, true) }} - {%- endfor %} - {%- for page in pages_with_comments %} - - - - {%- if page.has_details %} - {%- for comment in page.comments %} - {{- render_row(comment) }} - {%- endfor %} - {%- endif %} - {% endfor %} - {%- else %} - - {%- endif %} -
- Recent Comments - (feed) -
- {{ page.title|e }} - (view | - feed) -
no comments submitted so far
-
- - -
-
-{% endblock %} diff --git a/sphinx/templates/web/commentform.html b/sphinx/templates/web/commentform.html deleted file mode 100644 index 84faabd4e..000000000 --- a/sphinx/templates/web/commentform.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "layout.html" %} -{% block body %} -
-

New Comment

- {{ form }} -
-

- You can format a comment using the - following syntax elements provided: -

-

- `code` / ``code too`` / **strong** / - *emphasized* / !!!important!!! / - [[link_target Link Title]] / - [[link_target_only]] / <code>code block with - syntax highlighting</code> / <quote>some - quoted text</quote>. -

-

- HTML is not supported, relative link targets are treated as - quicklinks and code blocks that start with ">>>" are - highlighted as interactive Python sessions. -

-
-
-{% endblock %} diff --git a/sphinx/templates/web/comments.html b/sphinx/templates/web/comments.html deleted file mode 100644 index 81d6542ba..000000000 --- a/sphinx/templates/web/comments.html +++ /dev/null @@ -1,22 +0,0 @@ -
-

Comments

- {% for comment in comments %} -
-

{{ comment.title|e }} - {%- if comment.associated_name %} — on - {{- - comment.associated_name }}{% endif %}

-
{{ comment.parsed_comment_body }}
-
by {{ comment.author|e }}, written on - {{ comment.pub_date|datetimeformat }} | - #
-
- {% else %} -
- There are no user contributed notes for this page. -
- {% endfor %} -
- add comment to page -
-
diff --git a/sphinx/templates/web/edit.html b/sphinx/templates/web/edit.html deleted file mode 100644 index a40063687..000000000 --- a/sphinx/templates/web/edit.html +++ /dev/null @@ -1,54 +0,0 @@ -{% extends "layout.html" %} -{% if rendered %}{% set title = "Suggest changes - Preview" %} -{% else %}{% set title = "Suggest changes" %}{% endif %} -{% block body %} -{% if rendered %} -

Preview

-
-
- {{ rendered }} -
-
- {% if warnings %} -

Warnings

-

You must fix these warnings before you can submit your patch.

- - {% endif %} -{% endif %} -

Suggest changes for this page

-{% if not rendered %} -

Here you can edit the source of “{{ doctitle|striptags }}” and - submit the results as a patch to the {{ project }} documentation team. - {# XXX Python specific #} - If you want to know more about reST, the markup language used, read - Documenting Python.

-{% endif %} -
-
- - {# XXX: shortcuts to make the edit area larger/smaller #} - {% if form_error %} -
{{ form_error|e }}
- {% endif %} -
-
Name:
-
-
E-mail Address:
-
-
Summary of the change:
-
-
- -
- - - - -
-
-
-{% endblock %} diff --git a/sphinx/templates/web/inlinecomments.html b/sphinx/templates/web/inlinecomments.html deleted file mode 100644 index efefca8ab..000000000 --- a/sphinx/templates/web/inlinecomments.html +++ /dev/null @@ -1,36 +0,0 @@ -{# rendered for inline comments -#} -
-{%- if mode == 'bottom' %} - {%- if comments -%} - [Read Comments] - {%- else -%} - [Write Comments] - {%- endif %} -{%- else %} -
- {%- if comments -%} - [{{ comments|length }} Comments] - {%- else -%} - [Write Comment] - {%- endif -%} -
- {%- if comments %} -
-

Comments

- - {%- for comment in comments %} -
-

{{ comment.title|e }}

-
{{ comment.parsed_comment_body }}
-
by {{ comment.author|e }}, written on - {{ comment.pub_date|datetimeformat }} | - #
-
- {%- endfor %} -
- {%- endif %} -{%- endif %} -
diff --git a/sphinx/templates/web/keyword_not_found.html b/sphinx/templates/web/keyword_not_found.html deleted file mode 100644 index 55e42c120..000000000 --- a/sphinx/templates/web/keyword_not_found.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "layout.html" %} -{% set title = 'Keyword Not Found' %} -{% block body %} -

Keyword Not Found

-

- The keyword {{ keyword|e }} is not directly associated with - a page. {% if close_matches %}A similarity search returned {{ - close_matches|length }} items that are possible matches. - {% if good_matches_count %}{{ good_matches_count }} of them are really - good matches and emphasized.{% endif %}{% endif %} -

- {% if close_matches %} - - {% endif %} -

- If you want to search the entire {{ project }} documentation for the string - "{{ keyword|e }}", then use the search function. -

-

- For a quick overview over all documented modules, - click here. -

-{% endblock %} diff --git a/sphinx/templates/web/not_found.html b/sphinx/templates/web/not_found.html deleted file mode 100644 index bff8af0f6..000000000 --- a/sphinx/templates/web/not_found.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "layout.html" %} -{% set title = 'Page Not Found' %} -{% block body %} -

Page Not Found

-

- The page {{ req.path|e }} does not exist on this server. -

-

- Click here to return to the index. -

-{% endblock %} diff --git a/sphinx/templates/web/settings.html b/sphinx/templates/web/settings.html deleted file mode 100644 index 2a59c1266..000000000 --- a/sphinx/templates/web/settings.html +++ /dev/null @@ -1,37 +0,0 @@ -{% extends "layout.html" %} -{% set title = 'Settings' %} -{% set pagename = 'settings' %} -{% block body %} -

{{ project }} Documentation Settings

-

- Here you can customize how you want to view the {{ project }} documentation. - These settings are saved using a cookie on your computer. -

- -
-

Select your stylesheet:

-

- {%- for design, (foo, descr) in known_designs %} - -
- {%- endfor %} -

- -

Select how you want to view comments:

-

- {%- for meth, descr in comments_methods %} - -
- {%- endfor %} -

- -

-    -    -    -

-
- -{% endblock %} diff --git a/sphinx/templates/web/submitted.html b/sphinx/templates/web/submitted.html deleted file mode 100644 index 5b542aeeb..000000000 --- a/sphinx/templates/web/submitted.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "layout.html" %} -{% set title = "Patch submitted" %} -{% block head %} - -{% endblock %} -{% block body %} -

Patch submitted

-

Your patch has been submitted to the {{ project }} documentation team and will be - processed shortly.

-

You will be redirected to the - original documentation page shortly.

-{% endblock %} \ No newline at end of file