Author: lslezak Date: Wed Apr 30 15:18:32 2008 New Revision: 47229
URL: http://svn.opensuse.org/viewcvs/yast?rev=47229&view=rev Log: - added support for `repoMgr option in YCPDialogParser::parsePackageSelector() to make the repository management optional (bnc#381956) - V 2.16.46
Modified: trunk/ycp-ui-bindings/VERSION trunk/ycp-ui-bindings/package/yast2-ycp-ui-bindings.changes trunk/ycp-ui-bindings/src/YCPDialogParser.cc trunk/ycp-ui-bindings/yast2-ycp-ui-bindings.spec.in
Modified: trunk/ycp-ui-bindings/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/VERSION?rev=47229... ============================================================================== --- trunk/ycp-ui-bindings/VERSION (original) +++ trunk/ycp-ui-bindings/VERSION Wed Apr 30 15:18:32 2008 @@ -1 +1 @@ -2.16.45 +2.16.46
Modified: trunk/ycp-ui-bindings/package/yast2-ycp-ui-bindings.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/package/yast2-ycp... ============================================================================== --- trunk/ycp-ui-bindings/package/yast2-ycp-ui-bindings.changes (original) +++ trunk/ycp-ui-bindings/package/yast2-ycp-ui-bindings.changes Wed Apr 30 15:18:32 2008 @@ -1,4 +1,12 @@ ------------------------------------------------------------------- +Wed Apr 30 15:08:14 CEST 2008 - lslezak@suse.cz + +- added support for `repoMgr option in + YCPDialogParser::parsePackageSelector() to make the repository + management optional (bnc#381956) +- V 2.16.46 + +------------------------------------------------------------------- Wed Apr 16 12:27:51 CEST 2008 - sh@suse.de
- Let YDialog take care of deleting events
Modified: trunk/ycp-ui-bindings/src/YCPDialogParser.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/src/YCPDialogPars... ============================================================================== --- trunk/ycp-ui-bindings/src/YCPDialogParser.cc (original) +++ trunk/ycp-ui-bindings/src/YCPDialogParser.cc Wed Apr 30 15:18:32 2008 @@ -2370,6 +2370,7 @@ * @option searchMode start with the "search" filter view * @option summaryMode start with the "installation summary" filter view * @option repoMode start with the "repositories" filter view + * @option repoMgr enable "Repository Manager" menu item * @usage `PackageSelector() * * @examples PackageSelector.ycp @@ -2421,6 +2422,7 @@ else if ( sym == YUIOpt_summaryMode ) modeFlags |= YPkg_SummaryMode; else if ( sym == YUIOpt_repoMode ) modeFlags |= YPkg_RepoMode; else if ( sym == YUIOpt_testMode ) modeFlags |= YPkg_TestMode; + else if ( sym == YUIOpt_repoMgr ) modeFlags |= YPkg_RepoMgr; else logUnknownOption( term, optList->value(o) ); } else logUnknownOption( term, optList->value(o) );
Modified: trunk/ycp-ui-bindings/yast2-ycp-ui-bindings.spec.in URL: http://svn.opensuse.org/viewcvs/yast/trunk/ycp-ui-bindings/yast2-ycp-ui-bind... ============================================================================== --- trunk/ycp-ui-bindings/yast2-ycp-ui-bindings.spec.in (original) +++ trunk/ycp-ui-bindings/yast2-ycp-ui-bindings.spec.in Wed Apr 30 15:18:32 2008 @@ -19,8 +19,9 @@ # libycp includes crypto built-ins BuildRequires: libxcrypt-devel
-Requires: yast2-libyui >= 2.16.45 -BuildRequires: yast2-libyui-devel >= 2.16.45 +# YUIOpt_repoMgr value +Requires: yast2-libyui >= 2.16.47 +BuildRequires: yast2-libyui-devel >= 2.16.47
# libyui ImplPtr BuildRequires: boost-devel
yast-commit@lists.opensuse.org