Changeset 1156
- Timestamp:
- 10/09/03 23:25:26 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 7 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r1144 r1156 24 24 # 25 25 # $Log$ 26 # Revision 1.60 2003/10/09 21:25:24 jalet 27 # Multiple printer names or wildcards can be passed on the command line 28 # separated with commas. 29 # Beta phase. 30 # 26 31 # Revision 1.59 2003/10/07 09:07:27 jalet 27 32 # Character encoding added to please latest version of Python … … 255 260 use wildcards characters to select only 256 261 some printers. The default value is *, meaning 257 all printers. 262 all printers. 263 You can specify several names or wildcards, 264 by separating them with commas. 258 265 259 266 -g | --groups Edit groups print quotas instead of users. -
pykota/trunk/bin/pykotme
r1144 r1156 24 24 # 25 25 # $Log$ 26 # Revision 1.5 2003/10/09 21:25:25 jalet 27 # Multiple printer names or wildcards can be passed on the command line 28 # separated with commas. 29 # Beta phase. 30 # 26 31 # Revision 1.4 2003/10/07 09:07:27 jalet 27 32 # Character encoding added to please latest version of Python … … 67 72 some printers. The default value is *, meaning 68 73 all printers. 74 You can specify several names or wildcards, 75 by separating them with commas. 69 76 70 77 examples : … … 75 82 the price and size of a job consisting in file1.ps and file2.ps 76 83 which would be sent to the apple printer. 84 85 $ pykotme --printer apple,hplaser <file1.ps 86 87 This will give a print quote to the current user. The quote will show 88 the price and size of a job consisting in file1.ps as read from 89 standard input, which would be sent to the apple or hplaser 90 printer. 77 91 78 92 $ pykotme -
pykota/trunk/bin/repykota
r1144 r1156 24 24 # 25 25 # $Log$ 26 # Revision 1.45 2003/10/09 21:25:25 jalet 27 # Multiple printer names or wildcards can be passed on the command line 28 # separated with commas. 29 # Beta phase. 30 # 26 31 # Revision 1.44 2003/10/07 09:07:27 jalet 27 32 # Character encoding added to please latest version of Python … … 201 206 some printers. The default value is *, meaning 202 207 all printers. 208 You can specify several names or wildcards, 209 by separating them with commas. 203 210 204 211 examples : … … 212 219 This will print the quota status for all users on all printers. 213 220 214 $ repykota --printer "laser* " jerome "jo*"221 $ repykota --printer "laser*,*pson" jerome "jo*" 215 222 216 223 This will print the quota status for user jerome and all users 217 whose name begins with "jo" on all printers which name begin 218 with "laser" 224 whose name begins with "jo" on all printers which name begins 225 with "laser" or ends with "pson". 219 226 220 227 If launched by a non-root user, additionnal arguments representing -
pykota/trunk/bin/warnpykota
r1144 r1156 24 24 # 25 25 # $Log$ 26 # Revision 1.25 2003/10/09 21:25:26 jalet 27 # Multiple printer names or wildcards can be passed on the command line 28 # separated with commas. 29 # Beta phase. 30 # 26 31 # Revision 1.24 2003/10/07 09:07:28 jalet 27 32 # Character encoding added to please latest version of Python … … 131 136 some printers. The default value is *, meaning 132 137 all printers. 138 You can specify several names or wildcards, 139 by separating them with commas. 133 140 134 141 examples : -
pykota/trunk/NEWS
r1152 r1156 22 22 PyKota NEWS : 23 23 24 - 1.15beta : 25 26 - Command line tools now accept multiple printer 27 names or wildcards, separated with commas. 28 24 29 - 1.15alpha9 : 25 30 -
pykota/trunk/pykota/storages/pgstorage.py
r1149 r1156 22 22 # 23 23 # $Log$ 24 # Revision 1.20 2003/10/09 21:25:26 jalet 25 # Multiple printer names or wildcards can be passed on the command line 26 # separated with commas. 27 # Beta phase. 28 # 24 29 # Revision 1.19 2003/10/08 07:01:20 jalet 25 30 # Job history can be disabled. … … 303 308 if result : 304 309 for record in result : 305 if self.tool.matchString(record["printername"], [ printerpattern ]) :310 if self.tool.matchString(record["printername"], printerpattern.split(",")) : 306 311 printer = StoragePrinter(self, record["printername"]) 307 312 printer.ident = record.get("id") -
pykota/trunk/pykota/version.py
r1152 r1156 22 22 # 23 23 24 __version__ = "1.15 alpha9_unofficial"24 __version__ = "1.15beta_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""