Skip to content
  1. May 23, 2013
  2. Apr 11, 2013
  3. Nov 27, 2012
  4. Jun 04, 2012
  5. May 24, 2012
  6. May 23, 2012
  7. May 16, 2012
  8. May 15, 2012
  9. May 11, 2012
    • Sébastien Luttringer's avatar
      string interpolation must be done in unicode · ada63e45
      Sébastien Luttringer authored
      If we have to format (aka interpolatation) we need to be sure this have to be
      done in unicode and not in ascii. This avoid unicode error with ascii string
      encoded in utf-8.
      
      Example of failure between a string and an object
      
      b = Exception(u"é")
      Exception("error: %s" % b)
       => Exception("error: %s" % str(b)
       => UnicodeEncodeError: 'ascii' codec can't encode character u'\xe9' in position 0: ordinal not in range(128)
      ada63e45
  10. Mar 26, 2012
  11. Mar 02, 2012
  12. Mar 01, 2012
  13. Feb 27, 2012
  14. Feb 20, 2012
  15. Feb 10, 2012
    • Sebastien Luttringer's avatar
      ce761277
    • Sebastien Luttringer's avatar
    • Sebastien Luttringer's avatar
      better check before move image · 1d2c507b
      Sebastien Luttringer authored
      move command now ask for a global move and check if source repository are local
      1d2c507b
    • Sebastien Luttringer's avatar
      image selection rewrite · d95ed36b
      Sebastien Luttringer authored
      All command now use select_image in repoman to select which image should be
      select for use
      
      search is now added to repoman and not by command
      
      best option was dropped for all command
      
      changelog command take now more than one image
      diff command is no more limited to 2 args. Can be one with globbing
      list -a is dropped, use *:* instead (this can be used in all command)
      
      is command allow smart image selection like this:
      
      - ftp/* => list all image in repo ftp
      - ftp/*:4 => list all image in version 4 in repo ftp
      - *:4 => list all images at version 4 in search path
      - */*:4 => list all images at version in all repo
      - debian => list all images nammed debian in search path
      - debian* => list all images starting by debian in search path
      d95ed36b