Sponsored Content
The Lounge What is on Your Mind? Your site has been switched to Mobile First Indexing Post 303038672 by Neo on Wednesday 11th of September 2019 02:23:11 AM
Old 09-11-2019
Also, it does look like I need to run the site though the WC3 HTML validator again as well.
 

8 More Discussions You Might Find Interesting

1. IP Networking

port access to site to site VPN

Setup a site to site VPN between two cisco routers. One of the site locations is unable to access ports such as https://example.com:9001 How do I let them go into port 9001? They can ssh, ftp, telnet and everything else. Is this a VPN issue or ACL access issue? I put permit ip host... (0 Replies)
Discussion started by: photon
0 Replies

2. Shell Programming and Scripting

indexing a file

hello guys, I have a file like this: input.dat Push-to-talk No Coonection IP support Support for IP telephony Yes Built-in SIP stack Yes Support via software Yes Microsoft Support for Microsoft Exchange Yes UMA (5 Replies)
Discussion started by: Johanni
5 Replies

3. IP Networking

How to establish site to site vpn - Linux machine and cisco asa?

Hi, I am trying to establish vpn between my linux server and cisco asa at client side. I installed openswan on my cent os. Linux Server eth0 - 182.2.29.10 Gateway - 182.2.29.1 eth1 - 192.9.200.75 I have simple IPtables Like WAN="eth0" LAN="eth1" (0 Replies)
Discussion started by: ashokvpp
0 Replies

4. IP Networking

Does cisco 1921 router support site to site VPNs using IPSec?

Q: "Does Cisco 1921 router support,, act as an endpoint for, site to site VPNs using IPSec? If so, how many? " A: If you get the Cisco 1921/k9 with the security services bundle then it will have built in security features. Cisco, typically includes IP Sec tunnels I believe as part of that... (0 Replies)
Discussion started by: Ayaerlee
0 Replies

5. IP Networking

IPSec Openswan Site to Site VPN - Big Pain

Hi @all, I try to connect 2 LANs with IPSec/Openswan LAN 1: 192.168.0.0/24 LAN 2: 192.168.1.0/24 This is my Config: conn HomeVPN # # Left security gateway, subnet behind it, nexthop toward right. left=192.168.1.29 ... (1 Reply)
Discussion started by: bahnhasser83
1 Replies

6. IP Networking

Node switched itself from static to DHCP on reboot issue

I'm trying to figure out what circumstances would cause an Open Solaris 11.2 host to switch itself from a static to a DHCP ip address upon reboot. This has only happened once but is a cause for some concern as this machine will be part of a web server pool. Nothing has changed on the LAN that... (2 Replies)
Discussion started by: SmokeyJoe
2 Replies

7. What is on Your Mind?

New UNIX.COM Mobile Site Icons

Having given up for the time being with a very difficult game engine project to virtualizing cyberspace, am working on the forums again. Just updated a few icons on the mobile site. Explanations in the picture captions: https://www.unix.com/members/1-albums214-picture855.jpeg ... (1 Reply)
Discussion started by: Neo
1 Replies

8. What is on Your Mind?

Mobile Thanks Now Visible in Mobile

Hey, I have enable post thanks (viewing thanks, not yet giving thanks) in mobile: https://www.unix.com/members/1-albums214-picture1018.jpeg I plan to also add the button to "give thanks on mobile. In addition, I will change the formatting (color and justification) of this new mobile... (1 Reply)
Discussion started by: Neo
1 Replies
QIntValidator(3qt)														QIntValidator(3qt)

NAME
QIntValidator - Validator which ensures that a string contains a valid integer within a specified range SYNOPSIS
#include <qvalidator.h> Inherits QValidator. Public Members QIntValidator ( QObject * parent, const char * name = 0 ) QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 ) ~QIntValidator () virtual QValidator::State validate ( QString & input, int & ) const void setBottom ( int ) void setTop ( int ) virtual void setRange ( int bottom, int top ) int bottom () const int top () const Properties int bottom - the validator's lowest acceptable value int top - the validator's highest acceptable value DESCRIPTION
The QIntValidator class provides a validator which ensures that a string contains a valid integer within a specified range. Example of use: QValidator* validator = new QIntValidator( 100, 999, this ); QLineEdit* edit = new QLineEdit( this ); // the edit lineedit will only accept integers between 100 and 999 edit->setValidator( validator ); Below we present some examples of validators. In practice they would normally be associated with a widget as in the example above. QString str; int pos = 0; QIntValidator v( 100, 999, this ); str = "1"; v.validate( str, pos ); // returns Intermediate str = "12"; v.validate( str, pos ); // returns Intermediate str = "123"; v.validate( str, pos ); // returns Acceptable str = "678"; v.validate( str, pos ); // returns Acceptable str = "1234"; v.validate( str, pos ); // returns Invalid str = "-123"; v.validate( str, pos ); // returns Invalid str = "abc"; v.validate( str, pos ); // returns Invalid str = "12cm"; v.validate( str, pos ); // returns Invalid The minimum and maximum values are set in one call with setRange() or individually with setBottom() and setTop(). See also QDoubleValidator, QRegExpValidator, and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QIntValidator::QIntValidator ( QObject * parent, const char * name = 0 ) Constructs a validator called name with parent parent, that accepts all integers. QIntValidator::QIntValidator ( int minimum, int maximum, QObject * parent, const char * name = 0 ) Constructs a validator called name with parent parent, that accepts integers from minimum to maximum inclusive. QIntValidator::~QIntValidator () Destroys the validator, freeing any resources allocated. int QIntValidator::bottom () const Returns the validator's lowest acceptable value. See the "bottom" property for details. void QIntValidator::setBottom ( int ) Sets the validator's lowest acceptable value. See the "bottom" property for details. void QIntValidator::setRange ( int bottom, int top ) [virtual] Sets the range of the validator to only accept integers between bottom and top inclusive. void QIntValidator::setTop ( int ) Sets the validator's highest acceptable value. See the "top" property for details. int QIntValidator::top () const Returns the validator's highest acceptable value. See the "top" property for details. QValidator::State QIntValidator::validate ( QString & input, int & ) const [virtual] Returns Acceptable if the input is an integer within the valid range, Intermediate if the input is an integer outside the valid range and Invalid if the input is not an integer. Note: If the valid range consists of just positive integers (e.g. 32 - 100) and input is a negative integer then Invalid is returned. int pos = 0; s = "abc"; v.validate( s, pos ); // returns Invalid s = "5"; v.validate( s, pos ); // returns Intermediate s = "50"; v.validate( s, pos ); // returns Valid Reimplemented from QValidator. Property Documentation int bottom This property holds the validator's lowest acceptable value. Set this property's value with setBottom() and get this property's value with bottom(). See also setRange(). int top This property holds the validator's highest acceptable value. Set this property's value with setTop() and get this property's value with top(). See also setRange(). SEE ALSO
http://doc.trolltech.com/qintvalidator.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qintvalidator.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QIntValidator(3qt)
All times are GMT -4. The time now is 05:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy