Guest User

Untitled

a guest
Mar 4th, 2018
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.11 KB | None | 0 0
  1. New patches:
  2.  
  3. [Documentation of main.rb & ezamar.rb
  4. comp.lang.zenix+ramaze@gmail.com**20070614051328
  5. Rough documentation of lib/proto/src/controller/main.rb and lib/ramaze/template/ezamar.rb
  6. ] {
  7. hunk ./lib/proto/src/controller/main.rb 18
  8. + # the string returned at the end of the function is used as the html body
  9. + # if there is no template for the action. if there is a template, the string
  10. + # is silently ignored
  11. hunk ./lib/ramaze/template/ezamar.rb 19
  12. + # Transforms an action into the XHTML code for parsing and returns
  13. + # the result
  14. }
  15.  
  16. Context:
  17.  
  18. [add additional information about the colors for the `rake undocumented` task
  19. Michael Fellinger <m.fellinger@gmail.com>**20070614025528]
  20. [add ramaze/inform/knotify over Inform::Knotify
  21. Michael Fellinger <m.fellinger@gmail.com>**20070613090851]
  22. [total rewrite of the undocumented task, better matching using StringScanner and nicer output using colors.
  23. Michael Fellinger <m.fellinger@gmail.com>**20070613115226]
  24. [docs for the templating-engines, Template, Session and Tidy
  25. Michael Fellinger <m.fellinger@gmail.com>**20070613105351]
  26. [Add a couple of docs for Action and Dispatcher
  27. Michael Fellinger <m.fellinger@gmail.com>**20070613103539]
  28. [experimental compiling of templates, don't use it yet unless you are in serious demand of large speed-increase for mostly static templates.
  29. Michael Fellinger <m.fellinger@gmail.com>**20070613044247]
  30. [Xosd should be able to display multiple lines at once.
  31. Michael Fellinger <m.fellinger@gmail.com>**20070613043247]
  32. [Optional dynamic font size for XOSD
  33. Clive Crous <clive@crous.co.za>**20070612174159]
  34. [change @template_root of controller when not given
  35. Jonathan Buch <jo@helloit.fi>**20070611162751]
  36. [simplify the template handling again, removing the (for now) unused Global.compile option
  37. Michael Fellinger <m.fellinger@gmail.com>**20070611110808]
  38. [add a Cache::startup for bulk initialization, clear the Cache.compiled and Cache.resolved on SourceReloadHooks#after_safe_load_succeed
  39. Michael Fellinger <m.fellinger@gmail.com>**20070611110005]
  40. [Improve performance by caching path lookups (need to add invalidation on SourceReload).
  41. Michael Fellinger <m.fellinger@gmail.com>**20070611103742]
  42. [add the example i use to find memory-leaks, might be useful for someone.
  43. Michael Fellinger <m.fellinger@gmail.com>**20070610233512]
  44. [Fix memory-leak, Action should _never_ _ever_ use traits.
  45. Michael Fellinger <m.fellinger@gmail.com>**20070610232713]
  46. [Fixing Controller.current
  47. Michael Fellinger <m.fellinger@gmail.com>**20070610225405]
  48. [round up last patch, adding some files i overlooked and removing deprecated ones.
  49. Michael Fellinger <m.fellinger@gmail.com>**20070610155119]
  50. [Huge refactoring, making Action the central part for rendering. Please take a look at the changes until I can write some comprehensive summary (or wait with applying).
  51. Michael Fellinger <m.fellinger@gmail.com>**20070610154623]
  52. [Fix OpenID helper IdentityHelper
  53. Michael Fellinger <m.fellinger@gmail.com>**20070608091939]
  54. [Pager doesn't need Og anymore, small comment about exit! in adapter
  55. Jonathan Buch <jo@helloit.fi>**20070608081943]
  56. [rather big change to Ezamar, fitting it to be able to compile before evaluation.
  57. Michael Fellinger <m.fellinger@gmail.com>**20070607114704]
  58. [add usage of Global.compile for erubis
  59. Michael Fellinger <m.fellinger@gmail.com>**20070607111650]
  60. [use tested doc in Controller::render
  61. Michael Fellinger <m.fellinger@gmail.com>**20070607111402]
  62. [get rid of a warning about undefined @files/@paths in sourereload
  63. Michael Fellinger <m.fellinger@gmail.com>**20070607044428]
  64. [Introducing experimental cached compilation (for HAML so far, and not ready for production, just a prototype) turn on Global.compile at your own risk ;)
  65. Michael Fellinger <m.fellinger@gmail.com>**20070607044136]
  66. [As expected, adding tests shows bugs :)
  67. rff.rff@gmail.com**20070605210326
  68.  
  69. ]
  70. [CGI.rb has extremely bad names.
  71. rff.rff@gmail.com**20070605203514
  72. escape() does url_encode
  73. unescape does url_decode
  74. so renamed them to this.
  75. Also added html_escape and html_unescape
  76. and one-letter aliases h and u.
  77. This behaviour comes for free by including ERb::Util but I don't know
  78. if we want to load all that (I'd say yes).
  79. All tests still pass, so the test suite is incomplete.
  80. ]
  81. [ramaze with no opts should return -1
  82. rff.rff@gmail.com**20070605193343]
  83. [ENV SWIFT and EVENT now trigger require of swiftiplied or evented mongrel
  84. Michael Fellinger <m.fellinger@gmail.com>**20070606032545]
  85. [caching for our custom Request#params
  86. Michael Fellinger <m.fellinger@gmail.com>**20070605150620]
  87. [fixing all those annoying spaces on empty lines and adapt the add-copyright task not to add one automatically but just notice.
  88. Michael Fellinger <m.fellinger@gmail.com>**20070605110856]
  89. [mapping explanation in proto
  90. rff.rff@gmail.com**20070605105858]
  91. [first TestDoc task
  92. Michael Fellinger <m.fellinger@gmail.com>**20070605105608]
  93. [fix typo in LinkHelper doc
  94. Michael Fellinger <m.fellinger@gmail.com>**20070605105322]
  95. [remove Base and Index as default mappings to '/'
  96. Michael Fellinger <m.fellinger@gmail.com>**20070605105003]
  97. [proto enhancement
  98. rff.rff@gmail.com**20070605094901
  99. * integrated action-method, template and Page element
  100. * added a template-less action
  101. * changed index so that it gives slightly nicer informations
  102. ]
  103. [update the authors task and doc/AUTHORS
  104. Michael Fellinger <m.fellinger@gmail.com>**20070605034048]
  105. [little clarification of code in Controller::render
  106. Michael Fellinger <m.fellinger@gmail.com>**20070605033155]
  107. [extend PartialHelper with render_template
  108. Michael Fellinger <m.fellinger@gmail.com>**20070605033013]
  109. [Add :collect trait to Localize, disable collecting for more speed
  110. Jonathan Buch <jo@helloit.fi>**20070604141845]
  111. [pager need og/collection to run
  112. rff.rff@gmail.com**20070603170842]
  113. [use HAsh#fetch when getting trait or default in render.rb
  114. rff.rff@gmail.com**20070603165119]
  115. [Controller::cached? #=> Controller::should_cache?
  116. Michael Fellinger <m.fellinger@gmail.com>**20070603101809]
  117. [remove the mostly static trait :transform_pipeline in Ezamar with a constant, watch out since that may affect your code if you added custom transformers.
  118. Michael Fellinger <m.fellinger@gmail.com>**20070603072136]
  119. [add automatic require for win32console on windows (if installed) and sanitize @colorize/trait[:colorize] a bit
  120. Michael Fellinger <m.fellinger@gmail.com>**20070528151056]
  121. [add docs for Controller::render
  122. Michael Fellinger <m.fellinger@gmail.com>**20070602184401]
  123. [Controller::render gets a default empty array for params and params are each called .to_s upon to make escaping possible and unify the effects of calling internal against being called external.
  124. Michael Fellinger <m.fellinger@gmail.com>**20070602183802]
  125. [Add render partial implementation + specs
  126. Jonathan Buch <jo@helloit.fi>**20070602085828]
  127. [constantize a couple of traits in Dispatcher, Dispatcher.trait[:handle_error] is now Dispatcher::Error::HANDLE_ERROR, Dispatcher::Action.trait[:filter] is now Dispatcher::Action::FILTER, sanitize error spec and add some docs.
  128. Michael Fellinger <m.fellinger@gmail.com>**20070601054206]
  129. [Common error classes, tiny change to Global, StackHelper expects url instead of using R() itself
  130. Jonathan Buch <jo@helloit.fi>**20070601073118]
  131. [some santizing and docs for Session.
  132. Michael Fellinger <m.fellinger@gmail.com>**20070531115106]
  133. [speed up path resolution a little bit by directly instantinating Action
  134. Michael Fellinger <m.fellinger@gmail.com>**20070531112914]
  135. [fixing link building of the whywiki example
  136. Martin Hilbig blueonyx@dev-area.net**20070531091245]
  137. [document Informing and add some minor speed increase (increase will be smaller than most loggers would take to actual output)
  138. Michael Fellinger <m.fellinger@gmail.com>**20070531034608]
  139. [DRY up template.rb and add some docs
  140. Michael Fellinger <m.fellinger@gmail.com>**20070531032129]
  141. [docs for Action
  142. Michael Fellinger <m.fellinger@gmail.com>**20070530121906]
  143. [a couple of docs for Controller
  144. Michael Fellinger <m.fellinger@gmail.com>**20070530121441]
  145. [make the life for people who want to run specs without RUBYOPT easier
  146. Michael Fellinger <m.fellinger@gmail.com>**20070530083719]
  147. [small update to the FAQ
  148. Michael Fellinger <m.fellinger@gmail.com>**20070530050031]
  149. [add a Inform.ignored_tags so you can skip tags like :debug easily
  150. Michael Fellinger <m.fellinger@gmail.com>**20070530045400]
  151. [split up SourceReloadHooks::after_safe_load into after_safe_load_failed and after_safe_load_succeed, you get additionally the error-object on failure (also fix the s/save/safe typo)
  152. Michael Fellinger <m.fellinger@gmail.com>**20070530045149]
  153. [put the hooks into their own module SourceReloadHooks
  154. Michael Fellinger <m.fellinger@gmail.com>**20070530044241]
  155. [another wrapper, this time around save_load, with file and status for after
  156. Michael Fellinger <m.fellinger@gmail.com>**20070529125103]
  157. [SourceReload#before_reload/after_reload method stubs, to be filled by YOU :)
  158. Michael Fellinger <m.fellinger@gmail.com>**20070529124135]
  159. [Controller.trait[:template_extensions] is now Controller:TEMPLATE_ENGINES and retains order of your engines as you require them, you can also change it afterwards easily (wasn't possible with the Hash we used before)
  160. Michael Fellinger <m.fellinger@gmail.com>**20070529084946]
  161. [flatten atoms for R()
  162. Michael Fellinger <m.fellinger@gmail.com>**20070529071331]
  163. [fix LinkHelper to use Controller.current instead of self
  164. Michael Fellinger <m.fellinger@gmail.com>**20070529071051]
  165. [fixing memcached for multithreading
  166. Michael Fellinger <m.fellinger@gmail.com>**20070528141851]
  167. [Global.public_root went Global.public_proto and Controller.public_root went Global.public_root
  168. Michael Fellinger <m.fellinger@gmail.com>**20070528130202]
  169. [typo in LinkHelper docs
  170. Michael Fellinger <m.fellinger@gmail.com>**20070528130105]
  171. [Add PagerHelper (port from Nitro)
  172. Jonathan Buch <jo@helloit.fi>**20070528113953]
  173. [add a release task
  174. Michael Fellinger <m.fellinger@gmail.com>**20070528021404]
  175. [TAG 0.1.1
  176. Michael Fellinger <m.fellinger@gmail.com>**20070526204752]
  177. Patch bundle hash:
  178. 96dedd3569d3e6ea21b28955b4bb10cc59af8e11
Add Comment
Please, Sign In to add comment