1. 22 3月, 2013 2 次提交
    • G
      python: treat flags as default argument with value 0 · a515aaa9
      Guannan Ren 提交于
      The following four functions have not changed because default arguments
      have to come after positional arguments. Changing them will break the
      the binding APIs.
      
      migrate(self, dconn, flags, dname, uri, bandwidth):
      migrate2(self, dconn, dxml, flags, dname, uri, bandwidth):
      migrateToURI(self, duri, flags, dname, bandwidth):
      migrateToURI2(self, dconnuri, miguri, dxml, flags, dname, bandwidth):
      a515aaa9
    • M
      Correct invalid RNG schemas · 28933c55
      Martin Kletzander 提交于
      The 'trang' utility, which is able to transform '.rng' files into
      '.rnc' files, reported some errors in our schemas that weren't caught
      by the tools we use in the build.  I haven't added a test for this,
      but the validity can be checked by the following command:
      
      trang -I rng -O rnc domain.rng domain.rnc
      
      There were unescaped minuses in regular expressions and we were
      constraining int (which is by default in the range of [-2^31;2^31-1]
      to maximum of 2^32.  But what we wanted was exactly an unsignedInt.
      28933c55
  2. 21 3月, 2013 19 次提交
  3. 20 3月, 2013 16 次提交
  4. 19 3月, 2013 3 次提交