Author: jsmeix Date: Wed Aug 4 15:03:25 2010 New Revision: 62335 URL: http://svn.opensuse.org/viewcvs/yast?rev=62335&view=rev Log: - Enhanced texts in popups regarding firewall so that they can no longer be misunderstood to open ports (bnc#627799). - Enhanced the help text regarding possible drawback (delays if CUPS server does not respond) for a "client only" config. - Because openSUSE 11.3 is done, increased VERSION to 2.20.0. Modified: trunk/printer/VERSION trunk/printer/src/helps.ycp trunk/printer/src/printingvianetwork.ycp trunk/printer/src/sharing.ycp Modified: trunk/printer/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/VERSION?rev=62335&r1=62334&r2=62335&view=diff ============================================================================== --- trunk/printer/VERSION (original) +++ trunk/printer/VERSION Wed Aug 4 15:03:25 2010 @@ -1 +1 @@ -2.19.14 +2.20.0 Modified: trunk/printer/src/helps.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/helps.ycp?rev=62335&r1=62334&r2=62335&view=diff ============================================================================== --- trunk/printer/src/helps.ycp (original) +++ trunk/printer/src/helps.ycp Wed Aug 4 15:03:25 2010 @@ -692,7 +692,13 @@ _("<p> If you print only via network and if you use only one single CUPS server, there is no need to use CUPS Browsing and have a CUPS daemon running on your host. -Instead it is simpler to specify the CUPS server and access it directly. +Instead it is simpler to specify the CUPS server and access it directly.<br> +A possible drawback is that application programs may be delayed +for some time (until a timeout happens) when they try +to access the CUPS server but it is actually not available +(e.g. while traveling with a laptop). Usually it is a host name +resolution (DNS) timeout which causes the delay so that it may help +to have a hardcoded entry for the CUPS server in the /etc/hosts file. </p>") + // PrintingViaNetworkDialog help 4/4: _("<p> Modified: trunk/printer/src/printingvianetwork.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/printingvianetwork.ycp?rev=62335&r1=62334&r2=62335&view=diff ============================================================================== --- trunk/printer/src/printingvianetwork.ycp (original) +++ trunk/printer/src/printingvianetwork.ycp Wed Aug 4 15:03:25 2010 @@ -183,11 +183,13 @@ boolean ShowBrowsingFirewallPopup() { if( Printerlib::FirewallSeemsToBeActive() ) - { Popup::MessageDetails( // Popup::MessageDetails message: - _("Check that your firewall allows incomming printer information on UDP port 631."), - // Popup::MessageDetails information regarding details: - _("For details regarding firewall see the help text of this dialog.") - ); + { Popup::AnyMessage( // Popup::AnyMessage header: + // Use the exact same wording "printer announcements from CUPS servers" + // as in the matching CheckBox to accept printer information from remote CUPS servers: + _("A firewall may reject printer announcements from CUPS servers"), + // Popup::AnyMessage message: + _("Regarding firewall setup see the help text of this dialog.") + ); return true; } return false; Modified: trunk/printer/src/sharing.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/sharing.ycp?rev=62335&r1=62334&r2=62335&view=diff ============================================================================== --- trunk/printer/src/sharing.ycp (original) +++ trunk/printer/src/sharing.ycp Wed Aug 4 15:03:25 2010 @@ -233,11 +233,13 @@ boolean ShowSharePrintersFirewallPopup() { if( Printerlib::FirewallSeemsToBeActive() ) - { Popup::MessageDetails( // Popup::MessageDetails message: - _("Check that your firewall allows remote access to CUPS via IPP on port 631."), - // Popup::MessageDetails information regarding details: - _("For details regarding firewall see the help text of this dialog.") - ); + { Popup::AnyMessage( // Popup::AnyMessage header: + // Use the exact same wording "remote access" + // as in the matching RadioButton label to allow remote access to local print queues: + _("A firewall may prevent remote access"), + // Popup::AnyMessage message: + _("Regarding firewall setup see the help text of this dialog.") + ); return true; } return false; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org