Index: trunk/phase3/maintenance/storage/compressOld.php |
— | — | @@ -17,7 +17,8 @@ |
18 | 18 | * -c <chunk-size> maximum number of revisions in a concat chunk |
19 | 19 | * -b <begin-date> earliest date to check for uncompressed revisions |
20 | 20 | * -e <end-date> latest revision date to compress |
21 | | - * -s <start-id> the old_id to start from |
| 21 | + * -s <startid> the old_id to start from |
| 22 | + * -n <endid> the old_id to stop at |
22 | 23 | * --extdb <cluster> store specified revisions in an external cluster (untested) |
23 | 24 | * |
24 | 25 | * This program is free software; you can redistribute it and/or modify |
— | — | @@ -55,7 +56,7 @@ |
56 | 57 | $this->addOption( 'chunksize', 'Maximum number of revisions in a concat chunk', false, true, 'c' ); |
57 | 58 | $this->addOption( 'begin-date', 'Earliest date to check for uncompressed revisions', false, true, 'b' ); |
58 | 59 | $this->addOption( 'end-date', 'Latest revision date to compress', false, true, 'e' ); |
59 | | - $this->addOption( 'start-id', 'The old_id to start from', false, true, 's'); |
| 60 | + $this->addOption( 'startid', 'The old_id to start from', false, true, 's' ); |
60 | 61 | $this->addOption( 'extdb', 'Store specified revisions in an external cluster (untested)', false, true ); |
61 | 62 | $this->addOption( 'endid', 'Stop at this old_id', false, true, 'n' ); |
62 | 63 | } |