Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
cbaba5aa
Commit
cbaba5aa
authored
Jul 28, 2014
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add event tracking for student training and image upload
parent
c80d9141
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
76 additions
and
7 deletions
+76
-7
openassessment/xblock/openassessmentblock.py
+0
-3
openassessment/xblock/static/js/openassessment.min.js
+0
-0
openassessment/xblock/static/js/spec/oa_file_upload.js
+41
-0
openassessment/xblock/static/js/src/oa_file_upload.js
+18
-4
openassessment/xblock/static/js/src/oa_shared.js
+8
-0
openassessment/xblock/student_training_mixin.py
+9
-0
No files found.
openassessment/xblock/openassessmentblock.py
View file @
cbaba5aa
...
...
@@ -271,8 +271,6 @@ class OpenAssessmentBlock(
else
:
return
False
@property
def
in_studio_preview
(
self
):
"""
...
...
@@ -649,4 +647,3 @@ class OpenAssessmentBlock(
return
key
.
to_deprecated_string
()
else
:
return
unicode
(
key
)
openassessment/xblock/static/js/openassessment.min.js
View file @
cbaba5aa
This diff is collapsed.
Click to expand it.
openassessment/xblock/static/js/spec/oa_file_upload.js
0 → 100644
View file @
cbaba5aa
describe
(
"OpenAssessment.FileUploader"
,
function
()
{
var
fileUploader
=
null
;
var
TEST_URL
=
"http://www.example.com/upload"
;
var
TEST_IMAGE
=
{
data
:
"abcdefghijklmnopqrstuvwxyz"
,
name
:
"test.jpg"
,
size
:
10471
,
type
:
"image/jpeg"
};
var
TEST_CONTENT_TYPE
=
"image/jpeg"
;
beforeEach
(
function
()
{
fileUploader
=
new
OpenAssessment
.
FileUploader
();
});
it
(
"logs a file upload event"
,
function
()
{
// Stub the AJAX call, simulating success
var
successPromise
=
$
.
Deferred
(
function
(
defer
)
{
defer
.
resolve
();
}
).
promise
();
spyOn
(
$
,
'ajax'
).
andReturn
(
successPromise
);
// Stub the event logger
spyOn
(
Logger
,
'log'
);
// Upload a file
fileUploader
.
upload
(
TEST_URL
,
TEST_IMAGE
,
TEST_CONTENT_TYPE
);
// Verify that the event was logged
expect
(
Logger
.
log
).
toHaveBeenCalledWith
(
"openassessment.upload_file"
,
{
contentType
:
TEST_CONTENT_TYPE
,
imageName
:
TEST_IMAGE
.
name
,
imageSize
:
TEST_IMAGE
.
size
,
imageType
:
TEST_IMAGE
.
type
}
);
});
});
\ No newline at end of file
openassessment/xblock/static/js/src/oa_file_upload.js
View file @
cbaba5aa
...
...
@@ -8,7 +8,7 @@ PUT requests on the server.
Args:
url (string): The one-time URL we're uploading to.
d
ata (object): The object to upload, which should have properties:
imageD
ata (object): The object to upload, which should have properties:
data (string)
name (string)
size (int)
...
...
@@ -20,18 +20,32 @@ Returns:
*/
OpenAssessment
.
FileUploader
=
function
()
{
this
.
upload
=
function
(
url
,
d
ata
,
contentType
)
{
this
.
upload
=
function
(
url
,
imageD
ata
,
contentType
)
{
return
$
.
Deferred
(
function
(
defer
)
{
$
.
ajax
({
url
:
url
,
type
:
'PUT'
,
data
:
d
ata
,
data
:
imageD
ata
,
async
:
false
,
processData
:
false
,
contentType
:
contentType
,
}).
done
(
function
(
data
,
textStatus
,
jqXHR
)
{
defer
.
resolve
();
}
function
(
data
,
textStatus
,
jqXHR
)
{
// Log an analytics event
Logger
.
log
(
"openassessment.upload_file"
,
{
contentType
:
contentType
,
imageName
:
imageData
.
name
,
imageSize
:
imageData
.
size
,
imageType
:
imageData
.
type
}
);
// Return control to the caller
defer
.
resolve
();
}
).
fail
(
function
(
data
,
textStatus
,
jqXHR
)
{
defer
.
rejectWith
(
this
,
[
textStatus
]);
...
...
openassessment/xblock/static/js/src/oa_shared.js
View file @
cbaba5aa
...
...
@@ -17,3 +17,10 @@ if (typeof OpenAssessment == "undefined" || !OpenAssessment) {
if
(
typeof
window
.
gettext
===
'undefined'
)
{
window
.
gettext
=
function
(
text
)
{
return
text
;
};
}
// Stub event logging if the runtime doesn't provide it
if
(
typeof
window
.
Logger
===
'undefined'
)
{
window
.
Logger
=
{
log
:
function
(
event_type
,
data
,
kwargs
)
{}
};
}
\ No newline at end of file
openassessment/xblock/student_training_mixin.py
View file @
cbaba5aa
...
...
@@ -167,6 +167,15 @@ class StudentTrainingMixin(object):
corrections
=
student_training
.
assess_training_example
(
self
.
submission_uuid
,
data
[
'options_selected'
]
)
self
.
runtime
.
publish
(
self
,
"openassessment.student_training_assess_example"
,
{
"submission_uuid"
:
self
.
submission_uuid
,
"options_selected"
:
data
[
"options_selected"
],
"corrections"
:
corrections
}
)
except
student_training
.
StudentTrainingRequestError
:
msg
=
(
u"Could not check student training scores for "
...
...
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