Kung FuKung Fu

Fujian White Crane Kung Fu

ZopeZope

What I have and am doing with Zope

PhotosPhotos

Photoalbum, both old and new.

ReceptsamlingenReceptsamlingen

In Swedish only. About my "Collection of Recipes" website.

Contact meContact me

My contact details and how to contact me.

  Mobile version of this page Mobile version of this page

RSS

Hot topics

by u24: this is exactly what I've been looking for! but where's the code, man?...

"Clever" date formatting accessibility

by betabug: uhm.... ZPL is rather BSD based, not GPL... but anyway, it's definitely muc...

TinyMCE + Zope = ZTinyMCE

by : teste teste testete tet et e tete...

Autosaving textarea with AJAX

by Peter Bengtsson: Thanks. Corrected now....

Releasing IssueTrackerProduct 0.9

by daniel: Hi, the link is incorrect. it should be: http://www.issuetrackerproduct.com...

Releasing IssueTrackerProduct 0.9

by Wu: Nice work! Just a note, the link to the issuetrackerproduct website is bro...

Releasing IssueTrackerProduct 0.9

by Martijn Faassen: I just found this entry; wow, I don't think I've been anyone's hero before....

What I like and dislike about Grok

by Ian Bicking: One of the problems with complex and somewhat magical systems is that newer...

What I like and dislike about Grok

by a: test...

Autosaving textarea with AJAX

by test: test...

Autosaving textarea with AJAX

Old entries


March, 2008
Tip: Printer friendly pages with Page Templates in Zope
apple.com/store doesn't work in Firefox (on Linux)
Mocking a Python standard library
See you at PyCon 2008
File check before delete
"Confessions of a College Callgirl" is the new "My Secret Life As A Prostitute"

February, 2008
hostip.info - Look up the location from an IP
CommandLineApp by Doug Hellmann
If Americans knew - An interesting insight into the Israeli Palestine conflict
Chinese New Year and the Persecution of Falun Gong in China
logrotating all my Zope event logs
Ocado gets customer service right
Why Django and Grok matters

January, 2008
2007
2006
2005
2004
2003

 

You're viewing blogs from Zope only.

View all different categories

30th of May

zope-memory-readings - Tracking Zope2's memory usage by URL

http://code.google.com/p/zope-memory-readings/ 

zope-memory-readings - Tracking Zope2's memory usage by URL I've just released a new little project in Python for tracking memory usage in Zope2 applications with the added benefit that you can hopefully see what URL causes which memory usage "jumps". Hopefully this can help Zope2 developers find out what causes RAM bloat but can also help in helping you optimize your application by early in the development process find out what uses too much RAM. I wouldn't be surprised that there is already a program that does something like this. I've just never seen one. Also by putting this out as an Open Source project and blogging about it hopefully more clever people than me will come forward and point out the right way to do things.

I've also used Google Code this time to manage the project. I've used it before but only for hosting a public SVN for the IssueTrackerProduct SVN. I have to say that I was quite impressed with Google Code this second time. I think it's still fundamentally wrong to confuse people with by offering both download and SVN checkout. I did both this time but I think I might give up on the downloads because who out there, who understands that he/she needs to debug RAM usage, doesn't know how to use SVN?

Finally a little disclaimer: By writing about this here, preparing it on Google Code and writing a README.txt file I've now spent more time "managing" the project than I have on coding it. It's an early test release which hopefully will stir up some ideas for genuine important improvements. I had fun coding it as well since this is my first attempt with Flot which has been great to work with. You get very quick and powerful results. Lastly, I haven't tested this in anything but 32-bit Ubuntu Linux and Firefox.

Here is a sample report: 2008-05-30_16.47.32__3.8_minutes

29th of April

Releasing IssueTrackerProduct 0.9

http://www.issuetrackerproduct.com/News/0.9.0 

Tonight I released an experimental version of the IssueTrackerProduct that is packed with new cool stuff. I call this an experimental release (but I run it on my production systems) because it's got so many new features.

During the course of preparing for this release and writing the news item I deployed the latest version to real.issuetrackerproduct.com and immediately noticed two bugs I to do with user names. So I immediately fixed those and prepared a new release minutes after. I expect to release another more stable version within a few weeks.

11th of April

What I like and dislike about Grok

http://www.nabble.com/Teach...rok-td16600133.html 

Martijn Faasen is my hero. Not only is an absolutely brilliant coder he's also able talk so that mortals understand.

This is why I like Grok

What he's replying about is mainly the question "What does Grok give me that, say, django does not?"

And, this is why I dislike Grok

Yes, you clever people. It's the same link. For some reason all the great documentation goes into replies on the mailing list rather than into a concise web page with cookbook, book and styled and funny tutorials. Why is that? They've actually made it quite easy now to enter documentation on grok.zope.org with the new Plone site.

An equally important question is: Why don't I do something about it rather than to complain? Well, I've written one how-to at least. My other "excuse" is that I'm not yet an expert enough and hence writing good documentation takes a very long time.

I think there's an important philosophical and political issue at hand. The Grok community is filled with really clever people who are very senior in the web development industry who like using mailing lists and perhaps more importantly, don't need documentation since they can study source code and unit tests to answer their questions. I know this is a sensitive statement but I'll take my chances since it implies that these guys are smarter (or perhaps just more time on their hands).

My internal battle of which new web framework to put my energy into continues. Today (thanks to Martijn's post) Grok earned one more point.

9th of April

Mixing in new-style classes in Zope 2.7

Don't ask why I'm developing products for Zope 2.7 but I had to and I should have been more careful with these oldtimers.

I kept getting this error:

 TypeError:  expected 2 arguments, got 1

(notice the strange double space after the : colon) This is different from the standard python TypeError when you get the parameters wrong which looks like this TypeError: __init__() takes exactly 2 arguments (1 given).

The line it complained this happened looked like this:

 class MyTool(SimpleItem, UniqueObject, OtherClass):
    id = 'some_tool'
    meta_type = 'some meta type'
    def __init__(self, id='some_tool'):
        self.id = id  # <--- THIS WAS THE CULPRIT LINE APPARENTLY!!

I couldn't understand what the hell was wrong on that line! Clearly it wasn't a normal Python error. Here's the explaination: That OtherClass was a new-style class inheriting from object. It looked like this:

 class OtherClass(object):
    ...

When I changed that to:

 class OtherClass:
    ...

The whole thing started to work. Long lesson learnt, don't use new-style classes mixed in into Zope 2.7.

24th of March

Tip: Printer friendly pages with Page Templates in Zope

Since I've seen so many poor solutions to this problem I thought I'd share mine. Here's how I make printer friendly pages.

1. Add a method in your base class that looks like this:

  def getMainTemplate(self):
       """ return the suitable METAL header object """
       # assuming zpt/main_template.zpt
       template_obj = self.main_template

       # assuming the "first" line of main_template.zpt to
       # look like this:
       # <metal:block metal:define-macro="master">
       return template_obj.macros['master']

2. Change all your Page Templates to refer to a method rather than a macro directly so that pages like index_html.zpt start like this:

 <html metal:use-macro="here/getMainTemplate">

I've seen the hard coded way too many times where people do something like this <html metal:use-macro="here/main_template/macros/master"> which gives you no flexibility.

3. Now make a copy of main_template.zpt called print_main_template.zpt and the most important change is to make print.css load by default. Here's what it should look like this somewhere inside the <head> tag:

 <link rel="stylesheet" type="text/css" href="/screen.css" media="screen" />
 <link rel="stylesheet" type="text/css" href="/print.css" />

Note how the print.css link tag is now not conditional. Before in main_template.zpt it should have looked like this:

 <link rel="stylesheet" type="text/css" href="/print.css" media="print" /> 
 <link rel="stylesheet" type="text/css" href="/screen.css" media="screen" />

And note how the order is stacked just to be extra safe to weird browsers that don't understand the media condition.

As a last optional feature you should add is to add these lines at the bottom of the template 'print_main_template.zpt':

 <script type="text/javascript">
 window.print();
 </script>
 </body>
 </html>

Another tip is to add something like this to the footer because it becomes useful when you look at a printed copy:

 <div id="footer">
    Printed from <span tal:replace="here/absolute_url"></span> on 
    <span tal:replace="python:here.ZopeTime().strftime('%Y/%m/%d')"></span>

4. Now rewrite the method getMainTemplate() to become usefully intelligent:

   def getMainTemplate(self):
       """ return the suitable METAL header object """
       if self.REQUEST.get('print-version'):
           # assuming zpt/print_main_template.zpt
           template_obj = self.print_main_template
       else:
           # assuming zpt/main_template.zpt
           template_obj = self.main_template

       # assuming the "first" line of main_template.zpt to
       # look like this:
       # <metal:block metal:define-macro="master">
       return template_obj.macros['master']

5. Prepare the interface now for the printer friendly page. This can be done in two different ways. One way is to put a link in the footer or byline like this:

 <a href="?print-version=1">Print this page</a>

Or if you want to force a particular page to always be printer friendly, for example print_invoice.zpt then write it like this:

 <tal:item define="dummy python:request.set('print-version',1)"
           replace="nothing" 
  /><html metal:use-macro="here/getMainTemplate">

As a final point; how you solve your web design with screen.css and print.css varies. One way is to define multiple css files each suitable for individual things like this example shows:

 <link rel="stylesheet" type="text/css" href="/typography.css" /> 
 <link rel="stylesheet" type="text/css" href="/print.css" media="print" /> 
 <link rel="stylesheet" type="text/css" href="/screen.css" media="screen" />

An alternative solution is to don't expect print.css to stand on its own two legs but only be a supplement of the general css file. When doing this you're probably just going to want to override some things and hide some other things like this example from a 'print.css':

 body {
    width:100% !important
 }

 form#login, #navigation, .also-online {
   display:none
 }

To conclude

This gives you a robust framework for enabling printer friendly pages that are quite different from the main template and doing it like this means that you don't have add conditional hacks to your main template that displays certain things if in printer friendly mode or not.

Most importantly, this gives you the framework for adding other versions of main template. For example these:

  • mobile_main_template.zpt (guess what for)
  • minimal_main_template.zpt (for things like Help page popups)

A healthy and fair use of METAL macros is also key to asserting that you don't have to repeat yourself too much in the copies of main_template.pt.

Good luck!

14th of March

Mocking a Python standard library

Here's one of many things I've learnt today at PyCon. Inspired by code that Grig Gheorghiu showed in his slides on automated testing, you can monkey patch a standard library that your application is using in your unit tests to, in my case, mock a remote service without having to run a server. I've done lots of monkey-patching in Zope but then I've only been monkey patching individual methods or attributes of imported classes. This is very similar to that. Here's what my application does:

 from poplib import POP3
 class MyZopeApp(...):
    def check4mail(self, hostname, port, user, pwd):
        connection = POP3(hostname, port=port)
        ...download emails and process them...

Adjacent to this I have a unit/integration test that looks like this:

 class TestCase(ZopeTestCase):
    def test_check4mail(self):
        # monkey patch!
        # note that this imports a module, not a class
        from Products.IssueTrackerProduct import IssueTracker 
        FakePOP3.files = ('test1.email',)
        IssueTracker.POP3 = FakePOP3

        # now check what happens when check4mail() is run
        result = self.folder.tracker.check4mail()
        assert ...


>Read the whole text (299 more words)

6th of February

logrotating all my Zope event logs

I've installed a lot of Zope instances on my laptop since version 2.7.3 and out of curiosity and desperate need for more hard drive space I thought I'd log rotate them all with the standard Linux logrotate program.

Before doing the log rotate, the total size of all my event.log files came to about 290Mb! After running logrotate (twice of course to go from event.log.1 to event.log.2.gz) the total size become 20Mb. Not a huge significance in the world of gigabyte hard drives but at least something.

28th of October

DateIndex in Zope doesn't have indexed attributes

This took me a while to grok and perhaps by mentioning it here, it'll prevent other people from making the same mistake as I did and perhaps preventing myself from doing the same mistake again.

In the ZCatalog, when you set up indexes you can give them a name and an index attribute. If you omit the index attribute, it'll try to hook into the objects by the name of the index. For example, if you set the index to be title with no indexed attribute it'll fetch the title attribute of the objects it catalogs. But if you set the indexed attribute to be something like idx_getTitle you can do something like this in your class:

 def idx_getTitle(self):
    """ return title as we want it to be available in the ZCatalog """
    return re.sub('<*.?>','', self.title)

The same can not be done with indexes of type DateIndex.


>Read the whole text (262 more words)

15th of October

IssueTrackerProduct 0.8.0

http://www.issuetrackerproduct.com/News/0.8.0 

Yesterday I released IssueTrackerProduct 0.8.0 which I'm quite happy about. It's been 10 months since the last release and although there are still some outstanding feature requests and non-urgent bugs I'm happy to get this out of the door.

To all those doing the upgrade, remember to press the Update Everything button!

14th of September

Nasty human error in Zope ZEO setup

Together with my colleague Jan we today tried to fix a problem with Zope ZEO server that wouldn't start. Very strange we thought since another ZEO server on the same machine was working fine. We compared zope.conf files and found nothing obvious. Here was the error you get with 'bin/runzeo':

 root@da-ovz-vm99182:/var/lib/zope-2.8.9/aragdb-zeo1# ./bin/runzeo 
 Error: error opening file //var/lib/zope-2.8.9/aragdb-zeo1/etc/zeo.conf: 
 [Errno ftp error] no host given

What?? ftp error??

Long story short, the error was this line in 'runzeo':

 CONFIG_FILE="/${INSTANCE_HOME}/etc/zeo.conf"

which should have been this:

 CONFIG_FILE="${INSTANCE_HOME}/etc/zeo.conf"

Not so easy to spot because the CONFIG_FILE line is something you rarely look closely at.

7th of September

Fun Python error message

I saw this today on the Zope mailing list:

 TypeError: open() takes at least 1946389116 arguments (4 given)

For anybody who's ever used Python you'll find this funny.

16th of August

rfc822() vs. rfc1123_date()

To set the Expires header in my web application I used to use the Zope DateTime function rfc822() which doesn't return the date in GMT format. Here's how I used it:

 >>> from DateTime import DateTime
 >>> hours = 5
 >>> then = DateTime() + hours/24.0
 >>> then.rfc822()
 'Thu, 16 Aug 2007 20:43:59 +0100'

Then I found out (from using YSlow) that it's better to use the GMT format (RFC 1123), and here's how to do that in Zope:

 >>> from App.Common import rfc1123_date
 >>> from time import time
 >>> rfc1123_date(time() + 3600*hours)
 'Thu, 16 Aug 2007 19:45:12 GMT'

(notice that even though my locale is here in London, because of the summer time an hour is added)


>Read the whole text (219 more words)

30th of May

Playing with filestream_iterator

There are several ways of serving static files from Zope. The simplest way is to just do something like this:

 size = os.stat(file_path)[stat.ST_SIZE]
 REQUEST.RESPONSE.setHeader('Content-Type','image/jpeg')
 REQUEST.RESPONSE.setHeader('Content-length',int(size))
 return open(file_path, 'rb').read()

The disadvantage with this is if the file is say >1Mb, the whole 1Mb needs to be loaded into RAM before it can be sent. This is surely garbage collected afterwards but if you serve many of these at the same time, there's obviously the risk that the RAM gets too full.

The alternative is to use filestream_iterator from the ZPublisher which is an iterator that sends out chunks of the file at a time. Note that to use the filestream_iterator you must set the Content-Length header first. Here's how to use it:

 from ZPublisher.Iterators import filestream_iterator
 ...
 size = os.stat(file_path)[stat.ST_SIZE]
 REQUEST.RESPONSE.setHeader('Content-Type','image/jpeg')
 REQUEST.RESPONSE.setHeader('Content-length',int(size))
 return filestream_iterator(file_path, 'rb')


>Read the whole text (202 more words)

21st of April

Guess my age with MOBi

http://www.mobi.co.uk 

Guess my age with MOBi This week we improved MOBi with a neat little feature that makes it possible to decide what the SMS response should be to inbound SMS on your own server.

To test this you need to be UK resident and willing to part with the 25p it costs to receive the response. Send peterbe is NN (where NN is a number, how old you think I am) to 83211 and await a result. I've set up the sub word "is *" to forward all inbound SMS to an address on www.peterbe.com and here on this server I run the following Python Script:

 ##parameters=sender, message
 ##
 guess = message.split()[-1]
 try:
     age = int(guess)
 except ValueError:
     return "That's not a number :-("

 if age > 27:
     return "That's not it! It's less than that. Try again"
 elif age < 27:
     return "That's not it! It's more than that. Try again"
 return "Wow! You know my age!!"

16th of March

Zope Image to filesystem image

Today I bumped into a nasty challenge when trying to copy a Zope image from ZODB to the filesystem. The reason why it wasn't easy was that Zope splits the file up into chunks if it's upload size is more than 65Kb (2^16 bytes) which I guess it does for being able to "stream" the file back into the browser when viewing the image instead of sending one large blob.

So, this didn't work:

 >>> imgobj.meta_type
 Image
 >>> open(temp_file_path,'wb').write(imgobj.data)

...if the data is big because sometimes imgobj.data is a string (the binary data) and sometimes is a ImplicitAcquirerWrapper that you have to iterate over.


>Read the whole text (233 more words)

 

Older entriesOrder entries