| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-06-25 | Rails 4.2 model and controller fixes | erdgeist | |
| - Wrap all scopes in lambdas (required in Rails 4) - Move scopes after associations in page.rb (evaluated at load time in Rails 4) - Convert association :order options to lambda syntax - Remove attr_accessible from page.rb and user.rb - Add Strong Parameters: user_params in UsersController, node_params/page_params in NodesController - Fix clone_attributes_from: exclude id/page_id/timestamps when cloning translations - Fix redirect_to :back → request.referer fallback in nodes_controller - Fix node_path/publish and unlock actions: pass @node argument | |||
| 2026-06-24 | Fix tagged content aggregator, assets path, and add regression tests | erdgeist | |
| - Replace tagged_with calls in Page.aggregate, TagsController, RssController with direct SQL joins (acts-as-taggable-on 3.5 broken on Rails 3.2) - Fix Paperclip :path/:url to use plain :id format matching existing uploads - Add proper regression tests for aggregator, tags, and rss controllers - Fix assert_select assertions to target div.body div.article_partial | |||
| 2026-06-24 | Stage 1 complete: Rails 2.3.5 to Rails 3.2.22.5 upgrade | erdgeist | |
| - Converted plugins to gems (Gemfile) - Updated config structure (application.rb, boot.rb, environment.rb) - Converted routes to Rails 3 DSL - Converted named_scope to scope throughout models - Converted find(:all, :conditions) to where() chains - Fixed has_many :order to use ordering scope - Updated session store and secret token configuration - Fixed exception_notification middleware configuration - Patched Ruby 2.4 / Rails 3.2 incompatibilities: - Integer/Float duration arithmetic (ActiveSupport) - Arel visit_Integer for PostgreSQL adapter - create_database String/Integer coercion - ActionController consider_all_requests_local - Migrated taggings schema for acts-as-taggable-on - Replaced dynamic_form gem with custom form_error_messages helper - Fixed Rails 3 block helper syntax (form_for, form_tag, fields_for) - Fixed admin layout yield - Updated test suite for Rails 3 APIs | |||
| 2026-06-23 | Update deployed state to what's currently running | erdgeist | |
| 2025-01-28 | Big overhaul patch and style changes | Charlie Root | |
| 2012-02-18 | Bugfix: Finally after all those years, asset urls are not rewritten anymore with a locale prefix! Hoorray! | hukl | |
| 2010-03-03 | do not rewrite paths for assets | hukl | |
| 2010-01-14 | Updated globalize2 to latest version. Modified existing code accoringly | hukl | |
| 2009-12-01 | refactored the Page.aggregate to instanciate a lot less AR objects. Its actually instanciating only the ones being displayed. Still over 150 but still a ↵ | hukl | |
| massive improvement compared to over 1500 before. | |||
| 2009-11-17 | don't set the published_at upon creation of the first draft but rather on publish | hukl | |
| 2009-11-15 | removed date and author from the standard template and introduced a dedicated update template which will get auto assigned if a node is created under ↵ | hukl | |
| updates/<year>/<slug> Added tests and convenient method | |||
| 2009-11-11 | implemented that pages now have an author and an editor | hukl | |
| 2009-11-03 | default now 25 | hukl | |
| 2009-11-02 | make sure user and published_at stay the same | hukl | |
| 2009-10-27 | fix for emtpy assets array | hukl | |
| 2009-10-20 | allow to overwrite the original user in edit view | hukl | |
| 2009-09-17 | switched tagging plugin again for postgresql compatibility | hukl | |
| 2009-09-05 | prepend public_link with slash | hukl | |
| 2009-09-04 | moved the image sorting into the model and wrapped it into a transaction | hukl | |
| 2009-09-01 | cloning a page clones the asset references as well | hukl | |
| 2009-09-01 | added expirimental routing for image galeries | hukl | |
| added plain image gallery template refinements | |||
| 2009-09-01 | added related_assets to pages | hukl | |
| 2009-08-16 | migration to add missing columns and indexes for acts_as_taggable_redux as well as other related modifications | hukl | |
| 2009-08-15 | changed the implementation of Page.aggregate once more. Now faster, better shorter with acts_as_taggable_redux | hukl | |
| 2009-08-15 | added pagination for aggregators. costed me the whole day. crappy plugins ARGH! More work to do! | hukl | |
| 2009-07-18 | Test::Unit Fixtures can't handle globalize2's translated attributes which is why its impossible to set translated attributes via fixtures. Therefor I ↵ | hukl | |
| removed the page fixtures entirely and and made sure that a title is set to "Untitled" when it is not specified otherwise. If a new node is created, its initial draft has "Untitled" set as title automatically. Modified tests accordingly | |||
| 2009-07-18 | cleaned up the Page#public_link method | hukl | |
| 2009-04-18 | changed :include to :join which is much faster. adding named scopes with includes if they are needed | hukl | |
| 2009-03-30 | added named scope for heads | hukl | |
| 2009-03-29 | minor refactor | hukl | |
| 2009-03-29 | a few more assertions | hukl | |
| 2009-03-29 | refactored the outdated translations functionality. also adding flexibility to allow filtering with custom values. | hukl | |
| 2009-03-29 | Added unit test to verify the basic functionality of the find_with_outdated_translations method. Found and fixed some issued on the way. [ x ] Testing rocks | hukl | |
| 2009-03-28 | added class and instance methods to find untranslated pages and for detecting pages with outdated translations. not publicly exposed yet as I need to test ↵ | hukl | |
| it first. Also the interface itself needs a review after a good night sleep. Its looking good to me for now. | |||
| 2009-03-28 | introducing named scope :drafts for Page | hukl | |
| 2009-03-28 | reducing queries here as well - yay | hukl | |
| 2009-03-22 | Finally! The cloning of pages for creating new drafts is now a lot cleaner. I had to search for a while to figure out a better way. Thank you svenfuchs and ↵ | hukl | |
| joshmh for the support! | |||
| 2009-03-21 | only clone attributes if they are for real and not a fallback | hukl | |
| 2009-03-09 | only render pages if their published_at date is either nil or set to a time < Time.now. The render_page method will render a 404 otherwise. | hukl | |
| 2009-03-08 | added date selector for published_at. Also removed the part that reset the published_at attribute to Time.now. Some cleanups | hukl | |
| 2009-03-06 | now we need that again | hukl | |
| 2009-03-05 | more entities translated, refined xpath selector | hukl | |
| 2009-03-05 | added begin rescue as too much can go wrong | hukl | |
| 2009-03-05 | rewriting url in body fields to include the locale before saving the page. xpath magick for the win! | hukl | |
| added corresponding test of course | |||
| 2009-03-04 | new public_link method for pages which includes locale | hukl | |
| 2009-03-04 | renamed render_page template to standard_template | hukl | |
| 2009-03-03 | introducing page templates - need to add edit capabilities | hukl | |
| renamed the custom template folder forgot one fix for the new custom template path page templates refined renamed page attribute template to template_name as i suspected it to be a reserved word. it still didn't work until i discovered that simon defined the accessible attributes! That costed me 40 minutes of lifetime. But he apologized ;) tests for public and custom page templates | |||
| 2009-03-02 | refactoring of the page cloning and draft creating | hukl | |
| 2009-02-28 | well, seems i forgot the limit clause there | hukl | |
| 2009-02-27 | modified the aggregate method to take only head / published pages into account | hukl | |
