| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-06-25 | Rails 5.2 application fixes | erdgeist | |
| - Rename before_filter → before_action across all controllers - Fix string conditions in validators to lambda syntax (node.rb) - Fix publish_draft!: move staged slug/parent logic outside draft guard, use move_to_child_of for parent changes, add nil guard for no-op calls - Fix update_unique_names_of_children: use parent_id traversal instead of lft/rgt descendants (awesome_nested_set 3.x lft/rgt update bug) - Fix unique_path to return Array instead of String - Fix Occurrence.delete_all syntax for Rails 5 - Fix Page.find_with_outdated_translations: use includes instead of all - Fix outdated_translations?: use find instead of splat array | |||
| 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 | |
| 2011-02-10 | added body to the index and removed spaces | hukl | |
| 2010-01-14 | Updated globalize2 to latest version. Modified existing code accoringly | hukl | |
| 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-14 | Resolved issue of changing rss feed ids when changing the slugs of nodes | hukl | |
| Closes #35 | |||
| 2009-11-11 | implemented that pages now have an author and an editor | hukl | |
| 2009-11-02 | make sure user and published_at stay the same | hukl | |
| 2009-10-20 | allow to overwrite the original user in edit view | hukl | |
| 2009-10-19 | changes for giving root a title | hukl | |
| 2009-10-17 | added some more validations to ensure data integrity and applied necessary changes on tests | hukl | |
| 2009-10-17 | added slug validation exception for Node.root | hukl | |
| 2009-09-12 | changed the ui click flow a bit | hukl | |
| 2009-09-11 | enhanced LockedByAnotherUser exception which now includes a message showing the last modified time. | hukl | |
| Closes #13 | |||
| 2009-09-10 | refactored the create method to actually produce meaningful error messages when something goes wrong. added tests for corner cases | hukl | |
| 2009-09-09 | added editing of slugs and moving of nodes. to edit a slug or move a node you edit that node, make your changes and save. the slug and parent node changes ↵ | hukl | |
| get staged and are applied once that revision is published | |||
| 2009-09-09 | fixed yet another bug when editing slugs or moving nodes | hukl | |
| 2009-09-09 | uhm yeah - well it was finally time to validate the uniqueness of slugs scoped to the parent_id. Who though it wasn't there already? | hukl | |
| 2009-09-07 | fixed a bug in update_unique_name | hukl | |
| 2009-09-03 | more graceful handling of locked pages exceptions. | hukl | |
| 2009-08-08 | additionally indexing slug and unique name | 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-06-10 | little convenience method for retrieving a useful title for a node | hukl | |
| 2009-05-02 | fix for parenthesis warning | hukl | |
| 2009-05-01 | added thinking_sphinx plugin for fulltext search on nodes and heads | hukl | |
| 2009-04-27 | minor fix. users were not set properly | hukl | |
| 2009-04-18 | adding "restore_revision" functionality to the backend | hukl | |
| 2009-04-07 | made this line a little easier to understand. thanks to @handtwerk | hukl | |
| 2009-03-28 | renamed the user association on nodes to lock_owner as it is more specific for its purpose | 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 | put the lock onto nodes | hukl | |
| 2009-03-18 | Refactored Chaos Calendar by wrapping libical and introducing event and occurrence model. More improvements to come. Enables us to create events with ↵ | hukl | |
| reoccurrence and intervals etc. | |||
| 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-02 | refactoring of the page cloning and draft creating | hukl | |
| 2009-03-02 | fixes. wasn't working right in _all_ situations. | hukl | |
| 2009-03-01 | refactored drafts which are now identified by a draft_id on the node rather than by guessing it. i was really that close to make that mistake again. | hukl | |
| 2009-02-27 | more tests and fixes. always write tests - they are so good! | hukl | |
| 2009-02-27 | changed that comment to fit the current implementation | hukl | |
| 2009-02-26 | narf | hukl | |
| 2009-02-26 | there has to be a better way. need to read globalize2 documentation | hukl | |
| 2009-02-25 | another locale fix | hukl | |
| 2009-02-25 | added locale methods | hukl | |
| 2009-02-25 | try | hukl | |
| 2009-02-25 | fixed little locale loophole | hukl | |
| 2009-02-22 | cloning tags from heads to new drafts. splitted the find_or_create_draft method to make it easier to read. | hukl | |
| fixed a bug in the importer which caused tag loss | |||
| 2009-02-22 | disabling for now | hukl | |
