Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make perl_checker happy | Pascal Rigaux | 2002-11-18 | 3 | -7/+5 |
| | |||||
* | - add/remove spaces to make perl_checker happy | Pascal Rigaux | 2002-11-14 | 3 | -6/+6 |
| | | | | | | - remove redundant parentheses - add some parentheses for clarity | ||||
* | add/remove spaces to make perl_checker happy | Pascal Rigaux | 2002-11-13 | 7 | -58/+58 |
| | |||||
* | add/remove spaces to make perl_checker happy | Pascal Rigaux | 2002-11-13 | 3 | -3/+3 |
| | |||||
* | add/remove some spaces to make perl_checker happy | Pascal Rigaux | 2002-11-12 | 1 | -3/+3 |
| | |||||
* | - replace ... =~ 'foo' with ... =~ /foo/ | Pascal Rigaux | 2002-11-11 | 4 | -16/+15 |
| | | | | | - remove unneeded parentheses for things like ... if (...) | ||||
* | add or remove spaces where need to please perl_checker | Pascal Rigaux | 2002-11-11 | 10 | -30/+30 |
| | |||||
* | various small syntax enhancements to please perl_checker | Pascal Rigaux | 2002-11-11 | 1 | -1/+1 |
| | |||||
* | replace qq{...} with qq(...) | Pascal Rigaux | 2002-11-11 | 1 | -4/+4 |
| | |||||
* | don't return a typeglob ref, return the typeglob (reference to typeglobs are | Pascal Rigaux | 2002-11-10 | 1 | -1/+1 |
| | | | | | | soft references which doesn't increment the ref count) (thanks to Gerard Patel for the precise bug report) | ||||
* | - do not use q{...} to please perl_checker | Pascal Rigaux | 2002-11-09 | 1 | -7/+6 |
| | | | | | | - use <<'EOF' instead - at the same time, fix the "\n" at the beginning of the generated script | ||||
* | - have "local *FILEHANDLE" before each "open FILEHANDLE, ..." | Pascal Rigaux | 2002-11-06 | 2 | -9/+6 |
| | | | | | - use some "cat_" and "output" where possible | ||||
* | (write_resolv_conf): much cleanup (originally it was meant to introduce | Pascal Rigaux | 2002-11-06 | 1 | -34/+37 |
| | | | | | cat_ and output, but it ended up with a complete rewrite :) | ||||
* | make perl_checker happy | Pascal Rigaux | 2002-11-06 | 1 | -0/+1 |
| | |||||
* | replace complex "unless"s with "if"s | Pascal Rigaux | 2002-11-06 | 3 | -7/+7 |
| | |||||
* | replace "_" with "N" and "__" with "N_" | Pascal Rigaux | 2002-11-06 | 9 | -181/+181 |
| | | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous! | ||||
* | few reworks for winmodem detection | Damien Chaumette | 2002-10-28 | 1 | -15/+12 |
| | |||||
* | add sub winmodemConfigure | Damien Chaumette | 2002-10-28 | 1 | -0/+19 |
| | |||||
* | perl_checker fixes | Thierry Vignaud | 2002-10-23 | 1 | -0/+1 |
| | |||||
* | make perl_checker happy: replace PKG::f with PKG::f() | Pascal Rigaux | 2002-10-23 | 1 | -1/+1 |
| | |||||
* | remove useless 'pop' | Damien Chaumette | 2002-10-18 | 1 | -2/+1 |
| | |||||
* | change dumb return values s/@pci_modems, $serial_modem/$serial_modem, ↵ | Damien Chaumette | 2002-10-18 | 1 | -1/+1 |
| | | | | @pci_modems/ (thanks to pixel) | ||||
* | make new perl_checker happy: replacing PKG::f by PKG::f() | Pascal Rigaux | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | "=head" doc must end with "=cut" | Pascal Rigaux | 2002-10-17 | 1 | -0/+2 |
| | |||||
* | document network::netconnect::detect() | Thierry Vignaud | 2002-10-17 | 1 | -0/+17 |
| | |||||
* | - winmodem detection fix | Damien Chaumette | 2002-10-16 | 1 | -1/+1 |
| | |||||
* | fix speedtouch detection | Damien Chaumette | 2002-10-11 | 1 | -1/+2 |
| | |||||
* | notify if speedtouch is detected or not | Damien Chaumette | 2002-10-10 | 1 | -13/+9 |
| | |||||
* | - move serial modem detection to detect_devices.pm | Damien Chaumette | 2002-10-10 | 1 | -32/+1 |
| | | | | | | - add speedtouch USB detection - add winmodem detection | ||||
* | add a warning window for winmodems | Damien Chaumette | 2002-10-10 | 1 | -5/+15 |
| | |||||
* | workaround situation when /etc/resolv.conf is an absolute link to ↵ | Guillaume Cottenceau | 2002-09-26 | 1 | -1/+3 |
| | | | | /etc/ppp/resolv.conf or whatever | ||||
* | Fix configureNetwork to fit with new any::load_category_prompt_for_more behavior | Damien Chaumette | 2002-09-24 | 1 | -1/+1 |
| | |||||
* | fix NULL Gateway IP checking | Damien Chaumette | 2002-09-23 | 1 | -2/+2 |
| | |||||
* | The LPD/LPRng port is 515, not 5015. | Till Kamppeter | 2002-09-20 | 1 | -1/+2 |
| | |||||
* | add the 5015 port for some printers in internal_ports | Florin Grad | 2002-09-20 | 1 | -1/+1 |
| | |||||
* | fix spurious ";" before closing block | Guillaume Cottenceau | 2002-09-19 | 1 | -1/+1 |
| | |||||
* | remove forgotten debug hash printings | Florin Grad | 2002-09-18 | 1 | -7/+0 |
| | |||||
* | small updates | Florin Grad | 2002-09-17 | 1 | -9/+12 |
| | |||||
* | add a silly message | Florin Grad | 2002-09-17 | 1 | -0/+5 |
| | |||||
* | add internal_ports variable | Florin Grad | 2002-09-16 | 1 | -0/+2 |
| | |||||
* | - fix old conf files name (thx titi) | Damien Chaumette | 2002-09-13 | 1 | -2/+2 |
| | |||||
* | more services in drakgw_protocols | Florin Grad | 2002-09-13 | 1 | -1/+1 |
| | |||||
* | - patch net_monitor | Damien Chaumette | 2002-09-12 | 1 | -1/+51 |
| | |||||
* | run_program crazyness | Guillaume Cottenceau | 2002-09-12 | 1 | -3/+3 |
| | |||||
* | fix writing twice tcp instead of tcp & udp | Pascal Rigaux | 2002-09-12 | 1 | -1/+1 |
| | |||||
* | corrected i18n usage | Pablo Saratxaga | 2002-09-11 | 1 | -1/+1 |
| | |||||
* | - remove variable from a translated chain | Damien Chaumette | 2002-09-10 | 1 | -1/+1 |
| | |||||
* | - show pcmcia ethernet cards in list | Damien Chaumette | 2002-09-09 | 1 | -0/+11 |
| | |||||
* | - check DNS & Gateway IP | Damien Chaumette | 2002-09-09 | 1 | -1/+1 |
| | |||||
* | - fix typo | Damien Chaumette | 2002-09-06 | 1 | -1/+1 |
| |