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
1eacd5e3
Commit
1eacd5e3
authored
Dec 14, 2012
by
Don Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix infinite loop in videosourceSample. Had fixed same one in
parse_videosource but neglected to fix this one.
parent
e2918c2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
cms/static/js/models/settings/course_details.js
+6
-4
No files found.
cms/static/js/models/settings/course_details.js
View file @
1eacd5e3
...
...
@@ -76,8 +76,8 @@ CMS.Models.Settings.CourseDetails = Backbone.Model.extend({
_videoprefix
:
/
\s
*<video
\s
*youtube="/g
,
// the below is lax to enable validation
_videospeedparse
:
/
[^
:
]
*/g
,
// /\d+\.?\d*(?=:)/g,
_videokeyparse
:
/
([^
,
\/]
+
)
/g
,
_videonosuffix
:
/
[^
\"\/\
>]
+/g
,
_videokeyparse
:
/
([^
,
\/
>
]
+
)
/g
,
_videonosuffix
:
/
[^
"
\/
>
]
+/g
,
_getNextMatch
:
function
(
regex
,
string
,
cursor
)
{
regex
.
lastIndex
=
cursor
;
var
result
=
regex
.
exec
(
string
);
...
...
@@ -113,13 +113,15 @@ CMS.Models.Settings.CourseDetails = Backbone.Model.extend({
cursor
=
this
.
_videokeyparse
.
lastIndex
+
1
;
while
(
cursor
<
videostring
.
length
&&
bestspeed
!=
1.0
)
{
parsedspeed
=
this
.
_getNextMatch
(
this
.
_videospeedparse
,
videostring
,
cursor
);
cursor
=
this
.
_videospeedparse
.
lastIndex
+
1
;
if
(
parsedspeed
)
cursor
=
this
.
_videospeedparse
.
lastIndex
+
1
;
else
break
;
if
(
Math
.
abs
(
Number
(
parsedspeed
)
-
1.0
)
<
Math
.
abs
(
bestspeed
-
1.0
))
{
bestspeed
=
Number
(
parsedspeed
);
bestkey
=
this
.
_getNextMatch
(
this
.
_videokeyparse
,
videostring
,
cursor
);
}
else
this
.
_getNextMatch
(
this
.
_videokeyparse
,
videostring
,
cursor
);
cursor
=
this
.
_videokeyparse
.
lastIndex
+
1
;
if
(
this
.
_videokeyparse
.
lastIndex
>
cursor
)
cursor
=
this
.
_videokeyparse
.
lastIndex
+
1
;
else
cursor
++
;
}
}
else
{
...
...
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