~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/qt3support/network/q3ftp.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
2
**
3
3
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 
4
** All rights reserved.
4
5
** Contact: Nokia Corporation (qt-info@nokia.com)
5
6
**
6
7
** This file is part of the Qt3Support module of the Qt Toolkit.
7
8
**
8
9
** $QT_BEGIN_LICENSE:LGPL$
9
 
** Commercial Usage
10
 
** Licensees holding valid Qt Commercial licenses may use this file in
11
 
** accordance with the Qt Commercial License Agreement provided with the
12
 
** Software or, alternatively, in accordance with the terms contained in
13
 
** a written agreement between you and Nokia.
 
10
** No Commercial Usage
 
11
** This file contains pre-release code and may not be distributed.
 
12
** You may use this file in accordance with the terms and conditions
 
13
** contained in the Technology Preview License Agreement accompanying
 
14
** this package.
14
15
**
15
16
** GNU Lesser General Public License Usage
16
17
** Alternatively, this file may be used under the terms of the GNU Lesser
20
21
** ensure the GNU Lesser General Public License version 2.1 requirements
21
22
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22
23
**
23
 
** In addition, as a special exception, Nokia gives you certain
24
 
** additional rights. These rights are described in the Nokia Qt LGPL
25
 
** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26
 
** package.
27
 
**
28
 
** GNU General Public License Usage
29
 
** Alternatively, this file may be used under the terms of the GNU
30
 
** General Public License version 3.0 as published by the Free Software
31
 
** Foundation and appearing in the file LICENSE.GPL included in the
32
 
** packaging of this file.  Please review the following information to
33
 
** ensure the GNU General Public License version 3.0 requirements will be
34
 
** met: http://www.gnu.org/copyleft/gpl.html.
35
 
**
36
 
** If you are unsure which license is appropriate for your use, please
37
 
** contact the sales department at http://www.qtsoftware.com/contact.
 
24
** In addition, as a special exception, Nokia gives you certain additional
 
25
** rights.  These rights are described in the Nokia Qt LGPL Exception
 
26
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
27
**
 
28
** If you have questions regarding the use of this file, please contact
 
29
** Nokia at qt-info@nokia.com.
 
30
**
 
31
**
 
32
**
 
33
**
 
34
**
 
35
**
 
36
**
 
37
**
38
38
** $QT_END_LICENSE$
39
39
**
40
40
****************************************************************************/
485
485
    dateStr += lst[ 6 ];
486
486
    dateStr += QLatin1Char(' ');
487
487
 
488
 
    if ( lst[ 7 ].contains( QLatin1String(":") ) ) {
 
488
    if ( lst[ 7 ].contains( QLatin1Char(':') ) ) {
489
489
        time = QTime( lst[ 7 ].left( 2 ).toInt(), lst[ 7 ].right( 2 ).toInt() );
490
490
        dateStr += QString::number( QDate::currentDate().year() );
491
491
    } else {
495
495
    QDate date = QDate::fromString( dateStr );
496
496
    info->setLastModified( QDateTime( date, time ) );
497
497
 
498
 
    if ( lst[ 7 ].contains( QLatin1String(":") ) ) {
 
498
    if ( lst[ 7 ].contains( QLatin1Char(':') ) ) {
499
499
        const int futureTolerance = 600;
500
500
        if( info->lastModified().secsTo( QDateTime::currentDateTime() ) < -futureTolerance ) {
501
501
            QDateTime dt = info->lastModified();
512
512
    else {
513
513
        QString n;
514
514
        for ( uint i = 8; i < (uint) lst.count(); ++i )
515
 
            n += lst[ i ] + QLatin1String(" ");
 
515
            n += lst[ i ] + QLatin1Char(' ');
516
516
        n = n.stripWhiteSpace();
517
517
        info->setName( n );
518
518
    }
897
897
            // ### error handling
898
898
        } else {
899
899
            QStringList lst = addrPortPattern.capturedTexts();
900
 
            QString host = lst[1] + QLatin1String(".") + lst[2] + QLatin1String(".") + lst[3] + QLatin1String(".") + lst[4];
 
900
            QString host = lst[1] + QLatin1Char('.') + lst[2] + QLatin1Char('.') + lst[3] + QLatin1Char('.') + lst[4];
901
901
            Q_UINT16 port = ( lst[5].toUInt() << 8 ) + lst[6].toUInt();
902
902
            waitForDtpToConnect = true;
903
903
            dtp.connectToHost( host, port );
1144
1144
    Some commands, e.g. list(), emit additional signals to report
1145
1145
    their results.
1146
1146
 
1147
 
    Example: If you want to download the INSTALL file from Trolltech's
 
1147
    Example: If you want to download the INSTALL file from the Qt
1148
1148
    FTP server, you would write this:
1149
1149
 
1150
1150
    \snippet doc/src/snippets/code/src_qt3support_network_q3ftp.cpp 2
1435
1435
int Q3Ftp::login( const QString &user, const QString &password )
1436
1436
{
1437
1437
    QStringList cmds;
1438
 
    cmds << ( QString(QLatin1String("USER ")) + ( user.isNull() ? QString(QLatin1String("anonymous")) : user ) + QLatin1String("\r\n") );
1439
 
    cmds << ( QString(QLatin1String("PASS ")) + ( password.isNull() ? QString(QLatin1String("anonymous@")) : password ) + QLatin1String("\r\n") );
 
1438
    cmds << ( QString::fromLatin1("USER ") + ( user.isNull() ? QString::fromLatin1("anonymous") : user ) + QLatin1String("\r\n") );
 
1439
    cmds << ( QString::fromLatin1("PASS ") + ( password.isNull() ? QString::fromLatin1("anonymous@") : password ) + QLatin1String("\r\n") );
1440
1440
    return addCommand( new Q3FtpCommand( Login, cmds ) );
1441
1441
}
1442
1442
 
2095
2095
{
2096
2096
    op->setState( StInProgress );
2097
2097
 
2098
 
    cd( ( url()->path().isEmpty() ? QString( QLatin1String("/") ) : url()->path() ) );
 
2098
    cd( ( url()->path().isEmpty() ? QString::fromLatin1("/") : url()->path() ) );
2099
2099
    list();
2100
2100
    emit start( op );
2101
2101
}
2115
2115
{
2116
2116
    op->setState( StInProgress );
2117
2117
 
2118
 
    cd( ( url()->path().isEmpty() ? QString( QLatin1String("/") ) : url()->path() ) );
 
2118
    cd( ( url()->path().isEmpty() ? QString::fromLatin1("/") : url()->path() ) );
2119
2119
    remove( Q3Url( op->arg( 0 ) ).path() );
2120
2120
}
2121
2121
 
2125
2125
{
2126
2126
    op->setState( StInProgress );
2127
2127
 
2128
 
    cd( ( url()->path().isEmpty() ? QString( QLatin1String("/") ) : url()->path() ) );
 
2128
    cd( ( url()->path().isEmpty() ? QString::fromLatin1("/") : url()->path() ) );
2129
2129
    rename( op->arg( 0 ), op->arg( 1 ));
2130
2130
}
2131
2131
 
2179
2179
                connectToHost( url()->host(), url()->port() != -1 ? url()->port() : 21 );
2180
2180
                break;
2181
2181
        }
2182
 
        QString user = url()->user().isEmpty() ? QString( QLatin1String("anonymous") ) : url()->user();
2183
 
        QString pass = url()->password().isEmpty() ? QString( QLatin1String("anonymous@") ) : url()->password();
 
2182
    QString user = url()->user().isEmpty() ? QString::fromLatin1("anonymous") : url()->user();
 
2183
    QString pass = url()->password().isEmpty() ? QString::fromLatin1("anonymous@") : url()->password();
2184
2184
        login( user, pass );
2185
2185
    }
2186
2186