aboutsummaryrefslogtreecommitdiffstats
path: root/app/views
Commit message (Collapse)AuthorAgeFilesLines
* removing noisy "no comments" messageMarek Labos2012-08-201-30/+29
|
* escape title and tags in templatesMarek Labos2012-08-172-3/+3
|
* Move avatar_url method to posts helper because view stuff shouldn't be in ↵Uģis Ozols2012-07-311-1/+1
| | | | the model.
* Fix deprecation warnings by changing update_attribute to update_column.Uģis Ozols2012-07-311-0/+0
|
* Merge pull request #251 from resolve/split_approved_rejected_actionsPhilip Arndt2012-07-062-6/+10
|\ | | | | Split rejected and approved comment actions into separate controller act...
| * Split rejected and approved comment actions into separate controller actions.Uģis Ozols2012-07-062-6/+10
| |
* | Shorten render call.Uģis Ozols2012-07-061-4/+1
|/
* Use shorter syntax of render where possible.Uģis Ozols2012-06-278-48/+32
|
* Refinery already bundles jquery-ui so there's no reason to include it twice.Uģis Ozols2012-06-151-4/+0
|
* Fix deprecation warnings related to :confirm option.Uģis Ozols2012-06-152-2/+6
|
* Added i18n support to models through globalize3.Adrien Coquio2012-06-096-4/+38
| | | | | | | | | | | | | | * Added Post translation * Added Category translation * Use friendly_id globalize with category * Added migrate_data option on migrations for translations * Use Refinery locale instead of I18n * Refactored duplicate locale_picker partial * Removed useless .all call * Use presence instead if / blank? * Added with_globalize scopes when loading posts of one category * Use Globalize when creating post factory * Fix failing specs by creating blog posts/categories using needed locale.
* Don't show 'read more' link in situations where the full post is already ↵Ryan Deussing2012-06-051-1/+3
| | | | displayed because there is no teaser.
* Use shorter syntax for render :partial => ...Uģis Ozols2012-04-1015-26/+26
|
* Fix deprecation warnings.Uģis Ozols2012-04-106-10/+10
|
* Fix reference to ShareThis key.Cory Deppen2012-04-101-1/+1
|
* Fix draft translationNic Haynes2012-03-221-1/+1
|
* Show published date if not draftedNic Haynes2012-03-211-4/+5
|
* Fix markup for draft inputNic Haynes2012-03-211-4/+6
|
* Move draft checkbox for better usabilityNic Haynes2012-03-201-4/+5
|
* Add draft label to admin indexNic Haynes2012-03-201-0/+3
|
* This took code presentation to a new level.Philip Arndt2012-02-291-3/+1
|
* Don't like having a dialogue for thisPhilip Arndt2012-02-291-1/+1
|
* y u need two linesPhilip Arndt2012-02-291-2/+1
|
* Refactor blog archive widget.Pete Higgins2012-02-101-3/+3
|
* Move some of the Refinery::Setting's over to Refinery::Blog.Uģis Ozols2012-02-043-6/+6
|
* Added support for new code in Refinery CMS since resolve/refinerycms#1234Philip Arndt2012-02-0118-49/+48
|
* Correct path for form tag. Updated cancel_url to new format.Mark Stuart2012-01-301-2/+2
|
* add source url for postJeff Shumate2012-01-252-1/+23
|
* really fix issue 175 path error in _navJeff Shumate2012-01-251-1/+1
|
* fix issue 175Jeff Shumate2012-01-251-2/+2
|
* Fix route helper in categories view.Pete Higgins2012-01-241-1/+1
|
* Fixed namespacing for Refinery conventions.Philip Arndt2012-01-1728-120/+112
|
* Restructured part of the project to Refinery::Blog::Admin not ↵Philip Arndt2012-01-1721-25/+25
| | | | Refinery::Admin::Blog
* Use Refinery::Core.config to get site name.Uģis Ozols2012-01-022-3/+3
|
* Refinery::Page.default_parts is now Refinery::Pages.config.default_partsPhilip Arndt2011-12-171-3/+3
|
* Use Refinery::Page APIs (content_for) properly.Philip Arndt2011-12-171-3/+3
|
* Allow configurable author for blog posts.Pete Higgins2011-12-141-0/+9
|
* ensure page titles on date-based and tag-based archive views are uniqueShaun2011-11-112-0/+4
|
* Refactored everything (models, helpers) into proper namespace of ↵Philip Arndt2011-11-098-17/+16
| | | | Refinery::Blog. Requires refinery commit 25162b585b9c4023d39fd1a9796140bfa4ecb909
* Fix draft preview of blog postsJamie Winsor2011-09-211-1/+1
|
* Remove jquery include - now handled by asset pipelineJamie Winsor2011-09-161-1/+0
|
* fix localization string for submit button on commentJamie Winsor2011-09-041-1/+1
|
* refactor factories and add #show tests for posts controllerJamie Winsor2011-09-041-2/+2
| | | | | | | | | | | Do not want to cache classes, but do want to reload models after factory girl: http://groups.google.com/group/factory_girl/browse_thread/thread/daa24556d90c31fc http://stackoverflow.com/questions/5145165/associationtypemismatch-and-factorygirl rails_autolink was removed from Rails 3.1 and abstracted to an external gem fix display author name and post time on comment show fix namespace for thanking and moderated flash notices
* index action of blog post controller now caches and sweeps on changesJamie Winsor2011-09-035-16/+16
| | | | | | | | | | | | | | | fix various views which were broken and untested with rails-3-1 upgrade add request spec tests for admin blog comments Factory is now FactoryGirl Fix multiple issues around listing unmoderated comments use cleaner definitions to set per_page willpaginate attribute on models update all paginate calls to use new arel representation reorganize filter sections to be located at top of controller modify uncategorized class method to activerecord scope and perform a left outer join instead of iterate through an array to find uncategorized posts move request specs into their proper places update guardfile to ensure that request specs get run when their respective controllers are modified Fix show action for AdminBlogComments and added test Fix redirection link after approving or rejecting a comment
* will_paginate is back.Uģis Ozols2011-08-257-13/+13
|
* refactor engine testing scenarioJamie Winsor2011-08-031-0/+0
| | | | | | | | Engine is now tested standalone by leveraging a dummy rails app Enable Guard for speedy testing Move factories to the more standard location `spec/factories/*` Update README with a Testing section Rename migrations to contain datetimestamps for their version to fix migration order issues when migrating the dummy application
* I18n scope fix.Uģis Ozols2011-08-031-2/+2
|
* WIP - use asset pipeline.Uģis Ozols2011-08-0311-104/+11
|
* Fix some I18n translations.Uģis Ozols2011-08-033-7/+13
|
* Made it so that comments and the body_content_right have been further ↵Justin Ricaurte2011-07-302-0/+49
| | | | refactored out, so that they can be easily overridden. body_content_right can also now have things prepended and appended to it.