| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
| |
- enforce strict mode
- give meaningful names to widget variables
- fix embedding in mcc at last, aka going into expert mode does not fsck up
the gui
- display all configuration buttons (both internet and lan) the same way
- fix doble variable declaration to MDK::Common::Globals
|
|
|
|
|
|
| |
(fortunately, gc will fix perl-GTK2 if this syntax is still authorized)
- (configure_lan) : fix gtk+-2 port and remove old commented out debugging code
|
| |
|
| |
|
|
|
|
| |
modules::load_category() !
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- move any::miscellaneousNetwork() to network::network::proxy_configure()
(and uses the parameter instead of $::o->{miscellaneous})
- move network::network::miscellaneousNetwork() to network::network::miscellaneous_choose()
(and do not export it)
(and uses a parameter instead of $::o->{miscellaneous})
- move network::modem::pppConfig() to network::modem::ppp_choose()
(and change parameter order, and drop unused parameter $intf)
- do not export network::network::write_interface_conf()
(since it is only used locally (?))
- cleanup network::network::write_interface_conf()
(one still needs to pass $::o->{miscellaneous}{track_network_id} more
cleanly, and use run_program::rooted when calling /sbin/ip)
|
|
|
|
|
| |
before
|
|
|
|
|
| |
- simplify through MDK::Common
|
| |
|
|
|
|
|
|
|
|
|
| |
- gtk+-2 minor fixes (use new API rather than old one)
- fix non wizard mode (add to frame not to window which is already
full)
- wizard mode is fixed by previous ugtk2 fix
- simplify through MDK::Common
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
(adsl, ppp, ifcfg-eth)
|
|
|
|
|
| |
- perl_checker fixes
|
|
|
|
|
| |
to use my_gtk
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
o make it be 'use strict' aware
o factorize options managment in one place
- standalone tools :
o they all now support -h|--help -v|--version, ...
o they can add their own options to %standalone::usages
- harddrake : use std --testing/$::testing rather than its own
--test option
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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!
|
|
|
|
|
| |
(so that 'use strict' works)
|
| |
|
|
|
|
|
|
| |
=> allows to remove the somewhat mythical
$::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/
|
| |
|
| |
|
| |
|
| |
|
|
|