1. 10 Mar, 2014 5 commits
  2. 07 Mar, 2014 1 commit
  3. 06 Mar, 2014 1 commit
  4. 04 Mar, 2014 2 commits
  5. 03 Mar, 2014 2 commits
    • Mame Coumba Sall's avatar
      3f6f07d1
    • Tatuya Kamada's avatar
      reindex: Fix duplicate reindex in Supply and Delivery when more than >100 lines. · 671a83f6
      Tatuya Kamada authored
      [Before]:
      
      Where:
      
        in Supply or Delivery(Sale Order, Sale Packing List,..)
      
      When:
      
      ( document.edit(something=some_value)
      
        OR
      
        document.validate(), document.start() something when workflow transition  )
      
      AND
      
        document contains more than 100 sub objects, like 100 lines.
      
      Then:
        /some_module/document/1/recursiveImmediateReindexObject
        /some_module/document/1/reindexObject
        /some_module/document/1/1/recursiveImmediateReindexObject
        .
        .
        /some_module/document/1/100/recursiveImmediateReindexObject
      
      are triggered.
      
      The first big recursiveImmediateReindexObject recursively reindex all the sub
      objects. Thus the following reindex are duplicated.
      
      [After]:
      
      Reindex:
        /some_module/document/1/reindexObject
        /some_module/document/1/1/recursiveImmediateReindexObject
        .
        .
        /some_module/document/1/100/recursiveImmediateReindexObject
      
      The root recursiveImmediateReindexObject is removed.
      
      This has been the expected behavior from the beginning.
      Before was only a side effect by giving empty dict to "if activate_kw == None"
      expression.
      671a83f6
  6. 26 Feb, 2014 10 commits
  7. 25 Feb, 2014 6 commits
  8. 21 Feb, 2014 1 commit
  9. 20 Feb, 2014 1 commit
  10. 19 Feb, 2014 10 commits
  11. 18 Feb, 2014 1 commit
    • Vincent Pelletier's avatar
      erp5_jquery_plugin_validation: Replace jquery.validation.password . · 0836d567
      Vincent Pelletier authored
      - Do not enable on all password fields
      - Allow specifying strength metter for a given field
      - Allow customising password validation rules by changing properties
      (allows different rules in the same page)
      - Login similarity check can be done by adding login as a sequence
      or blacklisted word, as desired
      - No hard rules of what a strong password is, instead use a reward
      system for using varied characters & character classes, reduced
      when password contains widely known sequences or too common
      passwords.
      0836d567