Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Armory Dashboard
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
Armory Dashboard
Commits
e76bf109
Commit
e76bf109
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Fix checked-in detection; clean up words.
parent
d3da3019
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scrape.py
+4
-6
4 additions, 6 deletions
scrape.py
templates/index.html
+11
-10
11 additions, 10 deletions
templates/index.html
with
15 additions
and
16 deletions
scrape.py
+
4
−
6
View file @
e76bf109
...
...
@@ -31,15 +31,14 @@ def scrape():
if
event_tree
.
xpath
(
'
//a[text()=
"
Final Results
"
]
'
):
fencers
=
event_tree
.
xpath
(
'
//div[@id=
"
finalResults
"
]/table/tr/td[2]/text()
'
)
fencers
=
dict
(
zip
(
fencers
,
repeat
(
"
Checked In
"
)))
event_status
=
"
Event
Closed ({0} fencers)
"
.
format
(
len
(
fencers
))
event_status
=
"
Event
has closed.
"
.
format
(
len
(
fencers
))
elif
event_tree
.
xpath
(
'
//a[text()=
"
Seeding
"
]
'
):
fencers
=
event_tree
.
xpath
(
'
//div[@id=
"
Round1Seeding
"
]/table/tr/td[2]/text()
'
)
fencers
=
dict
(
zip
(
fencers
,
repeat
(
"
Checked In
"
)))
event_status
=
"
Event is
O
ngoing
({0} fencers)
"
.
format
(
len
(
fencers
))
event_status
=
"
Event is
o
ngoing
.
"
.
format
(
len
(
fencers
))
elif
event_tree
.
xpath
(
'
//a[text()=
"
Check-In Status
"
]
'
):
event_status
=
event_tree
.
xpath
(
'
normalize-space(//div[@class=
"
checkInSummary
"
]/text())
'
)
fencers_checked_in
=
event_tree
.
xpath
(
'
//div[@id=
"
checkIn
"
]/table/tr/td[1]/text()
'
)
event_status
=
"
Check-in is open.
"
fencers_checked_in
=
[
True
if
len
(
list
(
f
))
else
False
for
f
in
event_tree
.
xpath
(
'
//div[@id=
"
checkIn
"
]/table/tr/td[1]
'
)]
fencers
=
event_tree
.
xpath
(
'
//div[@id=
"
checkIn
"
]/table/tr/td[2]/text()
'
)
fencers
=
dict
(
zip
(
fencers
,
fencers_checked_in
))
try
:
...
...
@@ -57,7 +56,6 @@ def scrape():
'
previous_total
'
:
0
}
for
fencer
,
is_checked_in
in
fencers
.
items
():
is_checked_in
=
bool
(
is_checked_in
.
strip
())
fencer
=
fencer
.
strip
()
this_event
[
'
fencers
'
].
append
(
fencer
)
if
is_checked_in
:
...
...
This diff is collapsed.
Click to expand it.
templates/index.html
+
11
−
10
View file @
e76bf109
...
...
@@ -34,26 +34,27 @@
</style>
</head>
<body>
<h1>
{{tournament_name}}
</h1>
<h2>
{{tournament_details}}
</h2>
<h2>
{{events|length}} Events
</h2>
<h1>
{{
tournament_name
}}
</h1>
<h2>
{{
tournament_details
}}
</h2>
<h2>
{{
events|length
}} Events
</h2>
<hr>
{% for e in events %}
<section>
<a
name=
"{{e['name']}}"
>
<h3><a
href=
"#{{e['name']}}"
>
{{e['name']}}
</a></h3>
<h4>
{{e['time']}}
</h4>
<p>
{{e['status']}}
</p>
<a
name=
"{{ e['name'] }}"
>
<h3><a
href=
"#{{ e['name'] }}"
>
{{ e['name'] }}
</a></h3>
<h4>
{{ e['time'] }}
</h4>
<p>
{{ e['status'] }}
</p>
<p><strong>
{{ e['fencers_checked_in']|length }}
</strong>
of
<strong>
{{ e['fencers']|len }}
</strong>
fencers have checked in.
</p>
{% if e['previously_fenced'] %}
<p>
{{e['previous_total']}} fencers have participated in prior events:
</p>
<p>
<strong>
{{
e['previous_total']
}}
</strong>
fencers have participated in prior events:
</p>
<ul>
{% for pe in e['previously_fenced'] %}
<li>
{{pe}} - {{e['previously_fenced'][pe]}} fencers
</li>
<li>
<strong>
{{
pe
}}
</strong>
- {{
e['previously_fenced'][pe]
}} fencers
</li>
{% endfor %}
</ul>
{% endif %}
{% if e['new_fencers_not_checked_in'] %}
<p
class=
"hl"
>
{{e['new_fencers_not_checked_in']|length}} new fencers not yet checked in
</p>
<p
class=
"hl"
>
{{
e['new_fencers_not_checked_in']|length
}} new fencers not yet checked in
</p>
{% endif %}
</section>
{% endfor %}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment