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
331a94c1
Commit
331a94c1
authored
Feb 26, 2014
by
Alexander Kryklia
Committed by
Adam Palay
Feb 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow /static in transcript names.
parent
4d7ef488
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
common/lib/xmodule/xmodule/video_module/transcripts_utils.py
+11
-3
No files found.
common/lib/xmodule/xmodule/video_module/transcripts_utils.py
View file @
331a94c1
...
...
@@ -327,7 +327,10 @@ def manage_video_subtitles_save(item, user, old_metadata=None, generate_translat
This whole action ensures that after user changes video fields, proper `sub` files, corresponding
to new values of video fields, will be presented in system.
# 2. Generate transcripts translation only when user clicks `save` button, not while switching tabs.
# 2 convert /static/filename.srt to filename.srt in self.transcripts.
(it is done to allow user to enter both /static/filename.srt and filename.srt)
# 3. Generate transcripts translation only when user clicks `save` button, not while switching tabs.
a) delete sjson translation for those languages, which were removed from `item.transcripts`.
Note: we are not deleting old SRT files to give user more flexibility.
b) For all SRT files in`item.transcripts` regenerate new SJSON files.
...
...
@@ -359,16 +362,21 @@ def manage_video_subtitles_save(item, user, old_metadata=None, generate_translat
# 2.
if
generate_translation
:
for
lang
,
filename
in
item
.
transcripts
.
items
():
item
.
transcripts
[
lang
]
=
os
.
path
.
split
(
filename
)[
-
1
]
# 3.
if
generate_translation
:
old_langs
=
set
(
old_metadata
.
get
(
'transcripts'
,
{}))
if
old_metadata
else
set
()
new_langs
=
set
(
item
.
transcripts
)
for
lang
in
old_langs
.
difference
(
new_langs
):
#
2
a
for
lang
in
old_langs
.
difference
(
new_langs
):
#
3
a
for
video_id
in
possible_video_id_list
:
if
video_id
:
remove_subs_from_store
(
video_id
,
item
,
lang
)
reraised_message
=
''
for
lang
in
new_langs
:
#
2
b
for
lang
in
new_langs
:
#
3
b
try
:
generate_sjson_for_all_speeds
(
item
,
...
...
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