Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f99951e
import subtitles into studio: add python side functionality
vasylnakvasiuk Jun 14, 2013
5feea51
import subtitles into studio: add python integration tests
vasylnakvasiuk Jun 18, 2013
78ac544
import subtitles into studio: add python unit tests for utils functions
vasylnakvasiuk Jun 18, 2013
49da2f2
Add import from YT
vasylnakvasiuk Jul 4, 2013
fbda2c2
upload subtitles into studio: add python side functionality
vasylnakvasiuk Jun 20, 2013
28e05c3
upload subtitles into studio: add python integration tests
vasylnakvasiuk Jun 25, 2013
3abba34
upload subtitles into studio: add python unit tests for utils
vasylnakvasiuk Jun 25, 2013
83a7163
Add upload subtitles file + Refactoring
vasylnakvasiuk Jul 4, 2013
ad5e81c
download subtitles into studio: add python side functionality
vasylnakvasiuk Jun 27, 2013
5143b6f
download subtitles into studio: add python integration tests
vasylnakvasiuk Jul 1, 2013
5af2de8
download subtitles into studio: add python unit tests for utils funct…
vasylnakvasiuk Jul 1, 2013
08c6658
Move subtitles to the edit tab
vasylnakvasiuk Jul 4, 2013
fcd81c0
Add tests for CMS.Views.SubtitlesImport
polesye Jun 27, 2013
f9c1b6d
Add tests for CMS.Views.SubtitlesImportFile
polesye Jun 28, 2013
f05fa3c
Add tests for CMS.Views.SubtitlesImportYT
polesye Jun 28, 2013
84a2739
Add download subtitles button
polesye Jul 1, 2013
2ffe922
Add tests for Download button
polesye Jul 1, 2013
63e458e
Add Tabs module to XBlock
polesye Jul 4, 2013
16f68ee
Change templates according to new tabs logic
polesye Jul 4, 2013
0a6c9f4
Refactor Module Name
polesye Jul 2, 2013
14d311b
Remove old styles
polesye Jul 4, 2013
7f9657f
Add tests for CMS.Views.SubtitlesMessages
polesye Jul 3, 2013
8ffbf74
Add tests for TabsEditorDescriptor
polesye Jul 3, 2013
fa3a7c7
Clean up
vasylnakvasiuk Jul 4, 2013
b7a3655
extend VideoAlphaDescriptor context
vasylnakvasiuk Jul 3, 2013
026cdf0
Add flags
polesye Jul 3, 2013
d854d52
Add tests for new flags
polesye Jul 3, 2013
3d7e199
Move Styles to separate file
polesye Jul 4, 2013
fffe566
fix videoalpha tests
vasylnakvasiuk Jul 4, 2013
2e1853d
Remove unnecessary js include
polesye Jul 4, 2013
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cms/djangoapps/contentstore/tests/test_course_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def setUp(self):
self.client = Client()
self.client.login(username=uname, password=password)

course = CourseFactory.create(template='i4x://edx/templates/course/Empty', org='MITx', number='999', display_name='Robot Super Course')
self.course_location = course.location
self.course = CourseFactory.create(template='i4x://edx/templates/course/Empty', org='MITx', number='999', display_name='Robot Super Course')
self.course_location = self.course.location


class CourseDetailsTestCase(CourseTestCase):
Expand Down
Loading