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
82a24356
Commit
82a24356
authored
Nov 18, 2016
by
Max Rothman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release-candidate' into release
parents
aeb0f23d
cd71d300
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
1 deletions
+39
-1
common/djangoapps/django_comment_common/migrations/0004_auto_20161117_1209.py
+19
-0
common/djangoapps/student/migrations/0008_auto_20161117_1209.py
+19
-0
requirements/edx/base.txt
+1
-1
No files found.
common/djangoapps/django_comment_common/migrations/0004_auto_20161117_1209.py
0 → 100644
View file @
82a24356
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'django_comment_common'
,
'0003_enable_forums'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'forumsconfig'
,
name
=
'connection_timeout'
,
field
=
models
.
FloatField
(
default
=
5.0
,
help_text
=
b
'Seconds to wait when trying to connect to the comment service.'
),
),
]
common/djangoapps/student/migrations/0008_auto_20161117_1209.py
0 → 100644
View file @
82a24356
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'student'
,
'0007_registrationcookieconfiguration'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'userprofile'
,
name
=
'level_of_education'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
6
,
null
=
True
,
db_index
=
True
,
choices
=
[(
b
'p'
,
b
'Doctorate'
),
(
b
'm'
,
b
"Master's or professional degree"
),
(
b
'b'
,
b
"Bachelor's degree"
),
(
b
'a'
,
b
'Associate degree'
),
(
b
'hs'
,
b
'Secondary/high school'
),
(
b
'jhs'
,
b
'Junior secondary/junior high/middle school'
),
(
b
'el'
,
b
'Elementary/primary school'
),
(
b
'none'
,
b
'No formal education'
),
(
b
'other'
,
b
'Other education'
)]),
),
]
requirements/edx/base.txt
View file @
82a24356
...
...
@@ -10,7 +10,7 @@ bleach==1.4
html5lib==0.999
boto==2.39.0
celery==3.1.18
cryptography==1.
3.1
cryptography==1.
5.3
cssselect==0.9.1
dealer==2.0.4
defusedxml==0.4.1
...
...
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