Skip to content
Snippets Groups Projects
  1. Mar 28, 2014
  2. Mar 14, 2014
  3. Mar 13, 2014
  4. Mar 06, 2014
  5. Mar 05, 2014
  6. Jan 08, 2014
  7. Oct 29, 2013
  8. Oct 24, 2013
  9. Oct 16, 2013
  10. Sep 06, 2013
  11. 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
  12. Jun 03, 2013
  13. May 31, 2013
  14. Apr 29, 2013
  15. Mar 25, 2013
  16. Mar 08, 2013
  17. Feb 13, 2013
  18. Jan 30, 2013
  19. Jan 29, 2013
  20. Jan 28, 2013
  21. 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
  22. Dec 26, 2012
  23. Nov 16, 2012
  24. Oct 25, 2012
  25. Oct 18, 2012
  26. Oct 11, 2012
  27. Oct 05, 2012
  28. Sep 07, 2012
  29. Sep 06, 2012
  30. Sep 04, 2012
    • Tobias Hunger's avatar
      s/profile/kit/ · 8ba422d0
      Tobias Hunger authored
      
      * Rename profiles to kits.
      * Update some strings:
         * projects mode has a Kits tab, not a Targets tab.
         * " Settings" was dropped from the sub-tabs of the Kits tab
         * menu entry "Build/Open Build/Run Target Selector" was renamed
           to "Build/Open Build and Run Kits Selector".
         * Use "Kit" instead of "Target" in miniprojecttargetselector.
           (The class was not renamed as it does indeed select targets,
            not kits)
      
      Change-Id: I0727e086e2dfa0e8aaaf89fdc6f2e3596c7a4314
      Reviewed-by: default avatarEike Ziller <eike.ziller@nokia.com>
      8ba422d0
  31. Jul 26, 2012
    • hjk's avatar
      madde/qnx/remotelinux: adjust after profile changes · b906360a
      hjk authored
      
      More Profile use, less dependency on QtSupport,
      Derive qtVersionId from profile instead of qt build configuration.
      Replace qt4BuildConfiguration with buildConfiguration.
      Use IDevice base class in AbstractRemoteLinuxApplicationRunner
      and in other places.  Simplify remote linux runconfiguration
      
      Change-Id: I6414d3d8146d16c360b3a0465c57a052ea71f899
      Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
      b906360a
  32. Jul 16, 2012
  33. Jul 13, 2012
Loading