- Timestamp:
- 06/20/04 18:15:21 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/initscripts/ldap/pykota.schema
r1522 r1556 208 208 DESC 'PyKota Printer' 209 209 MUST ( cn ) 210 MAY ( pykotaPrinterName $ pykotaPricePerPage $ pykotaPricePerJob $ uniqueMember ) )210 MAY ( description $ pykotaPrinterName $ pykotaPricePerPage $ pykotaPricePerJob $ uniqueMember ) ) 211 211 212 212 # pykotaUserPQuota -
pykota/trunk/initscripts/postgresql/pykota-postgresql.sql
r1520 r1556 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.11 2004/06/20 16:15:21 jalet 23 -- Added "description" attribute for printers 24 -- 22 25 -- Revision 1.10 2004/06/03 23:14:09 jalet 23 26 -- Now stores the job's size in bytes in the database. … … 104 107 CREATE TABLE printers(id SERIAL PRIMARY KEY NOT NULL, 105 108 printername TEXT UNIQUE NOT NULL, 109 description TEXT, 106 110 priceperpage FLOAT DEFAULT 0.0, 107 111 priceperjob FLOAT DEFAULT 0.0); -
pykota/trunk/initscripts/postgresql/upgrade-to-1.19.sql
r1520 r1556 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.3 2004/06/20 16:15:21 jalet 23 -- Added "description" attribute for printers 24 -- 22 25 -- Revision 1.2 2004/06/03 23:14:10 jalet 23 26 -- Now stores the job's size in bytes in the database. … … 45 48 -- Modify the old database schema 46 49 -- 50 ALTER TABLE printers ADD COLUMN description TEXT; 47 51 ALTER TABLE jobhistory ADD COLUMN jobsizebytes INT8; 48 52 ALTER TABLE jobhistory ADD COLUMN hostname TEXT; -
pykota/trunk/NEWS
r1552 r1556 22 22 PyKota NEWS : 23 23 24 - 1.19alpha25 : 25 26 - added new "description" field to printers in both 27 PostgreSQL and LDAP. No code to handle this yet. 28 24 29 - 1.19alpha24 : 25 30 -
pykota/trunk/pykota/version.py
r1552 r1556 22 22 # 23 23 24 __version__ = "1.19alpha2 4_unofficial"24 __version__ = "1.19alpha25_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""