Friday, September 25, 2009

更改Trac同步发送mail问题

修改: trac/notification.py文件, 找到Notify.notify(self, resid)行: 改为:

trigger = self
from threading import Thread
def run():                                                                                                              
  Notify.notify(trigger, resid)
Thread(target=run).start()

Tuesday, September 15, 2009

进度条简单实现

<html>
<body>
<style>
.lhcl_storagecluster_gauge {
background-color:#F4F6FF;
border:1px solid #668CD9;
height:20px;
width:50px;
}
</style>
<div class="lhcl_storagecluster_gauge" id="lhid_storagecluster_gauge" style="width: 56.75px; border-left-width: 11.25px;"/>
</body>
</html>

Wednesday, September 02, 2009

shelve

import shelve  d = shelve.open(filename) # open -- file may get suffix added by low-level                           # library  d[key] = data   # store data at key (overwrites old data if                 # using an existing key) data = d[key]   # retrieve a COPY of data at key (raise KeyError if no                 # such key) del d[key]      # delete data stored at key (raises KeyError                 # if no such key) flag = d.has_key(key)   # true if the key exists klist = d.keys() # a list of all existing keys (slow!)  # as d was opened WITHOUT writeback=True, beware: d['xx'] = range(4)  # this works as expected, but... d['xx'].append(5)   # *this doesn't!* -- d['xx'] is STILL range(4)!  # having opened d without writeback=True, you need to code carefully: temp = d['xx']      # extracts the copy temp.append(5)      # mutates the copy d['xx'] = temp      # stores the copy right back, to persist it  # or, d=shelve.open(filename,writeback=True) would let you just code # d['xx'].append(5) and have it work as expected, BUT it would also # consume more memory and make the d.close() operation slower.  d.close()       # close it