1. 26 Nov, 2020 3 commits
  2. 23 Nov, 2020 2 commits
  3. 17 Nov, 2020 4 commits
  4. 13 Nov, 2020 2 commits
  5. 12 Nov, 2020 1 commit
    • Jérome Perrin's avatar
      ERP5TypeFunctionalTestCase: wait a bit longer for Xvfb to start · 6708c75a
      Jérome Perrin authored
      When running on testnode, runUniTest is responsible for picking a free $DISPLAY.
      This is implemented by starting Xvfb on a $DISPLAY, waiting a bit and if it is
      still running we assume the $DISPLAY was free. But it seems sometimes we don't
      wait enough, when testnodes are overloaded.
      
      This implementation is wrong, we could run a command check that X is running,
      but as explained in the code command below, xdpyinfo or other tools are
      currently not available in test environment. Since we are considering switching
      this to seleniumserver (which would take care of running a X Server for us) so
      this is OK for now.
      6708c75a
  6. 11 Nov, 2020 1 commit
  7. 09 Nov, 2020 1 commit
  8. 05 Nov, 2020 2 commits
    • Jérome Perrin's avatar
      Related keys for translated relations · 7b434341
      Jérome Perrin authored
      Implement related keys for translated relations (like `source__translated__title`) and change content translation to index categories, by also indexing types whose translation is set in Localizer.
      
      See merge request !1292
      7b434341
    • Jérome Perrin's avatar
      Stock report valuation · 3530f7c6
      Jérome Perrin authored
      Extend stock report dialog to allow choosing a (simple) valuation method
      
      ![stock report dialog screenshot](/uploads/2e0fa7c420954c3f84260605b3a6930e/image.png)
      
      which be displayed in a new column, showing the inventory value for each line
      
      See merge request !1203
      3530f7c6
  9. 04 Nov, 2020 6 commits
  10. 29 Oct, 2020 7 commits
    • Jérome Perrin's avatar
      content_translation: Also index translations from message catalogs · f14811fa
      Jérome Perrin authored
      Now that we are able to search using content translation, we also want
      to extend this so that columns like "group__title" can be searchable in listboxs,
      but categories are usually translated with `erp5_content`, which was not indexed
      in content_translation table.
      
      Extend content translation indexing to also support translations coming from
      Localizer catalog make this possible.
      
      The only limitation I could think of is that categories will need to be reindexed
      when the messages are modified in catalog.
      f14811fa
    • Jérome Perrin's avatar
      ERP5Catalog/content_translation: support translated related keys · aee8bcac
      Jérome Perrin authored
      Translated properties are indexed in content translation table,
      so nothing prevent us from using them in related keys. Since in
      many places we show to user translated titles in relations, it
      makes sense to also support searching and sorting in catalog.
      
      This extends related keys syntax only for the newest syntax, so
      related keys like `source__translated__title=X` would allow searching
      for document who have a source relation to a document with title X.
      
      Since any properties can be translated, if for example a property
      `foo` would exist and be translatable, it would be possible to search
      using `source__translated__foo=X`
      
      This is only available when content_translation business template
      is installed.
      aee8bcac
    • Nicolas Wavrant's avatar
      erp5_core: always use the code editor for editing Python Script · 741b05d2
      Nicolas Wavrant authored
      The default value of the field was calling Base_getEditorFieldPreferredTextEditor and returned the preferred text editor, because this script assumes the content type to be text/html by default
      741b05d2
    • Vincent Pelletier's avatar
      ERP5Type.patches.CookieCrumbler: Fix balancer cookie logic. · 0732d589
      Vincent Pelletier authored
      Ever since the introduction of X-Balancer-Current-Server in SlapOS
      haproxy configuration in:
        commit c7f104fbf1f5948928f5545286afbb94fc39102b
        Author: Cédric Le Ninivin <cedric.leninivin@tiolive.com>
        Date:   Tue May 26 13:27:33 2015 +0200
      
            erp5_cluster: leave ERP5 set the haproxy cookie
      
      the balancer will overwrite this cookie's value, so do not compare it
      to our name: balancer may be calling us a name completely unrelated to
      the value getCurrentNode returns.
      So simplify this function's logic to only do what the docstring says:
      decide when to set and when to unset the balancer cookie, and let the
      balancer decide the value.
      This resolves cases where Zope would set the cookie over and over on
      every request when getCurrentNode and balancer disagree on its value.
      0732d589
    • Vincent Pelletier's avatar
    • Jérome Perrin's avatar
      erp5.util: Release erp5.util (0.4.69) · 9d32ef3a
      Jérome Perrin authored
      9d32ef3a
    • Jérome Perrin's avatar
      Testnode environment variables and log URL · 0a2145dd
      Jérome Perrin authored
      - use environment variables to pass SLAPOS_TEST_LOG_DIRECTORY and SLAPOS_TEST_SHARED_PART_LIST, as discussed on nxdtest!2
      - Fix #20200514-218C705 - [testnode] frontend for log access
      
      See merge request !1304
      0a2145dd
  11. 28 Oct, 2020 10 commits
  12. 27 Oct, 2020 1 commit
    • Jérome Perrin's avatar
      testnode: advertise log URL with log_frontend_url · daf3d133
      Jérome Perrin authored
      testnode use to publish the URL of logs so that Nexedi ERP5 can
      display link to "view logs". This URL was an IPv6 URL on a certificate
      which does not validate.
      
      Now testnode software release request a shared frontend for these
      logs and generate a config file with log_frontend_url set.
      
      testnode now advertise the URL of log using the log frontend url
      from config.
      
      Also simplify frontend_url key to manage it using the same way.
      daf3d133