Mailinglist Archive: yast-commit (650 mails)
| < Previous | Next > |
[yast-commit] r55605 - in /branches/SuSE-SLE-10-SP3-Branch/network: VERSION package/yast2-network.changes src/clients/lan_auto.ycp
- From: mzugec@xxxxxxxxxxxxxxxx
- Date: Thu, 19 Feb 2009 08:16:10 -0000
- Message-id: <E1La44o-0003oH-4c@xxxxxxxxxxxxxxxx>
Author: mzugec
Date: Thu Feb 19 09:16:09 2009
New Revision: 55605
URL: http://svn.opensuse.org/viewcvs/yast?rev=55605&view=rev
Log:
removed "no network running" popup, log only (bnc#475440)
Modified:
branches/SuSE-SLE-10-SP3-Branch/network/VERSION
branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp
Modified: branches/SuSE-SLE-10-SP3-Branch/network/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/VERSION?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/VERSION (original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/VERSION Thu Feb 19 09:16:09 2009
@@ -1 +1 @@
-2.13.122
+2.13.123
Modified: branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
(original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes Thu
Feb 19 09:16:09 2009
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Feb 19 09:10:00 CET 2009 - mzugec@xxxxxxx
+
+- removed "no network running" popup, log only (bnc#475440)
+- 2.13.123
+
+-------------------------------------------------------------------
Mon Jan 12 17:23:38 CET 2009 - kmachalkova@xxxxxxx
- Do not reset default gw if the interface is set to 'No IP address'
Modified: branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp (original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp Thu Feb 19
09:16:09 2009
@@ -315,7 +315,7 @@
}
boolean network=false;
integer i=0;
- while(i<10){
+ while(i<15){
if (NetworkService::isNetworkRunning()){
network=true;
break;
@@ -323,7 +323,7 @@
sleep(1000);
i=i+1;
}
- if (!network) Popup::Error(_("No network running"));
+ if (!network) y2warning("No network running!");
Progress::set (progress_orig);
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Thu Feb 19 09:16:09 2009
New Revision: 55605
URL: http://svn.opensuse.org/viewcvs/yast?rev=55605&view=rev
Log:
removed "no network running" popup, log only (bnc#475440)
Modified:
branches/SuSE-SLE-10-SP3-Branch/network/VERSION
branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp
Modified: branches/SuSE-SLE-10-SP3-Branch/network/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/VERSION?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/VERSION (original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/VERSION Thu Feb 19 09:16:09 2009
@@ -1 +1 @@
-2.13.122
+2.13.123
Modified: branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes
(original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/package/yast2-network.changes Thu
Feb 19 09:16:09 2009
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Feb 19 09:10:00 CET 2009 - mzugec@xxxxxxx
+
+- removed "no network running" popup, log only (bnc#475440)
+- 2.13.123
+
+-------------------------------------------------------------------
Mon Jan 12 17:23:38 CET 2009 - kmachalkova@xxxxxxx
- Do not reset default gw if the interface is set to 'No IP address'
Modified: branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp?rev=55605&r1=55604&r2=55605&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp (original)
+++ branches/SuSE-SLE-10-SP3-Branch/network/src/clients/lan_auto.ycp Thu Feb 19
09:16:09 2009
@@ -315,7 +315,7 @@
}
boolean network=false;
integer i=0;
- while(i<10){
+ while(i<15){
if (NetworkService::isNetworkRunning()){
network=true;
break;
@@ -323,7 +323,7 @@
sleep(1000);
i=i+1;
}
- if (!network) Popup::Error(_("No network running"));
+ if (!network) y2warning("No network running!");
Progress::set (progress_orig);
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |