Skip to content
Snippets Groups Projects
  1. Jan 08, 2014
  2. Oct 16, 2013
  3. Oct 09, 2013
  4. Aug 14, 2013
    • David Kaspar's avatar
      Qnx: Auto-generating SSH key used for connecting to a BB10 device · 8b925007
      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: default avatarTobias Hunger <tobias.hunger@digia.com>
      Reviewed-by: default avatarDavid Kaspar <dkaspar@blackberry.com>
      8b925007
  5. Aug 12, 2013
  6. Jun 20, 2013
    • Christian Kandeler's avatar
      SSH: Implement and make use of RFC 4256. · 9e5a9110
      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: default avatarhjk <hjk121@nokiamail.com>
      Reviewed-by: default avatarChristian Kandeler <christian.kandeler@digia.com>
      9e5a9110
  7. Apr 30, 2013
  8. Jan 29, 2013
  9. Jan 08, 2013
    • Orgad Shaneh's avatar
      Remove braces for single lines of conditions · 29a93998
      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: default avatarhjk <qthjk@ovi.com>
      29a93998
  10. Oct 05, 2012
  11. Oct 04, 2012
  12. Jul 13, 2012
Loading