No commit activity in last 3 years
No release in over 3 years
Allows side by side editor/preview functionality for ChiliProject wiki pages
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

ChiliProject - Side by side wiki edit plugin

This plugin adds a checkbox on wiki edit pages to put the editor and the preview window side by side.

The layout of the page is completely handled client-side. Rendering of the preview is handled by ChiliProject itself server-side. This allows liquid macros and such to work properly

Installation

In your 'Gemfile', add:

gem chiliproject_side_by_side_wiki_edit

Then run either bundle install or bundle update depending on your situation.

Next, in your 'Rakefile', add:

require 'tasks/chiliproject_side_by_side_wiki_edit_tasks'

Run the installation task

RAILS_ENV=production rake chiliproject_side_by_side_wiki_edit:install

Finally cycle your application server to enable the plugin

Updating

To update the plugin run bundle update chiliproject_side_by_side_wiki_edit

Rerun the installation task to make sure the plugins assets are updated to their latest versions

RAILS_ENV=production rake chiliproject_side_by_side_wiki_edit:install

And finally cycle your application server

Uninstalling

To uninstall the plugin run the uninstall rake task

RAILS_ENV=production rake chiliproject_side_by_side_wiki_edit:uninstall

Remove the

gem chiliproject_side_by_side_wiki_edit

line from your 'Gemfile'

And cycle your application server

LICENSE:

Refer to the LICENSE file