-
Notifications
You must be signed in to change notification settings - Fork 0
/
process_course_url.py
executable file
·34 lines (26 loc) · 1.11 KB
/
process_course_url.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import sys
import urllib
from tt_parser import *
from tt_generator import *
from tt_prettyprinter import *
course_id = int(sys.argv[1])
url = urllib.unquote(sys.argv[2])
parser = HTMLCourseParser(url)
course = parser.parse()
html_result = "<div id='coursediv" + str(course_id) + "' >"
html_result += "<img src='line.png' />"
html_result += "<h1 class='mtop0 mbottom03 cnone' style='font-size: 14px'>%s" % (course.long_name)
html_result += "<span class='greytxt' style='font-size: 10px;'> (%s)</span>" % (course.name)
html_result += "  <img src='remove.png' onclick='removeCourse(coursediv" + str(course_id) + ")' />"
html_result += "</h1>"
html_result += "<input type='hidden' name='course%i' value='%s'>" \
% (course_id, url)
block_id = 0
sorted_blocks = sorted(course.lesson_blocks, key=lambda x: x.category, reverse=True)
for block in sorted_blocks:
block_id += 1
html_result += "<input type='checkbox' name='course%itype%i' value='%s' checked>%s " \
% (course_id, block_id, block.category, block.category)
html_result += "</div>"
a = "<tr><td></td><td>"+html_result+"</td><td></td></tr>"
print a