Skip to content

Tags: devyn/mephisto

Tags

v0.8.1

Toggle v0.8.1's commit message
Update to emk-safe_erb 0.1.2

This fixes script/generate and the standard Rails error page.

rails-2.0.5

Toggle rails-2.0.5's commit message
replace use of '<<' operator with '+=' operator in find_child_section…

…s and find_decendant_sections in SiteDrop

We found that mutiple calls to the 'child_sections' drop filter was modifying the value of the path
attribute inside of SectionDrops.  The SiteDrop methods find_child_sections and find_decentdent_sections
used the '<<' operator to append a '/' charecter to the path.  This had the side effect of modifying
the original string in memory.  The "+=" while slower, uses a copy of the string passed as parameter.

The gave us the behavior we would expect.