Mailinglist Archive: yast-commit (1448 mails)
| < Previous | Next > |
[yast-commit] r58972 - in /trunk/online-update: VERSION package/yast2-online-update.changes src/online_update.ycp
- From: jsuchome@xxxxxxxxxxxxxxxx
- Date: Thu, 08 Oct 2009 11:50:13 -0000
- Message-id: <E1MvrVd-0002Fo-2e@xxxxxxxxxxxxxxxx>
Author: jsuchome
Date: Thu Oct 8 13:50:12 2009
New Revision: 58972
URL: http://svn.opensuse.org/viewcvs/yast?rev=58972&view=rev
Log:
- reverted check for online update source, repositories not tagged
(bnc#459527)
- 2.18.5
Modified:
trunk/online-update/VERSION
trunk/online-update/package/yast2-online-update.changes
trunk/online-update/src/online_update.ycp
Modified: trunk/online-update/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/VERSION?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/VERSION (original)
+++ trunk/online-update/VERSION Thu Oct 8 13:50:12 2009
@@ -1 +1 @@
-2.18.4
+2.18.5
Modified: trunk/online-update/package/yast2-online-update.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/package/yast2-online-update.changes?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/package/yast2-online-update.changes (original)
+++ trunk/online-update/package/yast2-online-update.changes Thu Oct 8 13:50:12
2009
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu Oct 8 13:45:25 CEST 2009 - jsuchome@xxxxxxx
+
+- reverted check for online update source, repositories not tagged
+ (bnc#459527)
+- 2.18.5
+
+-------------------------------------------------------------------
Thu Sep 3 14:36:03 CEST 2009 - jsuchome@xxxxxxx
- added keywords to desktop file
Modified: trunk/online-update/src/online_update.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/src/online_update.ycp?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/src/online_update.ycp (original)
+++ trunk/online-update/src/online_update.ycp Thu Oct 8 13:50:12 2009
@@ -83,16 +83,27 @@
if (!OnlineUpdate::cd_update) // CD for cd update was not initialized yet
{
boolean is_available = false;
+ /* FIXME bnc#459527
+ current update repositories are still not tagged with is_update_repo
foreach (map source, Pkg::SourceEditGet (), {
integer srcid = source["SrcId"]:-1;
map data = Pkg::SourceGeneralData (srcid);
- y2internal ("data source map: %1", data);
if (data["is_update_repo"]:false)
{
is_available = true;
break;
}
});
+ */
+ // old way: check if there is any patch for installation
+ foreach (map patch, Pkg::ResolvableProperties ("", `patch, ""), {
+ if (patch["status"]:`none == `available)
+ {
+ is_available = true;
+ break;
+ }
+ });
+
// yes/no message
if (!is_available && Popup::YesNo (_("No update repository
configured yet. Run configuration workflow now?")))
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Thu Oct 8 13:50:12 2009
New Revision: 58972
URL: http://svn.opensuse.org/viewcvs/yast?rev=58972&view=rev
Log:
- reverted check for online update source, repositories not tagged
(bnc#459527)
- 2.18.5
Modified:
trunk/online-update/VERSION
trunk/online-update/package/yast2-online-update.changes
trunk/online-update/src/online_update.ycp
Modified: trunk/online-update/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/VERSION?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/VERSION (original)
+++ trunk/online-update/VERSION Thu Oct 8 13:50:12 2009
@@ -1 +1 @@
-2.18.4
+2.18.5
Modified: trunk/online-update/package/yast2-online-update.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/package/yast2-online-update.changes?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/package/yast2-online-update.changes (original)
+++ trunk/online-update/package/yast2-online-update.changes Thu Oct 8 13:50:12
2009
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu Oct 8 13:45:25 CEST 2009 - jsuchome@xxxxxxx
+
+- reverted check for online update source, repositories not tagged
+ (bnc#459527)
+- 2.18.5
+
+-------------------------------------------------------------------
Thu Sep 3 14:36:03 CEST 2009 - jsuchome@xxxxxxx
- added keywords to desktop file
Modified: trunk/online-update/src/online_update.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/online-update/src/online_update.ycp?rev=58972&r1=58971&r2=58972&view=diff
==============================================================================
--- trunk/online-update/src/online_update.ycp (original)
+++ trunk/online-update/src/online_update.ycp Thu Oct 8 13:50:12 2009
@@ -83,16 +83,27 @@
if (!OnlineUpdate::cd_update) // CD for cd update was not initialized yet
{
boolean is_available = false;
+ /* FIXME bnc#459527
+ current update repositories are still not tagged with is_update_repo
foreach (map source, Pkg::SourceEditGet (), {
integer srcid = source["SrcId"]:-1;
map data = Pkg::SourceGeneralData (srcid);
- y2internal ("data source map: %1", data);
if (data["is_update_repo"]:false)
{
is_available = true;
break;
}
});
+ */
+ // old way: check if there is any patch for installation
+ foreach (map patch, Pkg::ResolvableProperties ("", `patch, ""), {
+ if (patch["status"]:`none == `available)
+ {
+ is_available = true;
+ break;
+ }
+ });
+
// yes/no message
if (!is_available && Popup::YesNo (_("No update repository
configured yet. Run configuration workflow now?")))
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |