Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Boeing OpenEdX Data Pipeline
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CS 5934 Team 2 (Blacksburg)
Boeing OpenEdX Data Pipeline
Compare revisions
d2583a873ec21bed4e196d7efb03e0741085de26 to 612c7f3aad4456f9d4186aeb7cb134867b22d889
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
boeing-capstone-project-a/boeing-openedx-data-pipeline
Select target project
No results found
612c7f3aad4456f9d4186aeb7cb134867b22d889
Select Git revision
Branches
main
Swap
Target
boeing-capstone-project-a/boeing-openedx-data-pipeline
Select target project
boeing-capstone-project-a/boeing-openedx-data-pipeline
1 result
d2583a873ec21bed4e196d7efb03e0741085de26
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix regex for quiz ids
· 93ca5920
Chris Lattman
authored
1 year ago
93ca5920
Merge branch 'fix-regex-quiz-ids' into 'main'
· 612c7f3a
Sydney May
authored
1 year ago
Fix regex for quiz ids See merge request
!10
612c7f3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
service/pipeline.py
+1
-1
1 addition, 1 deletion
service/pipeline.py
with
1 addition
and
1 deletion
service/pipeline.py
View file @
612c7f3a
...
...
@@ -60,7 +60,7 @@ while True:
# Get module IDs of quiz questions
quiz_questions_matches
=
findall
(
"'
fields
'
: {[^_]+_name
'
:
'
.*[q|Q]uiz.*
'
,\s+
'
xml_attributes
'
: [^}]+}}
"
,
"'
fields
'
: {
\s+
'
children
'
: \[\s+\[\s+
'
html
'
,
[^_]+_name
'
:
'
.*[q|Q]uiz.*
'
,\s+
'
xml_attributes
'
: [^}]+}}
"
,
formatted_document
)
question_id_to_quiz_id
=
{}
...
...
This diff is collapsed.
Click to expand it.