Mailinglist Archive: yast-commit (815 mails)
| < Previous | Next > |
[yast-commit] r39984 - in /trunk/sshd: VERSION package/yast2-sshd.changes src/complex.ycp src/dialogs.ycp src/sshd.desktop src/wizards.ycp
- From: locilka@xxxxxxxxxxxxxxxx
- Date: Mon, 06 Aug 2007 11:43:36 -0000
- Message-id: <20070806114336.AA831B59B0@xxxxxxxxxxxxxxxx>
Author: locilka
Date: Mon Aug 6 13:43:36 2007
New Revision: 39984
URL: http://svn.opensuse.org/viewcvs/yast?rev=39984&view=rev
Log:
- New icon: yast2-sshd
- 2.15.2
Modified:
trunk/sshd/VERSION
trunk/sshd/package/yast2-sshd.changes
trunk/sshd/src/complex.ycp
trunk/sshd/src/dialogs.ycp
trunk/sshd/src/sshd.desktop
trunk/sshd/src/wizards.ycp
Modified: trunk/sshd/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/VERSION?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/VERSION (original)
+++ trunk/sshd/VERSION Mon Aug 6 13:43:36 2007
@@ -1 +1 @@
-2.15.1
+2.15.2
Modified: trunk/sshd/package/yast2-sshd.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/package/yast2-sshd.changes?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/package/yast2-sshd.changes (original)
+++ trunk/sshd/package/yast2-sshd.changes Mon Aug 6 13:43:36 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Aug 6 13:40:57 CEST 2007 - locilka@xxxxxxx
+
+- New icon: yast2-sshd
+- 2.15.2
+
+-------------------------------------------------------------------
Mon Jul 30 22:06:14 CEST 2007 - locilka@xxxxxxx
- Added package description.
Modified: trunk/sshd/src/complex.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/complex.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/complex.ycp (original)
+++ trunk/sshd/src/complex.ycp Mon Aug 6 13:43:36 2007
@@ -22,6 +22,7 @@
*/
symbol ReadDialog() {
Wizard::RestoreHelp(HELPS["read"]:"");
+ Wizard::SetTitleIcon("yast-sshd");
boolean ret = Sshd::Read();
return ret ? `next : `abort;
}
@@ -32,6 +33,7 @@
*/
symbol WriteDialog() {
Wizard::RestoreHelp(HELPS["write"]:"");
+ Wizard::SetTitleIcon("yast-sshd");
boolean ret = Sshd::Write();
return ret ? `next : `abort;
}
Modified: trunk/sshd/src/dialogs.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/dialogs.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/dialogs.ycp (original)
+++ trunk/sshd/src/dialogs.ycp Mon Aug 6 13:43:36 2007
@@ -64,6 +64,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["server_configuration"]:"",
Label::BackButton(), Label::NextButton());
Wizard::DisableBackButton();
+ Wizard::SetTitleIcon("yast-sshd");
InitServerConfigurationDialog();
@@ -133,6 +134,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["login_settings"]:"",
Label::BackButton(), Label::NextButton());
+ Wizard::SetTitleIcon("yast-sshd");
InitLoginSettingsDialog();
@@ -205,6 +207,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["proto_settings"]:"",
Label::BackButton(), Label::NextButton());
Wizard::SetNextButton(`next, Label::AcceptButton());
+ Wizard::SetTitleIcon("yast-sshd");
InitProtocolVersion();
InitCipherTable();
Modified: trunk/sshd/src/sshd.desktop
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/sshd.desktop?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/sshd.desktop (original)
+++ trunk/sshd/src/sshd.desktop Mon Aug 6 13:43:36 2007
@@ -18,7 +18,7 @@
X-SuSE-YaST-AutoInstClonable=true
X-SuSE-YaST-AutoInstRequires=lan
-Icon=yast-nfs
+Icon=yast-sshd
Exec=/sbin/yast2 sshd
Name=SSHD Configuration
Modified: trunk/sshd/src/wizards.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/wizards.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/wizards.ycp (original)
+++ trunk/sshd/src/wizards.ycp Mon Aug 6 13:43:36 2007
@@ -22,8 +22,8 @@
any MainSequence() {
map aliases = $[
- "server_configuration" : ``( ServerConfigurationDialog() ),
- "login_settings" : ``( LoginSettingsDialog() ),
+ "server_configuration" : ``( ServerConfigurationDialog() ),
+ "login_settings" : ``( LoginSettingsDialog() ),
"proto_settings" : ``( ProtoAndCipherDialog() ),
];
@@ -102,6 +102,7 @@
];
Wizard::CreateDialog();
+ Wizard::SetTitleIcon("yast-sshd");
any ret = Sequencer::Run(aliases, sequence);
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon Aug 6 13:43:36 2007
New Revision: 39984
URL: http://svn.opensuse.org/viewcvs/yast?rev=39984&view=rev
Log:
- New icon: yast2-sshd
- 2.15.2
Modified:
trunk/sshd/VERSION
trunk/sshd/package/yast2-sshd.changes
trunk/sshd/src/complex.ycp
trunk/sshd/src/dialogs.ycp
trunk/sshd/src/sshd.desktop
trunk/sshd/src/wizards.ycp
Modified: trunk/sshd/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/VERSION?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/VERSION (original)
+++ trunk/sshd/VERSION Mon Aug 6 13:43:36 2007
@@ -1 +1 @@
-2.15.1
+2.15.2
Modified: trunk/sshd/package/yast2-sshd.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/package/yast2-sshd.changes?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/package/yast2-sshd.changes (original)
+++ trunk/sshd/package/yast2-sshd.changes Mon Aug 6 13:43:36 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Aug 6 13:40:57 CEST 2007 - locilka@xxxxxxx
+
+- New icon: yast2-sshd
+- 2.15.2
+
+-------------------------------------------------------------------
Mon Jul 30 22:06:14 CEST 2007 - locilka@xxxxxxx
- Added package description.
Modified: trunk/sshd/src/complex.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/complex.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/complex.ycp (original)
+++ trunk/sshd/src/complex.ycp Mon Aug 6 13:43:36 2007
@@ -22,6 +22,7 @@
*/
symbol ReadDialog() {
Wizard::RestoreHelp(HELPS["read"]:"");
+ Wizard::SetTitleIcon("yast-sshd");
boolean ret = Sshd::Read();
return ret ? `next : `abort;
}
@@ -32,6 +33,7 @@
*/
symbol WriteDialog() {
Wizard::RestoreHelp(HELPS["write"]:"");
+ Wizard::SetTitleIcon("yast-sshd");
boolean ret = Sshd::Write();
return ret ? `next : `abort;
}
Modified: trunk/sshd/src/dialogs.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/dialogs.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/dialogs.ycp (original)
+++ trunk/sshd/src/dialogs.ycp Mon Aug 6 13:43:36 2007
@@ -64,6 +64,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["server_configuration"]:"",
Label::BackButton(), Label::NextButton());
Wizard::DisableBackButton();
+ Wizard::SetTitleIcon("yast-sshd");
InitServerConfigurationDialog();
@@ -133,6 +134,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["login_settings"]:"",
Label::BackButton(), Label::NextButton());
+ Wizard::SetTitleIcon("yast-sshd");
InitLoginSettingsDialog();
@@ -205,6 +207,7 @@
Wizard::SetContentsButtons(caption, contents, HELPS["proto_settings"]:"",
Label::BackButton(), Label::NextButton());
Wizard::SetNextButton(`next, Label::AcceptButton());
+ Wizard::SetTitleIcon("yast-sshd");
InitProtocolVersion();
InitCipherTable();
Modified: trunk/sshd/src/sshd.desktop
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/sshd.desktop?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/sshd.desktop (original)
+++ trunk/sshd/src/sshd.desktop Mon Aug 6 13:43:36 2007
@@ -18,7 +18,7 @@
X-SuSE-YaST-AutoInstClonable=true
X-SuSE-YaST-AutoInstRequires=lan
-Icon=yast-nfs
+Icon=yast-sshd
Exec=/sbin/yast2 sshd
Name=SSHD Configuration
Modified: trunk/sshd/src/wizards.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/sshd/src/wizards.ycp?rev=39984&r1=39983&r2=39984&view=diff
==============================================================================
--- trunk/sshd/src/wizards.ycp (original)
+++ trunk/sshd/src/wizards.ycp Mon Aug 6 13:43:36 2007
@@ -22,8 +22,8 @@
any MainSequence() {
map aliases = $[
- "server_configuration" : ``( ServerConfigurationDialog() ),
- "login_settings" : ``( LoginSettingsDialog() ),
+ "server_configuration" : ``( ServerConfigurationDialog() ),
+ "login_settings" : ``( LoginSettingsDialog() ),
"proto_settings" : ``( ProtoAndCipherDialog() ),
];
@@ -102,6 +102,7 @@
];
Wizard::CreateDialog();
+ Wizard::SetTitleIcon("yast-sshd");
any ret = Sequencer::Run(aliases, sequence);
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |