-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.py
40 lines (39 loc) · 1.26 KB
/
update.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
35
36
37
38
39
40
#!python
print("content-type: text/html; charset=utf-8\n")
print()
import cgi, os, view
import cgi, os, view, html_sanitizer
sanitizer = html_sanitizer.Sanitizer()
form=cgi.FieldStorage()
if 'id' in form:
title = pageId=form["id"].value
description = open('data/'+pageId, 'r').read()
title = sanitizer.sanitize(title)
description = sanitizer.sanitize(description)
else:
title=pageId="Welcome"
description = "Hello, web"
print('''<!DOCTYPE html>
<html>
<head>
<title>WEB1 - Welcome</title>
<meta charset="utf-8">
</head>
<body>
<h2><a href="index.py">WEB<h2>
<ul>
{listStr}
</ul>
<a href = "create.py">create</a>
<form action="process_update.py" method="post">
<input type="hidden" name="pageId" value="{form_default_title}">
<p><input type="text" name="title" placeholder="title" value="{form_default_title}"></p>
<p><textarea rows="4" name="description" placeholder="description">{form_default_description}</textarea></p>
<p><input type="submit"></p>
</form>
</body>
</html>'''.format(title=title,
desc=description,
listStr=view.getList(),
form_default_title=pageId,
form_default_description=description))