1. 17 Mar, 2013 6 commits
  2. 16 Mar, 2013 3 commits
  3. 11 Mar, 2013 2 commits
  4. 04 Mar, 2013 2 commits
  5. 03 Mar, 2013 2 commits
  6. 26 Feb, 2013 4 commits
  7. 25 Feb, 2013 1 commit
  8. 21 Feb, 2013 5 commits
  9. 19 Feb, 2013 2 commits
  10. 18 Feb, 2013 2 commits
  11. 16 Feb, 2013 9 commits
  12. 15 Feb, 2013 1 commit
    • pombredanne's avatar
      Add support to ignore sections conditionally to a Python expression. · 937537a4
      pombredanne authored
      Section titles can now have this form:
       [sectionname:Python expression] # optional comment
      
      If the Python expression evals to False, the section will be ignored.
      
      Expressions have some defaults to support common conditions such as:
       [sectionname: not windows] # ignore this section on windows
      
      Section title lines in the traditional form are still supported of
      course:
       [sectionname] # optional comment 
      or
       [sectionname] ; optional comment 
      937537a4
  13. 14 Feb, 2013 1 commit
    • Reinout van Rees's avatar
      Using distribute's way of chmod +x. · 3f2a4d40
      Reinout van Rees authored
      os.umask is a bit weird in that it *does* return the current umask,
      but it has a required argument that it immediately sets as the new umask...
      Weird. Distribute solves that by assigning a dummy value and re-setting
      the umask to the original value.
      
      The matching test verifies that it actually works.
      
      Note that I use python 2.6+'s octal notation: 0o755.
      Buildout 2 doesn't support python 2.5 anymore, iirc, so that's fine.
      3f2a4d40