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
c5a1634a
Commit
c5a1634a
authored
12 years ago
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove more askbot remnants
parent
538d10de
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 @
c5a1634a
...
@@ -220,9 +220,6 @@ def get_default_tabs(user, course, active_page):
...
@@ -220,9 +220,6 @@ def get_default_tabs(user, course, active_page):
link
=
reverse
(
'django_comment_client.forum.views.forum_form_discussion'
,
link
=
reverse
(
'django_comment_client.forum.views.forum_form_discussion'
,
args
=
[
course
.
id
])
args
=
[
course
.
id
])
tabs
.
append
(
CourseTab
(
'Discussion'
,
link
,
active_page
==
'discussion'
))
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
))
tabs
.
extend
(
_wiki
({
'name'
:
'Wiki'
,
'type'
:
'wiki'
},
user
,
course
,
active_page
))
...
...
This diff is collapsed.
Click to expand it.
lms/envs/aws.py
View file @
c5a1634a
...
@@ -20,7 +20,6 @@ SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
...
@@ -20,7 +20,6 @@ SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
DEFAULT_FILE_STORAGE
=
'storages.backends.s3boto.S3BotoStorage'
DEFAULT_FILE_STORAGE
=
'storages.backends.s3boto.S3BotoStorage'
# Disable askbot, enable Berkeley forums
# Disable askbot, enable Berkeley forums
MITX_FEATURES
[
'ENABLE_DISCUSSION'
]
=
False
MITX_FEATURES
[
'ENABLE_DISCUSSION_SERVICE'
]
=
True
MITX_FEATURES
[
'ENABLE_DISCUSSION_SERVICE'
]
=
True
# IMPORTANT: With this enabled, the server must always be behind a proxy that
# IMPORTANT: With this enabled, the server must always be behind a proxy that
...
...
This diff is collapsed.
Click to expand it.
lms/envs/common.py
View file @
c5a1634a
...
@@ -63,7 +63,6 @@ MITX_FEATURES = {
...
@@ -63,7 +63,6 @@ MITX_FEATURES = {
# set to None to do no university selection
# set to None to do no university selection
'ENABLE_TEXTBOOK'
:
True
,
'ENABLE_TEXTBOOK'
:
True
,
'ENABLE_DISCUSSION'
:
False
,
'ENABLE_DISCUSSION_SERVICE'
:
True
,
'ENABLE_DISCUSSION_SERVICE'
:
True
,
'ENABLE_PSYCHOMETRICS'
:
False
,
# real-time psychometrics (eg item response theory analysis in instructor dashboard)
'ENABLE_PSYCHOMETRICS'
:
False
,
# real-time psychometrics (eg item response theory analysis in instructor dashboard)
...
...
This diff is collapsed.
Click to expand it.
lms/envs/dev_ike.py
View file @
c5a1634a
...
@@ -14,7 +14,6 @@ import socket
...
@@ -14,7 +14,6 @@ import socket
WIKI_ENABLED
=
False
WIKI_ENABLED
=
False
MITX_FEATURES
[
'ENABLE_TEXTBOOK'
]
=
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
[
'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_COURSE_LISTINGS'
]
=
False
MITX_FEATURES
[
'SUBDOMAIN_BRANDING'
]
=
False
MITX_FEATURES
[
'SUBDOMAIN_BRANDING'
]
=
False
...
...
This diff is collapsed.
Click to expand it.
lms/urls.py
View file @
c5a1634a
...
@@ -219,14 +219,6 @@ if settings.QUICKEDIT:
...
@@ -219,14 +219,6 @@ if settings.QUICKEDIT:
urlpatterns
+=
(
url
(
r'^quickedit/(?P<id>[^/]*)$'
,
'dogfood.views.quickedit'
),)
urlpatterns
+=
(
url
(
r'^quickedit/(?P<id>[^/]*)$'
,
'dogfood.views.quickedit'
),)
urlpatterns
+=
(
url
(
r'^dogfood/(?P<id>[^/]*)$'
,
'dogfood.views.df_capa_problem'
),)
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
:
if
settings
.
DEBUG
:
## Jasmine and admin
## Jasmine and admin
...
...
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