Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-proctoring
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
OpenEdx
edx-proctoring
Commits
8f88daff
Commit
8f88daff
authored
Aug 31, 2015
by
Hasnain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changes of text and some styling
parent
53968f79
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
41 deletions
+15
-41
edx_proctoring/templates/proctoring/seq_proctored_exam_footer.html
+0
-11
edx_proctoring/templates/proctoring/seq_proctored_exam_instructions.html
+2
-27
edx_proctoring/templates/proctoring/seq_proctored_exam_ready_to_start.html
+1
-1
edx_proctoring/templates/proctoring/seq_proctored_practice_exam_entrance.html
+2
-2
edx_proctoring/templates/proctoring/seq_proctored_practice_exam_footer.html
+10
-0
No files found.
edx_proctoring/templates/proctoring/seq_proctored_exam_footer.html
View file @
8f88daff
{% load i18n %}
<div
class=
"faq-proctoring-exam"
>
<h4>
{% trans "See Also" %}
</h4>
<p>
<a
class=
"footer-link"
href=
"{{link_urls.faq}}"
target=
"_blank"
>
{% blocktrans %}
Frequently asked questions about proctoring and earning college credit
{% endblocktrans %}
</a>
<a
class=
"footer-link"
href=
"{{link_urls.online_proctoring_rules}}"
target=
"_blank"
>
{% blocktrans %}
Online proctoring rules
{% endblocktrans %}
</a>
<a
class=
"footer-link"
href=
"{{link_urls.tech_requirements}}"
target=
"_blank"
>
{% blocktrans %}
Technical Requirements for taking a proctored exam
{% endblocktrans %}
</a>
</p>
</div>
edx_proctoring/templates/proctoring/seq_proctored_exam_instructions.html
View file @
8f88daff
{% load i18n %}
<div
class=
"sequence proctored-exam instructions message-
top
-bar"
data-exam-id=
"{{exam_id}}"
data-exam-started-poll-url=
"{{exam_started_poll_url}}"
>
<div
class=
"sequence proctored-exam instructions message-
left
-bar"
data-exam-id=
"{{exam_id}}"
data-exam-started-poll-url=
"{{exam_started_poll_url}}"
>
<h3>
{% blocktrans %}
You Have Chosen To Take a Proctored Exam
...
...
@@ -27,7 +27,7 @@
{% endblocktrans %}
</p>
<p>
<span
class=
"proctored-exam-code"
role=
"application"
>
{{exam_code}}
</span>
<button
class=
'proctored-exam-select-code'
>
Select exam code
</button>
<span
class=
"proctored-exam-code"
role=
"application"
>
{{exam_code}}
</span>
</p>
<p>
{% blocktrans %}
...
...
@@ -93,31 +93,6 @@
}
);
$
(
'.proctored-exam-select-code'
).
click
(
function
()
{
selectText
(
$
(
'.proctored-exam-code'
));
$
(
event
.
currentTarget
).
blur
();
});
function
selectText
(
textToBeSelected
)
{
// this selects all the text in an element
// http://stackoverflow.com/questions/12243898/how-to-select-all-text-in-contenteditable-div
var
doc
=
document
,
range
,
selection
,
element
=
textToBeSelected
[
0
];
if
(
doc
.
body
.
createTextRange
)
{
range
=
doc
.
body
.
createTextRange
();
range
.
moveToElementText
(
element
);
range
.
select
();
}
else
if
(
window
.
getSelection
)
{
selection
=
window
.
getSelection
();
range
=
doc
.
createRange
();
range
.
selectNodeContents
(
element
);
selection
.
removeAllRanges
();
selection
.
addRange
(
range
);
}
}
$
(
document
).
ready
(
function
(){
_waiting_for_proctored_interval
=
setInterval
(
poll_exam_started
,
...
...
edx_proctoring/templates/proctoring/seq_proctored_exam_ready_to_start.html
View file @
8f88daff
{% load i18n %}
<div
class=
"sequence proctored-exam success-
top
-bar instructions"
data-exam-id=
"{{exam_id}}"
data-exam-started-poll-url=
"{{exam_started_poll_url}}"
>
<div
class=
"sequence proctored-exam success-
left
-bar instructions"
data-exam-id=
"{{exam_id}}"
data-exam-started-poll-url=
"{{exam_started_poll_url}}"
>
<h3>
{% blocktrans %}
Your Proctoring Installation and Set Up is Complete
...
...
edx_proctoring/templates/proctoring/seq_proctored_practice_exam_entrance.html
View file @
8f88daff
...
...
@@ -22,10 +22,10 @@
{% endblocktrans %}
</p>
<i
class=
"fa fa-arrow-circle-right start-timed-exam"
data-ajax-url=
"{{enter_exam_endpoint}}"
data-exam-id=
"{{exam_id}}"
data-attempt-proctored=
true
data-start-immediately=
false
></i>
<i
class=
"fa
practice-exam
fa-arrow-circle-right start-timed-exam"
data-ajax-url=
"{{enter_exam_endpoint}}"
data-exam-id=
"{{exam_id}}"
data-attempt-proctored=
true
data-start-immediately=
false
></i>
</button>
</div>
{% include 'proctoring/seq_proctored_exam_footer.html' %}
{% include 'proctoring/seq_proctored_
practice_
exam_footer.html' %}
<script
type=
"text/javascript"
>
$
(
'.start-timed-exam'
).
click
(
...
...
edx_proctoring/templates/proctoring/seq_proctored_practice_exam_footer.html
0 → 100644
View file @
8f88daff
{% load i18n %}
<div
class=
"faq-proctoring-exam"
>
<p>
<a
class=
"footer-link"
href=
"{{link_urls.about_proctored_exams}}"
target=
"_blank"
>
{% blocktrans %}
About Proctored Exams
{% endblocktrans %}
</a>
</p>
</div>
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