├── README.md ├── app └── views │ ├── journals │ └── edit.js.erb │ └── redmine_editor_preview_tab │ ├── _redmine_editor_preview_tab_partial.html.erb │ └── _settings.html.erb ├── assets ├── javascripts │ └── redmine_editor_preview_tab.js └── stylesheets │ ├── redmine_editor_preview_tab.css │ └── redmine_editor_preview_tab_hide.css ├── config └── locales │ ├── de.yml │ ├── en.yml │ ├── fr.yml │ ├── ja.yml │ ├── pt-BR.yml │ └── ru.yml ├── docs ├── screenshot_preview.png ├── screenshot_settings.png └── screenshot_write.png ├── init.rb └── lib └── redmine_editor_preview_tab.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/README.md -------------------------------------------------------------------------------- /app/views/journals/edit.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/app/views/journals/edit.js.erb -------------------------------------------------------------------------------- /app/views/redmine_editor_preview_tab/_redmine_editor_preview_tab_partial.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/app/views/redmine_editor_preview_tab/_redmine_editor_preview_tab_partial.html.erb -------------------------------------------------------------------------------- /app/views/redmine_editor_preview_tab/_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/app/views/redmine_editor_preview_tab/_settings.html.erb -------------------------------------------------------------------------------- /assets/javascripts/redmine_editor_preview_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/assets/javascripts/redmine_editor_preview_tab.js -------------------------------------------------------------------------------- /assets/stylesheets/redmine_editor_preview_tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/assets/stylesheets/redmine_editor_preview_tab.css -------------------------------------------------------------------------------- /assets/stylesheets/redmine_editor_preview_tab_hide.css: -------------------------------------------------------------------------------- 1 | fieldset.preview, 2 | a[accesskey=r] { 3 | display:none; 4 | } -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /docs/screenshot_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/docs/screenshot_preview.png -------------------------------------------------------------------------------- /docs/screenshot_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/docs/screenshot_settings.png -------------------------------------------------------------------------------- /docs/screenshot_write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/docs/screenshot_write.png -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/init.rb -------------------------------------------------------------------------------- /lib/redmine_editor_preview_tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tleish/redmine_editor_preview_tab/HEAD/lib/redmine_editor_preview_tab.rb --------------------------------------------------------------------------------