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
0162e4c0
Commit
0162e4c0
authored
Oct 10, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove more askbot remnants
parent
f5a63f73
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
14 deletions
+0
-14
lms/djangoapps/courseware/tabs.py
+0
-3
lms/envs/aws.py
+0
-1
lms/envs/common.py
+0
-1
lms/envs/dev_ike.py
+0
-1
lms/urls.py
+0
-8
No files found.
lms/djangoapps/courseware/tabs.py
View file @
0162e4c0
...
...
@@ -220,9 +220,6 @@ def get_default_tabs(user, course, active_page):
link
=
reverse
(
'django_comment_client.forum.views.forum_form_discussion'
,
args
=
[
course
.
id
])
tabs
.
append
(
CourseTab
(
'Discussion'
,
link
,
active_page
==
'discussion'
))
elif
settings
.
MITX_FEATURES
.
get
(
'ENABLE_DISCUSSION'
):
## This is Askbot, which we should be retiring soon...
tabs
.
append
(
CourseTab
(
'Discussion'
,
reverse
(
'questions'
),
active_page
==
'discussion'
))
tabs
.
extend
(
_wiki
({
'name'
:
'Wiki'
,
'type'
:
'wiki'
},
user
,
course
,
active_page
))
...
...
lms/envs/aws.py
View file @
0162e4c0
...
...
@@ -20,7 +20,6 @@ SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
DEFAULT_FILE_STORAGE
=
'storages.backends.s3boto.S3BotoStorage'
# Disable askbot, enable Berkeley forums
MITX_FEATURES
[
'ENABLE_DISCUSSION'
]
=
False
MITX_FEATURES
[
'ENABLE_DISCUSSION_SERVICE'
]
=
True
# IMPORTANT: With this enabled, the server must always be behind a proxy that
...
...
lms/envs/common.py
View file @
0162e4c0
...
...
@@ -63,7 +63,6 @@ MITX_FEATURES = {
# set to None to do no university selection
'ENABLE_TEXTBOOK'
:
True
,
'ENABLE_DISCUSSION'
:
False
,
'ENABLE_DISCUSSION_SERVICE'
:
True
,
'ENABLE_PSYCHOMETRICS'
:
False
,
# real-time psychometrics (eg item response theory analysis in instructor dashboard)
...
...
lms/envs/dev_ike.py
View file @
0162e4c0
...
...
@@ -14,7 +14,6 @@ import socket
WIKI_ENABLED
=
False
MITX_FEATURES
[
'ENABLE_TEXTBOOK'
]
=
False
MITX_FEATURES
[
'ENABLE_DISCUSSION'
]
=
False
MITX_FEATURES
[
'ACCESS_REQUIRE_STAFF_FOR_COURSE'
]
=
True
# require that user be in the staff_* group to be able to enroll
MITX_FEATURES
[
'SUBDOMAIN_COURSE_LISTINGS'
]
=
False
MITX_FEATURES
[
'SUBDOMAIN_BRANDING'
]
=
False
...
...
lms/urls.py
View file @
0162e4c0
...
...
@@ -219,14 +219,6 @@ if settings.QUICKEDIT:
urlpatterns
+=
(
url
(
r'^quickedit/(?P<id>[^/]*)$'
,
'dogfood.views.quickedit'
),)
urlpatterns
+=
(
url
(
r'^dogfood/(?P<id>[^/]*)$'
,
'dogfood.views.df_capa_problem'
),)
if
settings
.
ASKBOT_ENABLED
:
urlpatterns
+=
(
url
(
r'^
%
s'
%
settings
.
ASKBOT_URL
,
include
(
'askbot.urls'
)),
\
url
(
r'^settings/'
,
include
(
'askbot.deps.livesettings.urls'
)),
\
url
(
r'^followit/'
,
include
(
'followit.urls'
)),
\
# url(r'^robots.txt$', include('robots.urls')),
)
if
settings
.
DEBUG
:
## Jasmine and admin
...
...
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