1. 23 Aug, 2018 3 commits
  2. 22 Aug, 2018 1 commit
    • Xiaowu Zhang's avatar
      erp5_web_renderjs_ui_test: wait for page loaded · 8aa74de6
      Xiaowu Zhang authored
      this commit should fix random plus button not present issue when open sort editor
      the reason is sort editor is opened before launcher call editor_panel.close()
      so wait for page loaded before open sort editor
      8aa74de6
  3. 21 Aug, 2018 6 commits
  4. 20 Aug, 2018 2 commits
  5. 17 Aug, 2018 6 commits
  6. 16 Aug, 2018 14 commits
  7. 15 Aug, 2018 1 commit
  8. 14 Aug, 2018 3 commits
  9. 13 Aug, 2018 1 commit
  10. 10 Aug, 2018 3 commits
    • Rafael Monnerat's avatar
    • Rafael Monnerat's avatar
      erp5_oauth_facebook_login: Implement Facebook Login Support for OAuth · ceebcca1
      Rafael Monnerat authored
         Changes on ERP5Security: Define getFacebookUserEntry to reduce code duplication
         Add facebook support for login and logout (optional) on erp5_core, xhtml and credentials.
      ceebcca1
    • Julien Muchembled's avatar
      testAdvancedInvoicing: remove noop/broken statement · cd39ac48
      Julien Muchembled authored
      Any use of erp5_sql_transactionless_connection must end with an explicit SQL
      commit, otherwise it does nothing and it may even leave SQL locks.
      
      Contrary to InnoDB, TokuDB locks on such statement. test_InvoiceViewAsODT
      is the only test that does not use erp5_sql_transactionless_connection
      (other tests do via IdTool), breaking the next test
      (test_PackingListEditAndInvoiceRule) with "Lock wait timeout exceeded" error.
      
      One would except that the tests use the same instance of
      erp5_sql_transactionless_connection, and in this case it would not fail, but
      for bad reasons, tests alternate between 2 different ZODB Connection instances.
      cd39ac48