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
553528cd
Commit
553528cd
authored
Jan 18, 2013
by
Brian Wilson
Committed by
Ashley Penney
Jan 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change get_testcenter_registration to get_tc_registration, so it's not treated as a test.
parent
d30974b5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
common/djangoapps/student/management/commands/pearson_make_tc_registration.py
+3
-3
common/djangoapps/student/management/commands/tests/__init__.py
+0
-0
common/djangoapps/student/management/commands/tests/test_pearson.py
+1
-1
common/djangoapps/student/models.py
+1
-1
common/djangoapps/student/views.py
+3
-3
No files found.
common/djangoapps/student/management/commands/pearson_make_tc_registration.py
View file @
553528cd
...
...
@@ -4,7 +4,7 @@ from time import strftime
from
django.contrib.auth.models
import
User
from
django.core.management.base
import
BaseCommand
,
CommandError
from
student.models
import
TestCenterUser
,
TestCenterRegistration
,
TestCenterRegistrationForm
,
get_t
estcenter
_registration
from
student.models
import
TestCenterUser
,
TestCenterRegistration
,
TestCenterRegistrationForm
,
get_t
c
_registration
from
student.views
import
course_from_id
from
xmodule.course_module
import
CourseDescriptor
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
...
...
@@ -134,7 +134,7 @@ class Command(BaseCommand):
# create and save the registration:
needs_updating
=
False
registrations
=
get_t
estcenter
_registration
(
student
,
course_id
,
exam_code
)
registrations
=
get_t
c
_registration
(
student
,
course_id
,
exam_code
)
if
len
(
registrations
)
>
0
:
registration
=
registrations
[
0
]
for
fieldname
in
UPDATE_FIELDS
:
...
...
@@ -181,7 +181,7 @@ class Command(BaseCommand):
change_internal
=
False
if
'exam_series_code'
in
our_options
:
exam_code
=
our_options
[
'exam_series_code'
]
registration
=
get_t
estcenter
_registration
(
student
,
course_id
,
exam_code
)[
0
]
registration
=
get_t
c
_registration
(
student
,
course_id
,
exam_code
)[
0
]
for
internal_field
in
[
'upload_error_message'
,
'upload_status'
,
'authorization_id'
]:
if
internal_field
in
our_options
:
registration
.
__setattr__
(
internal_field
,
our_options
[
internal_field
])
...
...
common/djangoapps/student/management/commands/test/__init__.py
→
common/djangoapps/student/management/commands/test
s
/__init__.py
View file @
553528cd
File moved
common/djangoapps/student/management/commands/test/test_pearson.py
→
common/djangoapps/student/management/commands/test
s
/test_pearson.py
View file @
553528cd
...
...
@@ -9,7 +9,7 @@ from django.test import TestCase
from
student.models
import
User
,
TestCenterRegistration
,
TestCenterUser
# This is stupid! Because I import a function with the word "test" in the name,
# the unittest framework tries to run *it* as a test?! Crazy!
from
student.models
import
get_t
estcenter_registration
as
get_t
c_registration
from
student.models
import
get_tc_registration
from
django.core
import
management
log
=
logging
.
getLogger
(
__name__
)
...
...
common/djangoapps/student/models.py
View file @
553528cd
...
...
@@ -547,7 +547,7 @@ class TestCenterRegistrationForm(ModelForm):
def
get_t
estcenter
_registration
(
user
,
course_id
,
exam_series_code
):
def
get_t
c
_registration
(
user
,
course_id
,
exam_series_code
):
try
:
tcu
=
TestCenterUser
.
objects
.
get
(
user
=
user
)
except
TestCenterUser
.
DoesNotExist
:
...
...
common/djangoapps/student/views.py
View file @
553528cd
...
...
@@ -31,7 +31,7 @@ from student.models import (Registration, UserProfile, TestCenterUser, TestCente
TestCenterRegistration
,
TestCenterRegistrationForm
,
PendingNameChange
,
PendingEmailChange
,
CourseEnrollment
,
unique_id_for_user
,
get_t
estcenter
_registration
)
get_t
c
_registration
)
from
certificates.models
import
CertificateStatuses
,
certificate_status_for_student
...
...
@@ -612,7 +612,7 @@ def exam_registration_info(user, course):
return
None
exam_code
=
exam_info
.
exam_series_code
registrations
=
get_t
estcenter
_registration
(
user
,
course
.
id
,
exam_code
)
registrations
=
get_t
c
_registration
(
user
,
course
.
id
,
exam_code
)
if
registrations
:
registration
=
registrations
[
0
]
else
:
...
...
@@ -712,7 +712,7 @@ def create_exam_registration(request, post_override=None):
needs_saving
=
False
exam
=
course
.
current_test_center_exam
exam_code
=
exam
.
exam_series_code
registrations
=
get_t
estcenter
_registration
(
user
,
course_id
,
exam_code
)
registrations
=
get_t
c
_registration
(
user
,
course_id
,
exam_code
)
if
registrations
:
registration
=
registrations
[
0
]
# NOTE: we do not bother to check here to see if the registration has changed,
...
...
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