- Jan 08, 2014
-
-
Robert Loehning authored
Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Oct 16, 2013
-
-
El Mehdi Fekari authored
Change-Id: I10e5f7b4c9d0d527f8df34aa425a2a0bdaac5243 Reviewed-by:
David Kaspar <dkaspar@blackberry.com> Reviewed-by:
Nicolas Arnaud-Cormos <nicolas@kdab.com>
-
- Oct 09, 2013
-
-
Eike Ziller authored
QTBUG-28385 is biting us over and over (QWizard doesn't have close button nor cancel button on Mac in Qt 5), and actually there's no reason for us having a wizard without the features from Utils::Wizard. Task-number: QTCREATORBUG-10346 Task-number: QTBUG-28385 Change-Id: I80c0d82fe6738496c2ac03c31a1c2757ade8e266 Reviewed-by:
Jarek Kobus <jaroslaw.kobus@digia.com> Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- Aug 14, 2013
-
-
David Kaspar authored
BlackBerryDeviceConfigurationWizardSshKeyPage wizard page has been removed. It is not needed anymore. The wizard automatically generates or reuses a SSH key that is stores in __settings__/qnx/id_rsa file. The same SSH key is used for connecting to all BB10 devices. The generation of 'default' SSH key is gone as a second step of BlackBerryDeviceConfigurationWizardQueryPage wizard page. Disabling device-tester for BlackBerryDeviceConfiguration. Task-number: QTCREATORBUG-9977 Change-Id: Ice6068530c9c72fa82907decaaa3dca6077e9c3a Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
David Kaspar <dkaspar@blackberry.com>
-
- Aug 12, 2013
-
-
David Kaspar authored
BlackBerry Device wizard is having the following pages: * Setup page - simplified to contains the device listing, device host name and device password fields only * Query page - queries device for information * SshKey page - no changes there * Config page - contains config-name and debug token fields Change-Id: I30e05b984960df2184353209bff1f07c9440e6b1 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
David Kaspar <dkaspar@blackberry.com>
-
- Jun 20, 2013
-
-
Christian Kandeler authored
There is now at least one Linux distribution (openSUSE 12.3) that disables the "password" authentication method in its default sshd_config, while others allow it, but disable "keyboard-interactive". This patch tackles the problem as follows: 1) Implement RFC 4256 ("keyboard-interactive") and make this method available in the API. 2) In addition, the API offers to try both password-based methods one after the other, until one has succeeded or all have failed. 3) Dialogs continue to offer just the choice between "Password" and "Key", as to not confuse users. Internally, "Password" uses the feature described in 2). Task-number: QTCREATORBUG-9568 Change-Id: Ic81bd5d2dc4b1332ea1a8be938c19811c21a9087 Reviewed-by:
hjk <hjk121@nokiamail.com> Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Apr 30, 2013
-
-
Tobias Nätterlund authored
The user is now asked where to store the generated SSH key, before it is generated, and if that would fail, is still enabled to select a different key. Task-number: QTCREATORBUG-9101 Task-number: QTCREATORBUG-9102 Change-Id: I8e2f732dbcbe7bd3bd3fa9b512a7a195fa868c17 Reviewed-by:
Nicolas Arnaud-Cormos <nicolas@kdab.com> Reviewed-by:
Rafael Roquetto <rafael.roquetto@kdab.com> Reviewed-by:
Mehdi Fekari <mfekari@blackberry.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 08, 2013
-
-
Orgad Shaneh authored
#!/usr/bin/env ruby Dir.glob('**/*.cpp') { |file| # skip ast (excluding paste, astpath, and canv'ast'imer) next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i s = File.read(file) next if s.include?('qlalr') orig = s.dup s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m| res = $& if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces res else res.gsub!('} else', 'else') res.gsub!(/\n +} *\n/m, "\n") res.gsub(/ *{$/, '') end } s.gsub!(/ *$/, '') File.open(file, 'wb').write(s) if s != orig } Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Oct 04, 2012
-
-
Christian Kandeler authored
So far, the only option is whether to use the default proxy or not. More will follow. Change-Id: Icd1ec407a0269cc8e7577901853d3873fd03015c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jul 13, 2012
-
-
Tobias Nätterlund authored
This plugin adds support for cross-compiling, deploying, running and debugging on a PlayBook or QNX Neutrino device. Change-Id: I0da7ccee40bd7ce4c0d6bdc6884d48ef23167dac Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-