From 4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2 Mon Sep 17 00:00:00 2001 From: darylm503 Date: Mon, 16 Apr 2012 22:12:42 +0000 Subject: AppPkg/Applications/Python: Add Python 2.7.2 sources since the release of Python 2.7.3 made them unavailable from the python.org web site. These files are a subset of the python-2.7.2.tgz distribution from python.org. Changed files from PyMod-2.7.2 have been copied into the corresponding directories of this tree, replacing the original files in the distribution. Signed-off-by: daryl.mcdaniel@intel.com git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13197 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Python/Python-2.7.2/Demo/cgi/README | 11 ++ .../Python/Python-2.7.2/Demo/cgi/cgi0.sh | 8 ++ .../Python/Python-2.7.2/Demo/cgi/cgi1.py | 14 +++ .../Python/Python-2.7.2/Demo/cgi/cgi2.py | 22 ++++ .../Python/Python-2.7.2/Demo/cgi/cgi3.py | 10 ++ .../Python/Python-2.7.2/Demo/cgi/wiki.py | 123 +++++++++++++++++++++ 6 files changed, 188 insertions(+) create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/README create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi0.sh create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi1.py create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi2.py create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi3.py create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/wiki.py (limited to 'AppPkg/Applications/Python/Python-2.7.2/Demo/cgi') diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/README b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/README new file mode 100644 index 0000000000..90d6c9bbe5 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/README @@ -0,0 +1,11 @@ +CGI Examples +------------ + +Here are some example CGI programs. For a larger example, see +../../Tools/faqwiz/. + +cgi0.sh -- A shell script to test your server is configured for CGI +cgi1.py -- A Python script to test your server is configured for CGI +cgi2.py -- A Python script showing how to parse a form +cgi3.py -- A Python script for driving an arbitrary CGI application +wiki.py -- Sample CGI application: a minimal Wiki implementation diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi0.sh b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi0.sh new file mode 100644 index 0000000000..ee353755a7 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi0.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +# If you can't get this to work, your web server isn't set up right + +echo Content-type: text/plain +echo +echo Hello world +echo This is cgi0.sh diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi1.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi1.py new file mode 100644 index 0000000000..3a0c604e23 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi1.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +"""CGI test 1 - check server setup.""" + +# Until you get this to work, your web server isn't set up right or +# your Python isn't set up right. + +# If cgi0.sh works but cgi1.py doesn't, check the #! line and the file +# permissions. The docs for the cgi.py module have debugging tips. + +print "Content-type: text/html" +print +print "

Hello world

" +print "

This is cgi1.py" diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi2.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi2.py new file mode 100644 index 0000000000..1ed9f5501b --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi2.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +"""CGI test 2 - basic use of cgi module.""" + +import cgitb; cgitb.enable() + +import cgi + +def main(): + form = cgi.FieldStorage() + print "Content-type: text/html" + print + if not form: + print "

No Form Keys

" + else: + print "

Form Keys

" + for key in form.keys(): + value = form[key].value + print "

", cgi.escape(key), ":", cgi.escape(value) + +if __name__ == "__main__": + main() diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi3.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi3.py new file mode 100644 index 0000000000..224fc83fef --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/cgi3.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +"""CGI test 3 (persistent data).""" + +import cgitb; cgitb.enable() + +from wiki import main + +if __name__ == "__main__": + main() diff --git a/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/wiki.py b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/wiki.py new file mode 100644 index 0000000000..990c2e6721 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/wiki.py @@ -0,0 +1,123 @@ +"""Wiki main program. Imported and run by cgi3.py.""" + +import os, re, cgi, sys, tempfile +escape = cgi.escape + +def main(): + form = cgi.FieldStorage() + print "Content-type: text/html" + print + cmd = form.getvalue("cmd", "view") + page = form.getvalue("page", "FrontPage") + wiki = WikiPage(page) + method = getattr(wiki, 'cmd_' + cmd, None) or wiki.cmd_view + method(form) + +class WikiPage: + + homedir = tempfile.gettempdir() + scripturl = os.path.basename(sys.argv[0]) + + def __init__(self, name): + if not self.iswikiword(name): + raise ValueError, "page name is not a wiki word" + self.name = name + self.load() + + def cmd_view(self, form): + print "

", escape(self.splitwikiword(self.name)), "

" + print "

" + for line in self.data.splitlines(): + line = line.rstrip() + if not line: + print "

" + else: + print self.formatline(line) + print "


" + print "

", self.mklink("edit", self.name, "Edit this page") + ";" + print self.mklink("view", "FrontPage", "go to front page") + "." + + def formatline(self, line): + words = [] + for word in re.split('(\W+)', line): + if self.iswikiword(word): + if os.path.isfile(self.mkfile(word)): + word = self.mklink("view", word, word) + else: + word = self.mklink("new", word, word + "*") + else: + word = escape(word) + words.append(word) + return "".join(words) + + def cmd_edit(self, form, label="Change"): + print "

", label, self.name, "

" + print '
' % self.scripturl + s = '' + print s % self.data + print '' + print '' % self.name + print '
' + print '' % label + print "
" + + def cmd_create(self, form): + self.data = form.getvalue("text", "").strip() + error = self.store() + if error: + print "

I'm sorry. That didn't work

" + print "

An error occurred while attempting to write the file:" + print "

", escape(error) + else: + # Use a redirect directive, to avoid "reload page" problems + print "" + s = '' + print s % (self.scripturl + "?cmd=view&page=" + self.name) + print "" + print "

OK

" + print "

If nothing happens, please click here:", + print self.mklink("view", self.name, self.name) + + def cmd_new(self, form): + self.cmd_edit(form, label="Create") + + def iswikiword(self, word): + return re.match("[A-Z][a-z]+([A-Z][a-z]*)+", word) + + def splitwikiword(self, word): + chars = [] + for c in word: + if chars and c.isupper(): + chars.append(' ') + chars.append(c) + return "".join(chars) + + def mkfile(self, name=None): + if name is None: + name = self.name + return os.path.join(self.homedir, name + ".txt") + + def mklink(self, cmd, page, text): + link = self.scripturl + "?cmd=" + cmd + "&page=" + page + return '%s' % (link, text) + + def load(self): + try: + f = open(self.mkfile()) + data = f.read().strip() + f.close() + except IOError: + data = "" + self.data = data + + def store(self): + data = self.data + try: + f = open(self.mkfile(), "w") + f.write(data) + if data and not data.endswith('\n'): + f.write('\n') + f.close() + return "" + except IOError, err: + return "IOError: %s" % str(err) -- cgit v1.2.3