summaryrefslogtreecommitdiffstats
path: root/perl-install/printer/printerdrake.pm
Commit message (Collapse)AuthorAgeFilesLines
* Removed bugs from Titi which prevented printerdrake from installing the ↵Till Kamppeter2003-01-141-6/+6
| | | | requested spooler.
* please perl_checkerPascal Rigaux2003-01-141-2/+2
|
* print_testpages() : factorize and simplify options managmentThierry Vignaud2003-01-131-66/+26
| | | | | by using an options hash
* setup_local_autoscan():Thierry Vignaud2003-01-131-21/+3
| | | | | | - don't reinvent the wheel, reverse is faster - remove doble $device initialization in one path
* setup_local_autoscan() : simplify loop of loopThierry Vignaud2003-01-131-7/+2
| | | | | and optimize away useless $alreadyfound
* Avoid unnecessary restarts of the CUPS daemon.Till Kamppeter2003-01-131-2/+6
|
* Removed debug helper line.Till Kamppeter2003-01-131-2/+1
|
* New CUPS printer sharing configuration dialog.Till Kamppeter2003-01-131-68/+248
| | | | | Reverted broken printer::main::set_usermode() to version of Mandrake 9.0.
* once we identify the protocal, skip remaining testsThierry Vignaud2003-01-081-8/+7
|
* - fix autodetection code (remember me to teach titi that "and" in list ↵Pascal Rigaux2003-01-071-3/+4
| | | | | | | | context is bad) - use printer::detect::whatNetPrinter directly (instead of net_detect() + net_smb_detect()), it is faster when one wants both
* use "if any" instead of "if grep", and various other occurences of "any", ↵Pascal Rigaux2003-01-071-3/+1
| | | | "every", "partition"
* printerdrake is back aliveThierry Vignaud2003-01-071-4/+4
|
* fix displaying of spooler listThierry Vignaud2003-01-061-5/+6
|
* (first_time_dialog): much cleanup (but not tested)Pascal Rigaux2003-01-031-40/+33
|
* help perl_checker (interactive is used even if the constructor is not there)Pascal Rigaux2002-12-231-0/+1
|
* - printer::main::read_cups_printer_list() is now ↵Pascal Rigaux2002-12-191-2/+2
| | | | | | | | printer::cups::read_printer_list() (but it is unused!) - printer::main::get_cups_remote_queues() is now printer::cups::get_formatted_remote_queues() - cleanup printer::cups::get_remote_queues() using printer::cups::lpstat_v()
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-44/+42
|
* use if_() where possible (as reported by perl_checker)Pascal Rigaux2002-12-041-62/+50
|
* perl_checker adaptationsPascal Rigaux2002-11-281-37/+37
|
* perl_checker adaptationsPascal Rigaux2002-11-281-1/+1
|
* perl_checker adaptationsPascal Rigaux2002-11-271-14/+12
|
* miaouhThierry Vignaud2002-11-261-17/+8
|
* simplifyThierry Vignaud2002-11-261-34/+23
|
* cleanupsThierry Vignaud2002-11-201-12/+8
|
* update to new security::level schemeThierry Vignaud2002-11-201-2/+2
|
* make perl_checker happyPascal Rigaux2002-11-181-22/+21
|
* update copyright yearsThierry Vignaud2002-11-181-4/+2
|
* - more cleanupsThierry Vignaud2002-11-151-22/+13
| | | | | | - don't display messages if we're not going to remove/install some packages
* cleanupsThierry Vignaud2002-11-151-34/+20
|
* cleanupsThierry Vignaud2002-11-151-22/+9
|
* printerdrake::install_spooler() : fix heavy duplication of codeThierry Vignaud2002-11-151-144/+59
| | | | | by using %spoolers data structure (function shrunked by 66%)
* consolidate some stuff into printer::data::spoolers{XXX}{alternatives}Thierry Vignaud2002-11-151-21/+12
| | | | | so that all alternatives get centralized in one data structure
* cleanupsThierry Vignaud2002-11-151-37/+15
|
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-255/+250
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* simplify install_spooler() but there's still lot of duplication thereThierry Vignaud2002-11-131-3/+1
| | | | | (some work for tomorow)
* - final switch to $::prefixThierry Vignaud2002-11-131-17/+7
| | | | | | | - simplify main::get_copiable_queues(), main::setcupslink() - s/unless (X ne Y)/if (X eq Y)/ - set_usermode() : ensure we add the line if it didn't exists
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-5/+4
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-82/+78
|
* fix getSNMPModel() locationThierry Vignaud2002-11-121-1/+1
|
* add/remove some spaces to make perl_checker happyPascal Rigaux2002-11-121-10/+10
|
* printer related modules cleaning :Thierry Vignaud2002-11-121-0/+3608
- create the printer/ hierarchy - split services related stuff into services.pm & printer::services, - move things that've nothing to do with printers into common.pm (alternatives, permissions, ...) - move eveything related to cups, gimp-print, detection, {star,open}office to the corresponding splited printer:: module - big consolidation of printer::office (it was obvious there were tons of duplication between staroffice and openoffice managment) - move other stuff into printer::main, printer::common, status : print.pm has been heavily splited (now one can begin to understand the little bits). printerdrake still needs to be splited/cleaned and eventually removed since printer/printerdrake modules separation is not understandable by other people till, in printer::gimp, $lprcommand is neither declared nor setted nowhere. idem in mdk9.0 ...