1. a11df0e Mark next version as 2.7.2. by Gary D. Gregory · 10 years ago
  2. 18c6eda Adjustment to patch for secure processing for CVE-2014-0107 by Ryan Berg based on feedack from Emmanuel Bourg. by Gary D. Gregory · 10 years ago
  3. 0613274 Commit patch to handle secure processing. Thank you Ryan Berg. by Gary D. Gregory · 10 years ago
  4. 12fc251 Export lib/xml-apis.jar from Eclipse project. by Gary D. Gregory · 10 years ago
  5. 88f2606 Fix XML error in .classpath. by Gary D. Gregory · 10 years ago
  6. 1862f27 Better Eclipse project name for this branch as opposed to trunk. by Gary D. Gregory · 10 years ago
  7. 9c091b0 Match compiler output to Ant build. by Gary D. Gregory · 10 years ago
  8. 7054c51 Add files generated by the build to svn:ignore. by Gary D. Gregory · 10 years ago
  9. d97e2df Snapshop xalan-j for maintenance and xdoc archive by Steven J. Hathaway · 12 years ago
  10. 01a968f Fix XALANJ-2546 xsl:sort lang attribute ignores parameter value, only hard-coding works. by Gary D. Gregory · 12 years ago
  11. 8196e85 Remove in-line comment because it no longer is true: "// exits with code '-1'" by Gary D. Gregory · 12 years ago
  12. 29bf9de Fix formatting for method printUsage(). by Gary D. Gregory · 12 years ago
  13. c56a14c Updating year. by Michael Glavassevich · 12 years ago
  14. 2a126a8 Updating copyright years. by Michael Glavassevich · 12 years ago
  15. df4abce Updating copyright years. by Michael Glavassevich · 12 years ago
  16. 484a1e1 Clean-up imports. by Michael Glavassevich · 12 years ago
  17. 720bd51 Minor performance improvement. Use the char version of StringBuffer.append() and String.indexOf(). by Michael Glavassevich · 12 years ago
  18. 5189cbd Clean-up imports. by Michael Glavassevich · 12 years ago
  19. 9748a5d Clean-up imports. by Michael Glavassevich · 12 years ago
  20. 0b7ed79 Update to the latest ASF license header. See http://www.apache.org/legal/src-headers.html. by Michael Glavassevich · 12 years ago
  21. d1ae2c2 Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  22. 771b015 Minor performance improvement. Use String.lastIndexOf(int)/indexOf(int) instead of String.lastIndexOf(String)/indexOf(String). by Michael Glavassevich · 12 years ago
  23. 3988247 Clean-up imports. by Michael Glavassevich · 12 years ago
  24. 0750fba Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  25. 3de5b06 Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  26. bdd13e5 Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  27. 229fe86 Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  28. 0901b3d Minor performance improvement. Use String.lastIndexOf(int) instead of String.lastIndexOf(String). by Michael Glavassevich · 12 years ago
  29. 3d3c0ea Make ObjectFactory classes final. by Michael Glavassevich · 12 years ago
  30. a558879 Eliminate call to inefficient String(String) constructor. by Michael Glavassevich · 12 years ago
  31. 85b34ac Fixing an averaging computation that could overflow for large values. by Michael Glavassevich · 12 years ago
  32. 65ffb37 Making several inner classes static. by Michael Glavassevich · 12 years ago
  33. 4a552d2 Making an inner class static. by Michael Glavassevich · 12 years ago
  34. 6c85ab1 Eliminate creation of temporary strings in loops. by Michael Glavassevich · 12 years ago
  35. 2a2f7b1 Eliminate creation of temporary strings in a loop. by Michael Glavassevich · 12 years ago
  36. 53ed635 Making an inner class static. by Michael Glavassevich · 12 years ago
  37. 31f7934 Making several inner classes static. by Michael Glavassevich · 12 years ago
  38. d6ef705 Fixing a findbugs warning. clone() is defined on this class but it didn't implement Cloneable. by Michael Glavassevich · 12 years ago
  39. 1342823 Eliminate call to inefficient String(String) constructor. by Michael Glavassevich · 12 years ago
  40. 2052f39 Fix test for Double.NaN. by Michael Glavassevich · 12 years ago
  41. c2bc727 Fixing an averaging computation that could overflow for large values. by Michael Glavassevich · 12 years ago
  42. a0f745b Making several inner classes and fields static. by Michael Glavassevich · 12 years ago
  43. e43f318 Adding and fixing SVN properties. by Michael Glavassevich · 12 years ago
  44. b0d635b Adjust spacing. by Michael Glavassevich · 12 years ago
  45. 31fa8fd Adding my PGP key to the KEYS file. by Michael Glavassevich · 12 years ago
  46. f1488d6 Adding an Eclipse code formatting style (e.g. tabs should always be four spaces) and also a template for new Java source files that automatically inserts the Apache license header. by Michael Glavassevich · 12 years ago
  47. 312f76f Adding .project and .classpath files for Eclipse. by Michael Glavassevich · 12 years ago
  48. 75ee281 Cleaning up SecuritySupport. We no longer need both SecuritySupport and SecuritySupport12 because Xalan now only compiles and runs on J2SE 1.3 or higher. This allows us to tighten up this class even more. by Michael Glavassevich · 12 years ago
  49. 540c90a Clean-up imports. by Michael Glavassevich · 12 years ago
  50. f209037 Minor performance improvement. Iterate over the entries in the map instead of the keys. This avoids a redundant table lookup for each value. by Michael Glavassevich · 12 years ago
  51. 4b6324a Clean-up imports. by Michael Glavassevich · 12 years ago
  52. 923ab9d Minor performance improvement. Iterate over the entries in the map instead of the keys. This avoids a redundant table lookup for each value. by Michael Glavassevich · 12 years ago
  53. 4a6b1e4 Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  54. 35e7074 Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  55. 88ad5e0 Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  56. 59dca75 Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  57. 1098929 Clean-up imports. by Michael Glavassevich · 12 years ago
  58. 6ada932 Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  59. 40c3c5a Minor performance improvement. String.length() == 0 tends to be slightly faster than String.equals(""). by Michael Glavassevich · 12 years ago
  60. 0fd5c48 Eliminate creation of temporary Boolean objects. by Michael Glavassevich · 12 years ago
  61. 2199104 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  62. 3a0607b Clean-up unused imports. by Michael Glavassevich · 12 years ago
  63. d7e3395 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  64. 24846bf Clean-up unused imports. by Michael Glavassevich · 12 years ago
  65. 451998d Clean-up unused imports. by Michael Glavassevich · 12 years ago
  66. 4059db8 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  67. 778ca28 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  68. 2346e8f Clean-up unused imports. by Michael Glavassevich · 12 years ago
  69. 03fb48b Clean-up unused imports. by Michael Glavassevich · 12 years ago
  70. f42a8e6 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  71. 026a940 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  72. b180a81 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  73. 6299d94 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  74. 5eb2ac9 Clean-up unused imports. by Michael Glavassevich · 12 years ago
  75. 3438954 Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  76. 2892c46 Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  77. b00623d Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  78. 881a0a5 Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  79. 7cd1b57 Clean-up imports. by Michael Glavassevich · 12 years ago
  80. 48795dd Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  81. 5a8313c Clean-up imports. by Michael Glavassevich · 12 years ago
  82. 47dc775 Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  83. 919ef0f Clean-up unused imports. by Michael Glavassevich · 12 years ago
  84. 34efa73 Reducing object allocation. Use Boolean constants instead. by Michael Glavassevich · 12 years ago
  85. cba69c0 Removing an unnecessary folder. by Michael Glavassevich · 12 years ago
  86. d19a329 Update to the latest ASF license header. See http://www.apache.org/legal/src-headers.html. by Michael Glavassevich · 12 years ago
  87. 388b3bc Update to the latest ASF license header. See http://www.apache.org/legal/src-headers.html. by Michael Glavassevich · 12 years ago
  88. b3044f2 Update to the latest ASF license header. See http://www.apache.org/legal/src-headers.html. by Michael Glavassevich · 12 years ago
  89. dbfd1f5 Apply the latest ASF license header to build.xml. See http://www.apache.org/legal/src-headers.html. by Michael Glavassevich · 12 years ago
  90. 1836c66 Committing patch for Jira bug XALANJ-2473 submitted by Martin von Gagern. by Henry Zongaro · 14 years ago
  91. c13aa42 Applying patch for bug XALANJ-2495 from Martin von Gagern which corrects a by Henry Zongaro · 14 years ago
  92. d4d14d0 Applying patch contributed by Martin von Gagern for XALANJ-2493 and XALANJ-2424. by Henry Zongaro · 14 years ago
  93. f3bd7cc Part of fix for Jira issue XALANJ-2446: by Henry Zongaro · 16 years ago
  94. d81dde4 Part of fix for Jira issue XALANJ-2447. by Henry Zongaro · 16 years ago
  95. d6f469c Part of fix for Jira issue XALANJ-2446: by Henry Zongaro · 16 years ago
  96. 287f72f Fix for Jira issue XALANJ-2402. by Henry Zongaro · 17 years ago
  97. 2d1088d Updating the maintanence version to 1 ( so the product version is now 2.7.1 ) by Brian James Minchau · 17 years ago
  98. 1a4ca29 Updating the bug list for the website. by Brian James Minchau · 17 years ago
  99. c8a7685 Committing fix for XALANJ-2206 by Brian James Minchau · 17 years ago
  100. 645636c Patch for XALANJ-2395. Reviewed by Brian Minchau. by Kevin Cormier · 17 years ago