~ubuntu-branches/ubuntu/trusty/kvirc/trusty-proposed

« back to all changes in this revision

Viewing changes to src/kvilib/net/kvi_url.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Kai Wasserbäch, Kai Wasserbäch, Raúl Sánchez Siles
  • Date: 2011-02-12 10:40:21 UTC
  • mfrom: (14.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110212104021-5mh4f75jlku20mnt
The combined "Twisted Experiment" and "Nocturnal Raid" release.

[ Kai Wasserbäch ]
* Synced to upstream's SVN revision 5467.
* debian/rules:
  - Added .PHONY line.
  - Resurrect -DMANUAL_REVISION, got lost somewhere and we build SVN
    revisions again.
  - Replace "-DWITH_NO_EMBEDDED_CODE=YES" with "-DWANT_CRYPTOPP=YES".
  - Change the remaining -DWITH/-DWITHOUT to the new -DWANT syntax.
* debian/control:
  - Removed DMUA, I'm a DD now.
  - Changed my e-mail address.
  - Removed unneeded relationships (no upgrades over two releases are
    supported).
  - Fix Suggests for kvirc-dbg.
  - kvirc-data: Make the "Suggests: kvirc" a Recommends, doesn't make much
    sense to install the -data package without the program.
* debian/source/local-options: Added with "unapply-patches".
* debian/kvirc.lintian-overrides: Updated to work for 4.1.1.
* debian/patches/21_make_shared-mime-info_B-D_superfluous.patch: Updated.
* debian/kvirc-data.install: Added .notifyrc.

[ Raúl Sánchez Siles ]
* Stating the right version where kvirc-data break and replace should happen.
* Fixing link to license file.
* Added French and Portuguese man pages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//=============================================================================
2
 
//
3
 
//   File : kvi_url.cpp
4
 
//   Creation date : Sat Aug 17 14:09:18 2002 GMT by Szymon Stefanek
5
 
//
6
 
//   This file is part of the KVirc irc client distribution
7
 
//   Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net)
8
 
//
9
 
//   This program is FREE software. You can redistribute it and/or
10
 
//   modify it under the terms of the GNU General Public License
11
 
//   as published by the Free Software Foundation; either version 2
12
 
//   of the License, or (at your opinion) any later version.
13
 
//
14
 
//   This program is distributed in the HOPE that it will be USEFUL,
15
 
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
 
//   See the GNU General Public License for more details.
18
 
//
19
 
//   You should have received a copy of the GNU General Public License
20
 
//   along with this program. If not, write to the Free Software Foundation,
21
 
//   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
 
//
23
 
//=============================================================================
24
 
 
25
 
 
26
 
 
27
 
#include "kvi_url.h"
28
 
#include <QUrl>
29
 
 
30
 
KviUrl::KviUrl()
31
 
{
32
 
}
33
 
 
34
 
KviUrl::KviUrl(const KviUrl & u)
35
 
{
36
 
        *this = u;
37
 
}
38
 
 
39
 
KviUrl::KviUrl(const char * szUrl)
40
 
{
41
 
        m_szUrl = QString::fromLocal8Bit(szUrl);
42
 
        parse();
43
 
}
44
 
 
45
 
KviUrl::KviUrl(const QString &szUrl)
46
 
{
47
 
        m_szUrl = szUrl;
48
 
        parse();
49
 
}
50
 
 
51
 
KviUrl::~KviUrl()
52
 
{
53
 
 
54
 
}
55
 
 
56
 
void KviUrl::parse()
57
 
{
58
 
        QUrl url(m_szUrl);
59
 
        m_szProtocol = url.scheme();
60
 
        m_szHost = url.host();
61
 
        m_szPath = url.encodedPath();
62
 
        if(url.hasQuery())
63
 
        {
64
 
                m_szPath.append(QChar('?'));
65
 
                m_szPath.append(url.encodedQuery());
66
 
        }
67
 
        if(m_szPath.isEmpty()) m_szPath=QString("/");
68
 
        m_szUser = url.userName();
69
 
        m_szPass = url.password();
70
 
        m_uPort = url.port() > 0 ? url.port() : 80 ;
71
 
}
72
 
 
73
 
 
74
 
KviUrl & KviUrl::operator=(const QString& szUrl)
75
 
{
76
 
        m_szUrl = szUrl;
77
 
        parse();
78
 
        return *this;
79
 
}
80
 
 
81
 
KviUrl & KviUrl::operator=(const KviUrl &u)
82
 
{
83
 
        m_szUrl = u.m_szUrl;
84
 
        m_szProtocol = u.m_szProtocol;
85
 
        m_szHost = u.m_szHost;
86
 
        m_szPath = u.m_szPath;
87
 
        m_szUser = u.m_szUser;
88
 
        m_szPass = u.m_szPass;
89
 
        m_uPort = u.m_uPort;
90
 
        return *this;
91
 
}
92
 
 
93