Kaydet (Commit) a0e9a6d3 authored tarafından Guido van Rossum's avatar Guido van Rossum

Small nits for Grail; don't forget to cgi.translate & and <.

üst d1c1ec8a
...@@ -90,7 +90,7 @@ class FAQServer: ...@@ -90,7 +90,7 @@ class FAQServer:
<H2>Search the FAQ</H2> <H2>Search the FAQ</H2>
<FORM ACTION="faq.py?req=query"> <FORM ACTION="faq.py">
<INPUT TYPE=text NAME=query> <INPUT TYPE=text NAME=query>
<INPUT TYPE=submit VALUE="Search"><BR> <INPUT TYPE=submit VALUE="Search"><BR>
(Case insensitive regular expressions.) (Case insensitive regular expressions.)
...@@ -612,6 +612,8 @@ class FAQServer: ...@@ -612,6 +612,8 @@ class FAQServer:
pre = 1 pre = 1
if '/' in line or '@' in line: if '/' in line or '@' in line:
line = self.translate(line) line = self.translate(line)
elif '<' in line or '&' in line:
line = cgi.escape(line)
if not pre and '*' in line: if not pre and '*' in line:
line = self.emphasize(line) line = self.emphasize(line)
print line print line
...@@ -680,7 +682,7 @@ class FAQServer: ...@@ -680,7 +682,7 @@ class FAQServer:
<P> <P>
<HR> <HR>
<A HREF="http://www.python.org">Python home</A> / <A HREF="http://www.python.org">Python home</A> /
<A HREF="faq.py">FAQ home</A> / <A HREF="faq.py?req=frontpage">FAQ home</A> /
Feedback to <A HREF="mailto:guido@python.org">GvR</A> Feedback to <A HREF="mailto:guido@python.org">GvR</A>
''' '''
print ''' print '''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment