Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
4fc25c4a
Commit
4fc25c4a
authored
12 years ago
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename simplewiki settings file
parent
619330cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
djangoapps/simplewiki/views.py
+8
-8
djangoapps/simplewiki/wiki_settings.py
+0
-0
No files found.
djangoapps/simplewiki/views.py
View file @
4fc25c4a
# -*- coding: utf-8 -*-
from
django.conf
import
settings
as
dj_
settings
from
django.conf
import
settings
as
settings
from
django.contrib.auth.decorators
import
login_required
from
django.core.context_processors
import
csrf
from
django.core.urlresolvers
import
reverse
...
...
@@ -10,7 +10,7 @@ from django.utils.translation import ugettext_lazy as _
from
mitxmako.shortcuts
import
render_to_response
from
models
import
Revision
,
Article
,
CreateArticleForm
,
RevisionFormWithTitle
,
RevisionForm
import
settings
import
wiki_
settings
def
view
(
request
,
wiki_url
):
(
article
,
path
,
err
)
=
fetch_from_url
(
request
,
wiki_url
)
...
...
@@ -149,7 +149,7 @@ def edit(request, wiki_url):
if
perm_err
:
return
perm_err
if
settings
.
WIKI_ALLOW_TITLE_EDIT
:
if
wiki_
settings
.
WIKI_ALLOW_TITLE_EDIT
:
EditForm
=
RevisionFormWithTitle
else
:
EditForm
=
RevisionForm
...
...
@@ -171,7 +171,7 @@ def edit(request, wiki_url):
if
not
request
.
user
.
is_anonymous
():
new_revision
.
revision_user
=
request
.
user
new_revision
.
save
()
if
settings
.
WIKI_ALLOW_TITLE_EDIT
:
if
wiki_
settings
.
WIKI_ALLOW_TITLE_EDIT
:
new_revision
.
article
.
title
=
f
.
cleaned_data
[
'title'
]
new_revision
.
article
.
save
()
return
HttpResponseRedirect
(
reverse
(
'wiki_view'
,
args
=
(
article
.
get_url
(),)))
...
...
@@ -501,7 +501,7 @@ def check_permissions(request, article, check_read=False, check_write=False, che
# LOGIN PROTECTION #
####################
if
settings
.
WIKI_REQUIRE_LOGIN_VIEW
:
if
wiki_
settings
.
WIKI_REQUIRE_LOGIN_VIEW
:
view
=
login_required
(
view
)
history
=
login_required
(
history
)
search_articles
=
login_required
(
search_articles
)
...
...
@@ -512,11 +512,11 @@ if settings.WIKI_REQUIRE_LOGIN_VIEW:
not_found
=
login_required
(
not_found
)
view_revision
=
login_required
(
view_revision
)
if
settings
.
WIKI_REQUIRE_LOGIN_EDIT
:
if
wiki_
settings
.
WIKI_REQUIRE_LOGIN_EDIT
:
create
=
login_required
(
create
)
edit
=
login_required
(
edit
)
add_related
=
login_required
(
add_related
)
remove_related
=
login_required
(
remove_related
)
if
settings
.
WIKI_CONTEXT_PREPROCESSORS
:
dj_settings
.
TEMPLATE_CONTEXT_PROCESSORS
+=
settings
.
WIKI_CONTEXT_PREPROCESSORS
if
wiki_
settings
.
WIKI_CONTEXT_PREPROCESSORS
:
settings
.
TEMPLATE_CONTEXT_PROCESSORS
+=
wiki_
settings
.
WIKI_CONTEXT_PREPROCESSORS
This diff is collapsed.
Click to expand it.
djangoapps/simplewiki/settings.py
→
djangoapps/simplewiki/
wiki_
settings.py
View file @
4fc25c4a
File moved
This diff is collapsed.
Click to expand it.
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