Guest User

Untitled

a guest
Feb 20th, 2018
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.62 KB | None | 0 0
  1.  
  2. New patches:
  3.  
  4. [- Populate cache when reading from the database using aspects
  5. vseguip@gmail.com**20060913085638] {
  6. hunk ./og/lib/glue/cacheable.rb 2
  7. -
  8. +require 'facets/more/aspects'
  9. hunk ./og/lib/glue/cacheable.rb 149
  10. + def cache_load_populate
  11. + Cacheable.cache_set(self)
  12. + end
  13. +
  14. + include ::Aspects
  15. + after :cache_load_populate, :on=>:og_read
  16. }
  17.  
  18. Context:
  19.  
  20. [Fix scope bug in collection.rb, use count for finding number of joins_many relations
  21. Jonathan Buch <jonathan.buch@gmail.com>**20060912124344]
  22. [notice about new script/test :)
  23. manveru@weez-int.com**20060912105803]
  24. [finally the whole nitro-testsuite is passing (made tc_controller/tc_render work)
  25. manveru@weez-int.com**20060912104205]
  26. [Huge refactoring of script/test.rb, to use the new capability just 'gem install popen4'
  27. manveru@weez-int.com**20060912070838]
  28. [Fix testcase for nitro/tc_cgi.rb
  29. manveru@weez-int.com**20060912070743]
  30. [Fix for deleting has_many belongs/refers_to relations
  31. Jonathan Buch <jonathan.buch@gmail.com>**20060911144233]
  32. [fix for deleting belongs_to relationships
  33. Jonathan Buch <jonathan.buch@gmail.com>**20060911122205]
  34. [add testcase for deleting relations
  35. Jonathan Buch <jonathan.buch@gmail.com>**20060911112315]
  36. [basic support for request.local? to check if a reequest comes from a local network (192.168.0.1/127.0.0.1) [ no ipv6 yet ]
  37. manveru@weez-int.com**20060911064105]
  38. [adding option[:exclude] to all_attributes in form helper
  39. Fabian Buch <fabian@fabian-buch.de>**20060908182429
  40. now you can exclude single attribute
  41. for example:
  42. f.attributes(:exclude => :password) or
  43. f.attributes(:exclude => [:password, :name])
  44. ]
  45. [retry when sqlite database locked
  46. Alex Pooley <alex@msgpad.com>**20060908140800]
  47. [microsecond precision
  48. Alex Pooley <alex@msgpad.com>**20060908134438
  49. mysql doesn't support microseconds properly, but this patch shouldn't
  50. break mysql.
  51. ]
  52. [added tc_primary_key (which fails right now, like every good tc should ;)
  53. manveru@weez-int.com**20060908022410]
  54. [fixed call/answer (render.rb) to work correctly
  55. Fabian Buch <fabian@fabian-buch.de>**20060907152015]
  56. [making url-params work again
  57. manveru@weez-int.com**20060907100132]
  58. [More small og test fixes
  59. Jonathan Buch <jonathan.buch@gmail.com>**20060906214008]
  60. [Fix more og testcases
  61. Jonathan Buch <jonathan.buch@gmail.com>**20060906211602]
  62. [.save returns affected rows again, fix subclass creation in relation.rb
  63. Jonathan Buch <jonathan.buch@gmail.com>**20060906210953]
  64. [fix little bug with parse_timestamp (utils.rb)
  65. manveru@weez-int.com**20060906093558]
  66. [removing "nil"-Strings from controls,
  67. Fabian Buch <fabian@fabian-buch.de>**20060905123009
  68. since you don't want "nil" for NULL in your database
  69. ]
  70. [Fix postgres error with renamed primary keys and sequences, fix text primary keys not being quoted
  71. Jonathan Buch <jonathan.buch@gmail.com>**20060905095857
  72.  
  73. This also fixes that the :classes option in Og.setup wasn't recognized yet
  74. ]
  75. [Enable object annotating for custom styles in form attributes.
  76. Jonathan Buch <jonathan.buch@gmail.com>**20060903154923
  77.  
  78. Can be used like following:
  79.  
  80. <?r
  81. flash[:VERROR].errors.each do |sym,msg|
  82. @obj.annotation sym => {:control_style => 'border:1px solid red;'}
  83. end if flash[:VERROR]
  84. ?>
  85.  
  86. This traverses over validation errors and sets a red border around those
  87. attributes with errors.
  88.  
  89. ]
  90. [Clean up inline-c in tc_cgi and add testcase
  91. Jonathan Buch <jonathan.buch@gmail.com>**20060903150859]
  92. [Replace pk.inspects by quote(pk)
  93. Jonathan Buch <jonathan.buch@gmail.com>**20060903112405
  94.  
  95. Fixes problems with text/integer keys.
  96. ]
  97. [One line fix for 'Various Changes' patch
  98. Jonathan Buch <jonathan.buch@gmail.com>**20060903111201]
  99. [Various changes
  100. Jonathan Buch <jonathan.buch@gmail.com>**20060902224949
  101.  
  102. * Revise resolve_polymorphic_relations, remove FIXME, change the
  103. eval to const_set.
  104. * Change symbol_to_class to return nil when no matching class was
  105. found.
  106. * Fix aggregation code, only use order_by when group_by is given.
  107. ]
  108. [minor fix for manage_classes
  109. Jonathan Buch <jonathan.buch@gmail.com>**20060902164458]
  110. [remove ObjectSpace search in manage_classes when classes are specified
  111. Jonathan Buch <jonathan.buch@gmail.com>**20060902163817]
  112. [essential fix for template
  113. manveru@weez-int.com**20060902162102]
  114. [Use RubyInline to make random char function _much_ faster
  115. Jonathan Buch <jonathan.buch@gmail.com>**20060902134450]
  116. [Glue::Template -> Nitro::Template (making some stuff simpler :) [and it works!]
  117. manveru@weez-int.com**20060902112701]
  118. [TAG 01.09.2006
  119. manveru@weez-int.com**20060901113231]
  120. Patch bundle hash:
  121. d9a9c4836d3c6d7307e945d595872ad79fffb4c7
Add Comment
Please, Sign In to add comment