Archive for August, 2010
Solution for: “Microsoft office has stopped working” (applies to Office 2007 & 2010)
Symptoms: Microsoft word/excel/powerpoint/etc. crash a few seconds after being opened with the error message:
As a few clients of mine have upgraded to MS Office 2010, this problem has appeared a few times and it seems damn near impossible to fix… but there is a fix. You ready?
Set your default printer to the “Microsoft XPS Document Writer”.
I don’t know why this works, but it’s going to have to do until M$ releases and update/patch/fix/etc.
jqueryFileTree connector script for python cgi
If you use jquery and haven’t messed with the jqueryFileTree plugin, I’d highly recommend you do so. It’s pretty neat, and there are connector scripts already written in various languages for use with this plugin. However, there wasn’t one for python cgi (there was one for django however). So, I wrote my own! Try it out:
# jqueryFileTree connector script for python cgi
# Version: 1.0 / 10 August 2010
# Author: Charles Hamilton / musashi@nefaria.com
# Released under the GNU GPLv3
# Modifications and improvements are welcome
import os, cgi, cgitb, urllib, re
cgitb.enable()
form = cgi.FieldStorage()
print ’Content-Type: text/html\n\n‘
print ’<ul class="jqueryFileTree" style="display: none;">‘
path = urllib.unquote(form['dir'].value)
dirs = []
files = []
filelist = sorted(os.listdir(path))
for object in filelist:
if os.path.isfile(path + ‘/‘ + object):
ext = os.path.splitext(object)
files.append(‘<li class="file ext_‘ + re.sub(‘\.‘, ”, ext[1]) + ‘"><a href="#" rel="‘+ path + object + ‘">‘+ object + ‘</a></li>‘)
elif os.path.isdir(path + ‘/‘ + object):
dirs.append(‘<li class="directory collapsed"><a href="#" rel="‘+ path + object +’/">‘ + object + ‘</a></li>‘)
for d in dirs:
print d
for f in files:
print f
print ’</ul>‘
Python + Reportlab: example #1
So I’ve been using reportlab lately and I have to say, it’s pretty neat. This post will (hopefully) be the first of many to follow. It’s just a simple example that shows how to take input from a web form and insert it into a PDF. First, the code:
2
3 import cgi, sys
4
5 form = cgi.FieldStorage()
6
7 if not "name" in form:
8 print """Content-Type: text/html\n\n
9 <html>
10 <head>
11 <title>Reportlab Example</title>
12 </head>
13 <body>
14 <form action="index2.cgi" method="post" enctype="multipart/form-data">
15 <fieldset>
16 <legend>Personal Info:</legend>
17 Name: <input type="text" name="name"><br />
18 Photo: <input type="file" name="photo"><br />
19 <input type="submit">
20 </fieldset>
21 </form>
22 </body>
23 </head>"""
24
25 else:
26
27 from reportlab.platypus import *
28 from reportlab.lib.styles import getSampleStyleSheet
29 from reportlab.lib.units import inch
30 from reportlab.lib import colors
31 doc = SimpleDocTemplate(sys.stdout)
32 styles = getSampleStyleSheet()
33 content = []
34
35 if form['photo'].filename:
36 image = Image(form['photo'].file)
37 image.drawHeight = 2*inch*image.drawHeight / image.drawWidth
38 image.drawWidth = 2*inch
39
40 if form['name'].value:
41 text1 = Paragraph(form['name'].value, styles['Heading1'])
42 text2 = Paragraph(form['name'].value, styles['Heading2'])
43 text3 = Paragraph(form['name'].value, styles['Heading3'])
44
45 content.append(text1)
46 content.append(text2)
47 content.append(text3)
48 content.append(image)
49 print "Content-Type: application/pdf"
50 print "Content-Disposition: attachment; filename=example.pdf\n\n"
51 doc.build(content)
Now the explanation:
Lines #1 – #5 handle specifying the interpreter, importing modules, and initializing the “FieldStorage” dictionary (as the variable ‘form’).
2
3 import cgi, sys
4
5 form = cgi.FieldStorage()
Line #7 tests whether the form has been submitted by checking to see if the ‘name’ field has been filled out. There’s many better ways to test for form submission, but for the purposes of our example, this will work just fine.
Lines #8 – #23 print the form
9 <html>
10 <head>
11 <title>Reportlab Example</title>
12 </head>
13 <body>
14 <form action="index2.cgi" method="post" enctype="multipart/form-data">
15 <fieldset>
16 <legend>Personal Info:</legend>
17 Name: <input type="text" name="name"><br />
18 Photo: <input type="file" name="photo"><br />
19 <input type="submit">
20 </fieldset>
21 </form>
22 </body>
23 </head>"""
Lines #26 – #29 import some more modules (i.e., reportlab related stuff).
27 from reportlab.lib.styles import getSampleStyleSheet
28 from reportlab.lib.units import inch
29 from reportlab.lib import colors
Now line #30 is important, this is where we decide where we want to write the output. We can either save the output to a file, or we can dump it to stdout (i.e., back to the web browser). In this example, we’re going to send the output back to the web browser.
Line #31 handles getting the style sheet that we’re going to use to format our text.
In line #32, we initialize the ‘content’ dictionary — this is where we’re going to keep the elements of our PDF until we’re ready to write it to stdout.
In lines #34 – #37, we test for the ‘photo’ field — if it has been submitted, we create an Image object out of it. We’re assuming that the user is going to submit a photo, but in reality, the user could submit anything so some further “hardening” of this form would be required in order to ensure that the only things that actually get submitted are image files.
34 if form['photo'].filename:
35 image = Image(form['photo'].file)
36 image.drawHeight = 2*inch*image.drawHeight / image.drawWidth
37 image.drawWidth = 2*inch
Lines #39 – #42 test to see if the ‘name’ field has been submitted; if it has, it creates some text objects to insert into our PDF.
40 text1 = Paragraph(form['name'].value, styles['Heading1'])
41 text2 = Paragraph(form['name'].value, styles['Heading2'])
42 text3 = Paragraph(form['name'].value, styles['Heading3'])
Lines #44 – #47 append all the objects that we want to appear in our PDF, to the ‘content’ dictionary we created earlier.
45 content.append(text2)
46 content.append(text3)
47 content.append(image)
Lines #48 – #49 send the appropriate headers to the web browser, before we send our completed PDF file.
49 print "Content-Disposition: attachment; filename=example.pdf\n\n"
And finally, line #50 builds our PDF and sends the output to stdout.
Test it out; you should end up with a PDF that looks something like this:
Of course, this example doesn’t even scratch the surface of what you can do with reportlab. Hopefully I’ll post some more examples later on