An error occurred fetching the project authors.
  1. 24 Mar, 2011 1 commit
  2. 16 Mar, 2011 1 commit
  3. 28 Dec, 2010 1 commit
  4. 21 Oct, 2010 1 commit
  5. 21 Jul, 2010 3 commits
  6. 15 Jul, 2010 1 commit
    • Sebastien Robin's avatar
      sync with trunk@37114 · c1ae57b0
      Sebastien Robin authored
      Conflicts:
      	bt5/erp5_base/bt/revision
      	bt5/erp5_simulation/DocumentTemplateItem/InvoiceSimulationRule.py
      	bt5/erp5_simulation/bt/revision
      	bt5/erp5_trade/SkinTemplateItem/portal_skins/erp5_trade/Base_viewTradeFieldLibrary.xml
      	bt5/erp5_trade/bt/change_log
      	bt5/erp5_trade/bt/revision
      	products/ERP5/Document/BusinessPath.py
      	products/ERP5/Document/SimulationMovement.py
      	products/ERP5/Document/TradeCondition.py
      	products/ERP5/Document/TradeModelLine.py
      	products/ERP5/bootstrap/erp5_mysql_innodb_catalog/bt/revision
      	products/ERP5Type/ERP5Type.py
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/amount_generator@37129 20353a03-c40f-0410-a6d1-a30d3c3de9de
      c1ae57b0
  7. 14 Jul, 2010 2 commits
  8. 02 Jun, 2010 1 commit
    • Julien Muchembled's avatar
      DMS: stop relying on ZPublisher to get parameters from the request · 04c300c5
      Julien Muchembled authored
      Previous code led to much code duplication. For DMS, each method redefining
      'index_html' had to merge all possible parameters (with their default values)
      of overridden methods. This was even worse for DocumentProxyMixin.index_html,
      because the type of the proxied document is not even known.
      
      This commit adds a new 'fill_args_from_request' decorator and fixes
      'index_html' for proxied images (default value for 'frame' was only changed
      in Image class).
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35905 20353a03-c40f-0410-a6d1-a30d3c3de9de
      04c300c5
  9. 28 May, 2010 2 commits
  10. 25 May, 2010 1 commit
  11. 12 May, 2010 9 commits
  12. 26 Mar, 2010 1 commit
  13. 25 Mar, 2010 1 commit
  14. 10 Mar, 2010 1 commit
  15. 19 Feb, 2010 2 commits
  16. 09 Feb, 2010 1 commit
  17. 28 Jan, 2010 2 commits
  18. 30 Dec, 2009 3 commits
    • Fabien Morin's avatar
      code simplification · 6476e080
      Fabien Morin authored
      the return made in try and in except was the same. Take it of from both and put
      it after.
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31540 20353a03-c40f-0410-a6d1-a30d3c3de9de
      6476e080
    • Fabien Morin's avatar
      store cache data in the same way for all Image.py methods · a00d3bd9
      Fabien Morin authored
      Image were not stored in the same way in every methods :
      in case of index_html, the image was stored, in case of convert, the image.data
      was stored.
      This lead to conflicts because in both cases, the cache_id was the same, so if
      inded_html was first call, and after that, convert was call on the same image,
      convert will return an Image object instead of image.data String.
      
      Now in all cases, the image is stored by setConversion, and in case of convert,
      only image.data is returned.
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31532 20353a03-c40f-0410-a6d1-a30d3c3de9de
      a00d3bd9
    • Fabien Morin's avatar
      width, height order was not consistent everywhere · f2c35313
      Fabien Morin authored
      getSizeFromImageDisplay method was returning (heigh, width), but all other
       methods were returning (widht height). In addition to this, there was
       mistakes :
      from Document/Image.py +295 :
                              'width': self.getSizeFromImageDisplay(id)[0],
                              'height': self.getSizeFromImageDisplay(id)[1],
      and also l 450:
            (width, height) = self.getSizeFromImageDisplay(display)
      
      the use of width and height was mixed up.
      Currently, all default preferences display size define squares (width = heigh),
       so this mistake was never detected.
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31531 20353a03-c40f-0410-a6d1-a30d3c3de9de
      f2c35313
  19. 16 Dec, 2009 1 commit
  20. 17 Nov, 2009 1 commit
    • Sebastien Robin's avatar
      - the possibility to pass --enable_full_indexing=portal_skins in · 2dd6ad08
      Sebastien Robin authored
       order to make optimisation configuration in unit test
      - isIndexable is not a property any more, it is a ConstantGetter
       instance, so it works like a property and like a method
      - same thing for isPredicate, isTemplate, isDelivery... we can
       start moving using only methods.
      - do not define isTemplate, isDelivery... when it is already
        available thanks to inheritance
      - new methods generated for all ERP5 objects : provides[InterfaceName].
       For instance, "providesIMovement()" will return True or False for
       any ERP5 object.
      - new method "is[Group]Type" generated for all ERP5 objects. The group
       here is group of portal types (like getPortalDeliveryTypeList()). So
       on any ERP5 object, you can do "isDeliveryType()", and this will
       returns True or False.
      - add tests
      
      git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30704 20353a03-c40f-0410-a6d1-a30d3c3de9de
      2dd6ad08
  21. 09 Oct, 2009 1 commit
  22. 08 Oct, 2009 1 commit
  23. 07 Oct, 2009 2 commits