1. 14 Oct, 2016 7 commits
  2. 13 Oct, 2016 1 commit
  3. 12 Oct, 2016 1 commit
  4. 11 Oct, 2016 3 commits
  5. 10 Oct, 2016 3 commits
  6. 07 Oct, 2016 1 commit
  7. 05 Oct, 2016 2 commits
  8. 03 Oct, 2016 2 commits
  9. 01 Oct, 2016 3 commits
  10. 30 Sep, 2016 6 commits
  11. 29 Sep, 2016 9 commits
  12. 28 Sep, 2016 2 commits
    • Kirill Smelkov's avatar
      wendelin: v↑ wendelin.core (v0.8) · 0027ac40
      Kirill Smelkov authored
      /reviewed-by: TrustMe
      0027ac40
    • Alain Takoudjou's avatar
      slapos softwaretype: fix parse error on '+ =' when using buildout 2 · e473ed69
      Alain Takoudjou authored
      Add a class SlapConfigParser which overrite ConfigParser.write method to fix parse problem when
      configuration like:
      [section]
      foo += bar
      
      is included in buildout file. softwaretype recipe will generate
      buildout file with foo + = bar because ConfigParser doesn't reconize +=
      delimiter and read key as "foo +", value as "bar".
      Then ConfigParser.write method generate
      
      [section]
      foo + = bar
      ...
      
      This is invalid with buildout version 2
      
      /reviewed-on !100
      e473ed69