# the following is the type of the configuration where
# 0 = direct connection (no proxy)
# 1 = manual configuration
# 2 = configuration script
# 3 = automatic proxy configuration
ProxyType=1
# the following is "true" if the proxy is only used for the sites in "NoProxyFor"
ReversedException=false
If that command gets used in the scripts that invoke apt and the like the problem could be solved (at least I think that).
In addition there is the kioslave subsystem which should automatically apply the proxy settings. That would be another option for adept to use for access to the repos (but that would change implementation and not just configuration).
Hi Chucky,
that sounds somewhat like a wrapper around a wrapper in my ears.
Well I just fooled around a bit and found out, that the proxy settings are stored in ~/.kde/ share/config/ kioslaverc. ..
ancoron@bitch:~$ cat .kde/share/ config/ kioslaverc Connection= false
PersistentProxy
[$Version] info=kioslave. upd:kde2. 2/r1,kioslave. upd:kde2. 2/r2,kioslave. upd:kde2. 2/r3
update_
[Proxy Settings] blizzard. com,deviantart. com proxy.test. net:8080/ test.pac
AuthMode=0
NoProxyFor=
Proxy Config Script=http://
# the following is the type of the configuration where
# 0 = direct connection (no proxy)
# 1 = manual configuration
# 2 = configuration script
# 3 = automatic proxy configuration
ProxyType=1
# the following is "true" if the proxy is only used for the sites in "NoProxyFor" on=false
ReversedExcepti
# the following variables store the proxy settings for manual configuration proxy.test. net:8080 proxy.test. net:8080 proxy.test. net:8080
ftpProxy=http://
httpProxy=http://
httpsProxy=http://
I then googled again and found out that there is a command line tool called "kreadconfig". So I tried:
ancoron@bitch:~$ kreadconfig --file kioslaverc --group Proxy\ Settings --key httpProxy proxy.test. net:8080
http://
ancoron@bitch:~$ kreadconfig --file kioslaverc --group Proxy\ Settings --key ProxyType
1
ancoron@bitch:~$
Well, that's all we need, don't we?
If that command gets used in the scripts that invoke apt and the like the problem could be solved (at least I think that).
In addition there is the kioslave subsystem which should automatically apply the proxy settings. That would be another option for adept to use for access to the repos (but that would change implementation and not just configuration).
Ancoron