Mailinglist Archive: yast-commit (129 mails)
| < Previous | Next > |
[yast-commit] r68085 - in /trunk/packager: VERSION package/yast2-packager.changes src/clients/repositories.ycp
- From: lslezak@xxxxxxxxxxxxxxxxx
- Date: Thu, 03 May 2012 15:47:12 -0000
- Message-id: <20120503154712.D7E4632522@svn2.opensuse.org>
Author: lslezak
Date: Thu May 3 17:47:11 2012
New Revision: 68085
URL: http://svn.opensuse.org/viewcvs/yast?rev=68085&view=rev
Log:
- pad repository priority with "0" so table sorting works correctly
also in non-POSIX locale (bnc#752768)
- 2.22.3
Modified:
trunk/packager/VERSION
trunk/packager/package/yast2-packager.changes
trunk/packager/src/clients/repositories.ycp
Modified: trunk/packager/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/VERSION?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/VERSION (original)
+++ trunk/packager/VERSION Thu May 3 17:47:11 2012
@@ -1 +1 @@
-2.22.2
+2.22.3
Modified: trunk/packager/package/yast2-packager.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.changes?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/package/yast2-packager.changes (original)
+++ trunk/packager/package/yast2-packager.changes Thu May 3 17:47:11 2012
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu May 3 14:27:52 UTC 2012 - lslezak@xxxxxxx
+
+- pad repository priority with "0" so table sorting works correctly
+ also in non-POSIX locale (bnc#752768)
+- 2.22.3
+
+-------------------------------------------------------------------
Tue Apr 03 14:58:34 CEST 2012 - aschnell@xxxxxxx
- adapted to move of testX (see bnc#749184)
Modified: trunk/packager/src/clients/repositories.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/clients/repositories.ycp?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/src/clients/repositories.ycp (original)
+++ trunk/packager/src/clients/repositories.ycp Thu May 3 17:47:11 2012
@@ -121,7 +121,7 @@
// pad to 3 characters
integer rest = 3 - size(ret);
while(rest > 0) {
- ret = " " + ret;
+ ret = "0" + ret;
rest = rest - 1;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Thu May 3 17:47:11 2012
New Revision: 68085
URL: http://svn.opensuse.org/viewcvs/yast?rev=68085&view=rev
Log:
- pad repository priority with "0" so table sorting works correctly
also in non-POSIX locale (bnc#752768)
- 2.22.3
Modified:
trunk/packager/VERSION
trunk/packager/package/yast2-packager.changes
trunk/packager/src/clients/repositories.ycp
Modified: trunk/packager/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/VERSION?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/VERSION (original)
+++ trunk/packager/VERSION Thu May 3 17:47:11 2012
@@ -1 +1 @@
-2.22.2
+2.22.3
Modified: trunk/packager/package/yast2-packager.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/package/yast2-packager.changes?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/package/yast2-packager.changes (original)
+++ trunk/packager/package/yast2-packager.changes Thu May 3 17:47:11 2012
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Thu May 3 14:27:52 UTC 2012 - lslezak@xxxxxxx
+
+- pad repository priority with "0" so table sorting works correctly
+ also in non-POSIX locale (bnc#752768)
+- 2.22.3
+
+-------------------------------------------------------------------
Tue Apr 03 14:58:34 CEST 2012 - aschnell@xxxxxxx
- adapted to move of testX (see bnc#749184)
Modified: trunk/packager/src/clients/repositories.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/packager/src/clients/repositories.ycp?rev=68085&r1=68084&r2=68085&view=diff
==============================================================================
--- trunk/packager/src/clients/repositories.ycp (original)
+++ trunk/packager/src/clients/repositories.ycp Thu May 3 17:47:11 2012
@@ -121,7 +121,7 @@
// pad to 3 characters
integer rest = 3 - size(ret);
while(rest > 0) {
- ret = " " + ret;
+ ret = "0" + ret;
rest = rest - 1;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |