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
f0850e25
Commit
f0850e25
authored
Aug 04, 2012
by
ichuang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'lms-migration' of github.com:MITx/mitx into lms-migration
parents
ebe6bf48
23669f5a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
utility-scripts/create_groups.py
+6
-1
utility-scripts/create_user.py
+6
-1
No files found.
utility-scripts/create_groups.py
View file @
f0850e25
...
@@ -10,7 +10,12 @@ import os, sys, string, re
...
@@ -10,7 +10,12 @@ import os, sys, string, re
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
from
lms.envs.dev
import
*
try
:
from
lms.envs.dev
import
*
except
Exception
as
err
:
print
"Run this script from the top-level mitx directory (mitx_all/mitx), not a subdirectory."
sys
.
exit
(
-
1
)
from
django.conf
import
settings
from
django.conf
import
settings
from
django.contrib.auth.models
import
User
,
Group
from
django.contrib.auth.models
import
User
,
Group
...
...
utility-scripts/create_user.py
View file @
f0850e25
...
@@ -14,7 +14,12 @@ import readline
...
@@ -14,7 +14,12 @@ import readline
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
sys
.
path
.
append
(
os
.
path
.
abspath
(
'.'
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.dev'
from
lms.envs.dev
import
*
try
:
from
lms.envs.dev
import
*
except
Exception
as
err
:
print
"Run this script from the top-level mitx directory (mitx_all/mitx), not a subdirectory."
sys
.
exit
(
-
1
)
from
student.models
import
UserProfile
,
Registration
from
student.models
import
UserProfile
,
Registration
from
external_auth.models
import
ExternalAuthMap
from
external_auth.models
import
ExternalAuthMap
...
...
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