Changeset 3030
- Timestamp:
- 10/10/06 21:21:22 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/cgi-bin/dumpykota.cgi
r2909 r3030 137 137 def htmlFilterInput(self, value="") : 138 138 """Input the optional dump filter.""" 139 return _("Filter") + (' : <input type="text" name="filter" size="40" value="%s" /> <em>e.g. <strong>username=jerome printername=HP2100 </strong></em>' % (value or ""))139 return _("Filter") + (' : <input type="text" name="filter" size="40" value="%s" /> <em>e.g. <strong>username=jerome printername=HP2100 start=today-30</strong></em>' % (value or "")) 140 140 141 141 def htmlSumCheckbox(self, checked="") : -
pykota/trunk/NEWS
r3025 r3030 24 24 - 1.25alpha13 (2006-10-04) : 25 25 26 - The filter keys in dumpykota can now be specified in 27 lower or upper case. 28 26 29 - Introduced the 'noprintingmaxdelay' directive to workaround 27 30 some buggy printers when hardware accounting is used. -
pykota/trunk/pykota/dumper.py
r2879 r3030 90 90 try : 91 91 (filterkey, filtervalue) = [part.strip() for part in filterexp.split("=")] 92 filterkey = filterkey.lower() 92 93 if filterkey not in self.validfilterkeys : 93 94 raise ValueError