Changes between Version 3 and Version 4 of TextImageView


Ignore:
Timestamp:
Jul 3, 2006, 2:04:33 AM (18 years ago)
Author:
anonymous
Comment:

Updated to the lastest version from jacobian.org

Legend:

Unmodified
Added
Removed
Modified
  • TextImageView

    v3 v4  
    2626        header = 'Hello world'
    2727
    28     etag = md5.new(header).hexdigest()
     28    etag = md5.new(header + fontalias).hexdigest()
    2929    if request.META.get("HTTP_IF_NONE_MATCH") == etag:
    3030        return HttpResponseNotModified()
     
    4040    response["e-tag"] = etag
    4141    return response
    42 
    4342}}}
Back to Top